fix(core): update

This commit is contained in:
Philipp Kunz 2020-05-25 18:09:39 +00:00
parent 2a6fc4110e
commit efd901af17
6 changed files with 2162 additions and 331 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,13 +24,14 @@ mirror:
- docker - docker
- notpriv - notpriv
snyk: audit:
image: registry.gitlab.com/hosttoday/ht-docker-node:snyk image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
stage: security stage: security
script: script:
- npmci npm prepare - npmci npm prepare
- npmci command npm install --ignore-scripts - npmci command npm install --ignore-scripts
- npmci command snyk test - npmci command npm config set registry https://registry.npmjs.org
- npmci command npm audit --audit-level=high
tags: tags:
- lossless - lossless
- docker - docker

2454
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -3,35 +3,37 @@
"version": "1.0.6", "version": "1.0.6",
"private": false, "private": false,
"description": "a minimal matching library using picomatch", "description": "a minimal matching library using picomatch",
"main": "dist/index.js", "main": "dist_ts/index.js",
"typings": "dist/index.d.ts", "typings": "dist_ts/index.d.ts",
"author": "Lossless GmbH", "author": "Lossless GmbH",
"license": "MIT", "license": "MIT",
"scripts": { "scripts": {
"test": "(tstest test/)", "test": "(tstest test/)",
"build": "(tsbuild)", "build": "(tsbuild && tsbundle npm)",
"format": "(gitzone format)" "format": "(gitzone format)"
}, },
"devDependencies": { "devDependencies": {
"@gitzone/tsbuild": "^2.0.22", "@gitzone/tsbuild": "^2.1.24",
"@gitzone/tsbundle": "^1.0.68",
"@gitzone/tstest": "^1.0.15", "@gitzone/tstest": "^1.0.15",
"@pushrocks/tapbundle": "^3.0.7", "@pushrocks/tapbundle": "^3.2.1",
"@types/node": "^10.11.7", "@types/node": "^14.0.5",
"tslint": "^5.11.0", "tslint": "^6.1.2",
"tslint-config-prettier": "^1.15.0" "tslint-config-prettier": "^1.15.0"
}, },
"dependencies": { "dependencies": {
"matcher": "^2.1.0" "matcher": "^3.0.0"
}, },
"files": [ "files": [
"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

@ -9,4 +9,4 @@ export class SmartMatch {
public match(matchStringArg: string): boolean { public match(matchStringArg: string): boolean {
return plugins.matcher.isMatch(matchStringArg, this.wildcard); return plugins.matcher.isMatch(matchStringArg, this.wildcard);
} }
} }

View File

@ -1,6 +1,4 @@
// third party scope // third party scope
import matcher from 'matcher'; import matcher from 'matcher';
export { export { matcher };
matcher
}