From df8242db0b0e4a16070e634a29e35c0a166f58ae Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Fri, 28 Dec 2018 00:23:13 +0100 Subject: [PATCH] fix(core): update --- .gitignore | 8 +++ .gitlab-ci.yml | 147 +++++++++++++++++++++++++++++++++++++++++ license | 19 ++++++ npmextra.json | 6 ++ package.json | 24 +++++++ test/test.ts | 8 +++ ts/index.ts | 3 + ts/websetup.plugins.ts | 4 ++ tslint.json | 17 +++++ 9 files changed, 236 insertions(+) create mode 100644 .gitignore create mode 100644 .gitlab-ci.yml create mode 100644 license create mode 100644 npmextra.json create mode 100644 package.json create mode 100644 test/test.ts create mode 100644 ts/index.ts create mode 100644 ts/websetup.plugins.ts create mode 100644 tslint.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a5e1cb7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +.nogit/ +node_modules/ +coverage/ +public/ +pages/ +.yarn/ +.cache/ +dist/ diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..697570f --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,147 @@ +# gitzone standard +image: hosttoday/ht-docker-node:npmci + +cache: + paths: + - .npmci_cache/ + key: "$CI_BUILD_STAGE" + +stages: +- security +- test +- release +- metadata + +# ==================== +# security stage +# ==================== +mirror: + stage: security + script: + - npmci git mirror + tags: + - docker + - notpriv + +snyk: + stage: security + script: + - npmci npm prepare + - npmci command npm install -g snyk + - npmci command npm install --ignore-scripts + - npmci command snyk test + tags: + - docker + - notpriv + +sast: + stage: security + image: docker:stable + variables: + DOCKER_DRIVER: overlay2 + allow_failure: true + services: + - docker:stable-dind + script: + - export SP_VERSION=$(echo "$CI_SERVER_VERSION" | sed 's/^\([0-9]*\)\.\([0-9]*\).*/\1-\2-stable/') + - docker run + --env SAST_CONFIDENCE_LEVEL="${SAST_CONFIDENCE_LEVEL:-3}" + --volume "$PWD:/code" + --volume /var/run/docker.sock:/var/run/docker.sock + "registry.gitlab.com/gitlab-org/security-products/sast:$SP_VERSION" /app/bin/run /code + artifacts: + reports: + sast: gl-sast-report.json + tags: + - docker + - priv + +# ==================== +# test stage +# ==================== + +testLTS: + stage: test + script: + - npmci npm prepare + - npmci node install lts + - npmci npm install + - npmci npm test + coverage: /\d+.?\d+?\%\s*coverage/ + tags: + - docker + - notpriv + +testSTABLE: + stage: test + script: + - npmci npm prepare + - npmci node install stable + - npmci npm install + - npmci npm test + coverage: /\d+.?\d+?\%\s*coverage/ + tags: + - docker + - notpriv + +release: + stage: release + script: + - npmci node install stable + - npmci npm publish + only: + - tags + tags: + - docker + - notpriv + +# ==================== +# metadata stage +# ==================== +codequality: + stage: metadata + image: docker:stable + allow_failure: true + services: + - docker:stable-dind + script: + - export SP_VERSION=$(echo "$CI_SERVER_VERSION" | sed 's/^\([0-9]*\)\.\([0-9]*\).*/\1-\2-stable/') + - docker run + --env SOURCE_CODE="$PWD" + --volume "$PWD":/code + --volume /var/run/docker.sock:/var/run/docker.sock + "registry.gitlab.com/gitlab-org/security-products/codequality:$SP_VERSION" /code + artifacts: + paths: [codeclimate.json] + tags: + - docker + - priv + +trigger: + stage: metadata + script: + - npmci trigger + only: + - tags + tags: + - docker + - notpriv + +pages: + image: hosttoday/ht-docker-node:npmci + stage: metadata + script: + - npmci command npm install -g typedoc typescript + - npmci npm prepare + - npmci npm install + - npmci command typedoc --module "commonjs" --target "ES2016" --out public/ ts/ + tags: + - docker + - notpriv + only: + - tags + artifacts: + expire_in: 1 week + paths: + - public + allow_failure: true diff --git a/license b/license new file mode 100644 index 0000000..c68a811 --- /dev/null +++ b/license @@ -0,0 +1,19 @@ +Copyright (c) 2018 Lossless GmbH (hello@lossless.com) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/npmextra.json b/npmextra.json new file mode 100644 index 0000000..193d59b --- /dev/null +++ b/npmextra.json @@ -0,0 +1,6 @@ +{ + "npmci": { + "npmGlobalTools": [], + "npmAccessLevel": "public" + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..5878341 --- /dev/null +++ b/package.json @@ -0,0 +1,24 @@ +{ + "name": "@pushrocks/websetup", + "version": "1.0.1", + "private": false, + "description": "setup basic page properties", + "main": "dist/index.js", + "typings": "dist/index.d.ts", + "author": "Lossless GmbH", + "license": "MIT", + "scripts": { + "test": "(tstest test/)", + "build": "(tsbuild)", + "format": "(gitzone format)" + }, + "devDependencies": { + "@gitzone/tsbuild": "^2.0.22", + "@gitzone/tstest": "^1.0.15", + "@pushrocks/tapbundle": "^3.0.7", + "@types/node": "^10.11.7", + "tslint": "^5.11.0", + "tslint-config-prettier": "^1.15.0" + }, + "dependencies": {} +} diff --git a/test/test.ts b/test/test.ts new file mode 100644 index 0000000..7e949bc --- /dev/null +++ b/test/test.ts @@ -0,0 +1,8 @@ +import { expect, tap } from '@pushrocks/tapbundle'; +import * as websetup from '../ts/index' + +tap.test('first test', async () => { + console.log(websetup.standardExport) +}) + +tap.start() diff --git a/ts/index.ts b/ts/index.ts new file mode 100644 index 0000000..a8616f0 --- /dev/null +++ b/ts/index.ts @@ -0,0 +1,3 @@ +import * as plugins from './websetup.plugins'; + +export let standardExport = 'Hi there! :) This is an exported string'; diff --git a/ts/websetup.plugins.ts b/ts/websetup.plugins.ts new file mode 100644 index 0000000..d00ae0c --- /dev/null +++ b/ts/websetup.plugins.ts @@ -0,0 +1,4 @@ +const removeme = {}; +export { + removeme +} diff --git a/tslint.json b/tslint.json new file mode 100644 index 0000000..d4ea2e9 --- /dev/null +++ b/tslint.json @@ -0,0 +1,17 @@ +{ + "extends": ["tslint:latest", "tslint-config-prettier"], + "rules": { + "semicolon": [true, "always"], + "no-console": false, + "ordered-imports": false, + "object-literal-sort-keys": false, + "member-ordering": { + "options":{ + "order": [ + "static-method" + ] + } + } + }, + "defaultSeverity": "warning" +}