From 6648c6f40a5b95321d661a74e604482134d6a920 Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Sat, 22 Jun 2019 14:41:45 +0200 Subject: [PATCH] fix(core): update --- .gitignore | 22 +++++++++ .gitlab-ci.yml | 105 +++++++++++++++++++++++++++++++++++++++++ .vscode/launch.json | 29 ++++++++++++ license | 19 ++++++++ npmextra.json | 17 +++++++ package.json | 24 ++++++++++ test/test.ts | 8 ++++ ts/index.ts | 3 ++ ts/tsconfig.plugins.ts | 4 ++ tslint.json | 17 +++++++ 10 files changed, 248 insertions(+) create mode 100644 .gitignore create mode 100644 .gitlab-ci.yml create mode 100644 .vscode/launch.json 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/tsconfig.plugins.ts create mode 100644 tslint.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..91c0db0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,22 @@ +.nogit/ + +# artifacts +coverage/ +public/ +pages/ + +# installs +node_modules/ + +# caches +.yarn/ +.cache/ +.rpt2_cache + +# builds +dist/ +dist_web/ +dist_serve/ +dist_ts_web/ + +# custom \ No newline at end of file diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..8d4acf4 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,105 @@ +# gitzone ci_default +image: registry.gitlab.com/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 + +# ==================== +# 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 + +release: + stage: release + script: + - npmci node install lts + - npmci npm publish + only: + - tags + tags: + - docker + - notpriv + +# ==================== +# metadata stage +# ==================== +codequality: + stage: metadata + allow_failure: true + script: + - npmci command npm install -g tslint typescript + - npmci npm install + - npmci command "tslint -c tslint.json ./ts/**/*.ts" + 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 @gitzone/tsdoc + - npmci npm prepare + - npmci npm install + - npmci command tsdoc + tags: + - docker + - notpriv + only: + - tags + artifacts: + expire_in: 1 week + paths: + - public + allow_failure: true diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..112db52 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,29 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "current file", + "type": "node", + "request": "launch", + "args": [ + "${relativeFile}" + ], + "runtimeArgs": ["-r", "@gitzone/tsrun"], + "cwd": "${workspaceRoot}", + "protocol": "inspector", + "internalConsoleOptions": "openOnSessionStart" + }, + { + "name": "test.ts", + "type": "node", + "request": "launch", + "args": [ + "test/test.ts" + ], + "runtimeArgs": ["-r", "@gitzone/tsrun"], + "cwd": "${workspaceRoot}", + "protocol": "inspector", + "internalConsoleOptions": "openOnSessionStart" + } + ] +} diff --git a/license b/license new file mode 100644 index 0000000..4664895 --- /dev/null +++ b/license @@ -0,0 +1,19 @@ +Copyright (c) 2019 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..74fe50c --- /dev/null +++ b/npmextra.json @@ -0,0 +1,17 @@ +{ + "gitzone": { + "module": { + "githost": "gitlab.com", + "gitscope": "tsclass", + "gitrepo": "tsconfig", + "shortDescription": "a config interface package for public modules", + "npmPackagename": "@tsclass/tsconfig", + "license": "MIT", + "projectDomain": "lossless.com" + } + }, + "npmci": { + "npmGlobalTools": [], + "npmAccessLevel": "public" + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..0d1708e --- /dev/null +++ b/package.json @@ -0,0 +1,24 @@ +{ + "name": "@tsclass/tsconfig", + "version": "1.0.1", + "private": false, + "description": "a config interface package for public modules", + "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..0912ef1 --- /dev/null +++ b/test/test.ts @@ -0,0 +1,8 @@ +import { expect, tap } from '@pushrocks/tapbundle'; +import * as tsconfig from '../ts/index' + +tap.test('first test', async () => { + console.log(tsconfig.standardExport) +}) + +tap.start() diff --git a/ts/index.ts b/ts/index.ts new file mode 100644 index 0000000..2791aac --- /dev/null +++ b/ts/index.ts @@ -0,0 +1,3 @@ +import * as plugins from './tsconfig.plugins'; + +export let standardExport = 'Hi there! :) This is an exported string'; diff --git a/ts/tsconfig.plugins.ts b/ts/tsconfig.plugins.ts new file mode 100644 index 0000000..d00ae0c --- /dev/null +++ b/ts/tsconfig.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" +}