fix(core): update

This commit is contained in:
Philipp Kunz 2022-07-24 14:03:29 +02:00
parent 6fa151f933
commit 8f7167f201
5 changed files with 5109 additions and 10967 deletions

16023
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -21,21 +21,19 @@
}, },
"homepage": "https://gitlab.com/pushrocks/tapbundle#README", "homepage": "https://gitlab.com/pushrocks/tapbundle#README",
"dependencies": { "dependencies": {
"@open-wc/testing-helpers": "^2.1.2", "@open-wc/testing": "^3.1.6",
"@pushrocks/smartdelay": "^2.0.13", "@pushrocks/smartdelay": "^2.0.13",
"@pushrocks/smartenv": "^5.0.0", "@pushrocks/smartenv": "^5.0.2",
"@pushrocks/smartexpect": "^1.0.13", "@pushrocks/smartexpect": "^1.0.14",
"@pushrocks/smartpromise": "^3.1.7", "@pushrocks/smartpromise": "^3.1.7",
"@pushrocks/smarttime": "^3.0.45" "@pushrocks/smarttime": "^3.0.45"
}, },
"devDependencies": { "devDependencies": {
"@gitzone/tsbuild": "^2.1.60", "@gitzone/tsbuild": "^2.1.63",
"@gitzone/tsrun": "^1.2.31", "@gitzone/tsrun": "^1.2.37",
"@gitzone/tstest": "^1.0.69", "@gitzone/tstest": "^1.0.71",
"@types/node": "^17.0.23", "@types/node": "^18.0.6",
"randomstring": "^1.2.2", "randomstring": "^1.2.2"
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0"
}, },
"files": [ "files": [
"ts/**/*", "ts/**/*",

8
ts/00_commitinfo_data.ts Normal file
View File

@ -0,0 +1,8 @@
/**
* autocreated commitinfo by @pushrocks/commitinfo
*/
export const commitinfo = {
name: '@pushrocks/tapbundle',
version: '5.0.4',
description: 'tap bundled for tapbuffer'
}

10
tsconfig.json Normal file
View File

@ -0,0 +1,10 @@
{
"compilerOptions": {
"experimentalDecorators": true,
"useDefineForClassFields": false,
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "nodenext",
"esModuleInterop": true
}
}

View File

@ -1,17 +0,0 @@
{
"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"
}