fix(core): update

This commit is contained in:
Philipp Kunz 2020-05-22 07:59:05 +00:00
parent bf7a2c9146
commit 2266813faf
4 changed files with 18 additions and 5 deletions

4
.gitignore vendored
View File

@ -15,8 +15,6 @@ node_modules/
# builds # builds
dist/ dist/
dist_web/ dist_*/
dist_serve/
dist_ts_web/
# custom # custom

View File

@ -24,6 +24,19 @@ mirror:
- docker - docker
- notpriv - notpriv
audit:
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
stage: security
script:
- npmci npm prepare
- npmci command npm install --ignore-scripts
- npmci command npm config set registry https://registry.npmjs.org
- npmci command npm audit --audit-level=high
tags:
- lossless
- docker
- notpriv
# ==================== # ====================
# test stage # test stage
# ==================== # ====================

View File

@ -41,11 +41,12 @@
"ts/**/*", "ts/**/*",
"ts_web/**/*", "ts_web/**/*",
"dist/**/*", "dist/**/*",
"dist_web/**/*", "dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*", "dist_ts_web/**/*",
"assets/**/*", "assets/**/*",
"cli.js", "cli.js",
"npmextra.json", "npmextra.json",
"readme.md" "readme.md"
] ]
} }

View File

@ -18,6 +18,7 @@ watch typescript projects during development
## Usage ## Usage
Use TypeScript for best in class intellisense
## Contribution ## Contribution