node-cli-tester 18.0.1 → 18.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/assets/shared/shared_folder_info.txt +1 -1
- package/bin/node-cli-tester +11 -11
- package/bin/node-cli-tester-debug +11 -11
- package/browser/README.md +24 -24
- package/client/README.md +24 -24
- package/firedev.jsonc +38 -38
- package/package.json +4 -4
- package/tmp-environment.json +43 -42
- package/websql/README.md +24 -24
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# node-cli-tester
|
|
2
|
-
|
|
3
|
-
- for testing any cli functionality
|
|
4
|
-
|
|
1
|
+
# node-cli-tester
|
|
2
|
+
|
|
3
|
+
- for testing any cli functionality
|
|
4
|
+
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
THIS FILE IS GENERATED. THIS FILE IS GENERATED. THIS FILE IS GENERATED.
|
|
2
2
|
|
|
3
|
-
Assets from this folder are being shipped with this npm package (node-cli-tester@18.0.
|
|
3
|
+
Assets from this folder are being shipped with this npm package (node-cli-tester@18.0.3)
|
|
4
4
|
created from this project.
|
|
5
5
|
|
|
6
6
|
THIS FILE IS GENERATED.THIS FILE IS GENERATED. THIS FILE IS GENERATED.
|
package/bin/node-cli-tester
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
var { fse, crossPlatformPath, path } = require('tnp-core');
|
|
3
|
-
var path = {
|
|
4
|
-
dist: path.join(crossPlatformPath(__dirname), '../dist/lib/start.backend.js'),
|
|
5
|
-
bundle: path.join(crossPlatformPath(__dirname), '../lib/start.backend.js')
|
|
6
|
-
}
|
|
7
|
-
var p = fse.existsSync(path.dist) ? path.dist : path.bundle;
|
|
8
|
-
global.globalSystemToolMode = true;
|
|
9
|
-
global.useWorker = true;
|
|
10
|
-
var run = require(p).run;
|
|
11
|
-
run(process.argv.slice(2));
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
var { fse, crossPlatformPath, path } = require('tnp-core');
|
|
3
|
+
var path = {
|
|
4
|
+
dist: path.join(crossPlatformPath(__dirname), '../dist/lib/start.backend.js'),
|
|
5
|
+
bundle: path.join(crossPlatformPath(__dirname), '../lib/start.backend.js')
|
|
6
|
+
}
|
|
7
|
+
var p = fse.existsSync(path.dist) ? path.dist : path.bundle;
|
|
8
|
+
global.globalSystemToolMode = true;
|
|
9
|
+
global.useWorker = true;
|
|
10
|
+
var run = require(p).run;
|
|
11
|
+
run(process.argv.slice(2));
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
#!/usr/bin/env node --inspect
|
|
2
|
-
var { fse, crossPlatformPath, path } = require('tnp-core');
|
|
3
|
-
var path = {
|
|
4
|
-
dist: path.join(crossPlatformPath(__dirname), '../dist/start.backend.js'),
|
|
5
|
-
bundle: path.join(crossPlatformPath(__dirname), '../start.backend.js')
|
|
6
|
-
}
|
|
7
|
-
var p = fse.existsSync(path.dist) ? path.dist : path.bundle;
|
|
8
|
-
global.globalSystemToolMode = true;
|
|
9
|
-
global.useWorker = true;
|
|
10
|
-
var run = require(p).run;
|
|
11
|
-
run(process.argv.slice(2));
|
|
1
|
+
#!/usr/bin/env node --inspect
|
|
2
|
+
var { fse, crossPlatformPath, path } = require('tnp-core');
|
|
3
|
+
var path = {
|
|
4
|
+
dist: path.join(crossPlatformPath(__dirname), '../dist/start.backend.js'),
|
|
5
|
+
bundle: path.join(crossPlatformPath(__dirname), '../start.backend.js')
|
|
6
|
+
}
|
|
7
|
+
var p = fse.existsSync(path.dist) ? path.dist : path.bundle;
|
|
8
|
+
global.globalSystemToolMode = true;
|
|
9
|
+
global.useWorker = true;
|
|
10
|
+
var run = require(p).run;
|
|
11
|
+
run(process.argv.slice(2));
|
package/browser/README.md
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
# MyLib
|
|
2
|
-
|
|
3
|
-
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.0.
|
|
4
|
-
|
|
5
|
-
## Code scaffolding
|
|
6
|
-
|
|
7
|
-
Run `ng generate component component-name --project my-lib` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project my-lib`.
|
|
8
|
-
> Note: Don't forget to add `--project my-lib` or else it will be added to the default project in your `angular.json` file.
|
|
9
|
-
|
|
10
|
-
## Build
|
|
11
|
-
|
|
12
|
-
Run `ng build my-lib` to build the project. The build artifacts will be stored in the `dist/` directory.
|
|
13
|
-
|
|
14
|
-
## Publishing
|
|
15
|
-
|
|
16
|
-
After building your library with `ng build my-lib`, go to the dist folder `cd dist/my-lib` and run `npm publish`.
|
|
17
|
-
|
|
18
|
-
## Running unit tests
|
|
19
|
-
|
|
20
|
-
Run `ng test my-lib` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
|
21
|
-
|
|
22
|
-
## Further help
|
|
23
|
-
|
|
24
|
-
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
|
|
1
|
+
# MyLib
|
|
2
|
+
|
|
3
|
+
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.0.
|
|
4
|
+
|
|
5
|
+
## Code scaffolding
|
|
6
|
+
|
|
7
|
+
Run `ng generate component component-name --project my-lib` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project my-lib`.
|
|
8
|
+
> Note: Don't forget to add `--project my-lib` or else it will be added to the default project in your `angular.json` file.
|
|
9
|
+
|
|
10
|
+
## Build
|
|
11
|
+
|
|
12
|
+
Run `ng build my-lib` to build the project. The build artifacts will be stored in the `dist/` directory.
|
|
13
|
+
|
|
14
|
+
## Publishing
|
|
15
|
+
|
|
16
|
+
After building your library with `ng build my-lib`, go to the dist folder `cd dist/my-lib` and run `npm publish`.
|
|
17
|
+
|
|
18
|
+
## Running unit tests
|
|
19
|
+
|
|
20
|
+
Run `ng test my-lib` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
|
21
|
+
|
|
22
|
+
## Further help
|
|
23
|
+
|
|
24
|
+
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
|
package/client/README.md
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
# MyLib
|
|
2
|
-
|
|
3
|
-
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.0.
|
|
4
|
-
|
|
5
|
-
## Code scaffolding
|
|
6
|
-
|
|
7
|
-
Run `ng generate component component-name --project my-lib` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project my-lib`.
|
|
8
|
-
> Note: Don't forget to add `--project my-lib` or else it will be added to the default project in your `angular.json` file.
|
|
9
|
-
|
|
10
|
-
## Build
|
|
11
|
-
|
|
12
|
-
Run `ng build my-lib` to build the project. The build artifacts will be stored in the `dist/` directory.
|
|
13
|
-
|
|
14
|
-
## Publishing
|
|
15
|
-
|
|
16
|
-
After building your library with `ng build my-lib`, go to the dist folder `cd dist/my-lib` and run `npm publish`.
|
|
17
|
-
|
|
18
|
-
## Running unit tests
|
|
19
|
-
|
|
20
|
-
Run `ng test my-lib` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
|
21
|
-
|
|
22
|
-
## Further help
|
|
23
|
-
|
|
24
|
-
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
|
|
1
|
+
# MyLib
|
|
2
|
+
|
|
3
|
+
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.0.
|
|
4
|
+
|
|
5
|
+
## Code scaffolding
|
|
6
|
+
|
|
7
|
+
Run `ng generate component component-name --project my-lib` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project my-lib`.
|
|
8
|
+
> Note: Don't forget to add `--project my-lib` or else it will be added to the default project in your `angular.json` file.
|
|
9
|
+
|
|
10
|
+
## Build
|
|
11
|
+
|
|
12
|
+
Run `ng build my-lib` to build the project. The build artifacts will be stored in the `dist/` directory.
|
|
13
|
+
|
|
14
|
+
## Publishing
|
|
15
|
+
|
|
16
|
+
After building your library with `ng build my-lib`, go to the dist folder `cd dist/my-lib` and run `npm publish`.
|
|
17
|
+
|
|
18
|
+
## Running unit tests
|
|
19
|
+
|
|
20
|
+
Run `ng test my-lib` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
|
21
|
+
|
|
22
|
+
## Further help
|
|
23
|
+
|
|
24
|
+
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
|
package/firedev.jsonc
CHANGED
|
@@ -1,39 +1,39 @@
|
|
|
1
|
-
{
|
|
2
|
-
"resources": ["README.md"],
|
|
3
|
-
|
|
4
|
-
"overrided": {
|
|
5
|
-
"ignoreDepsPattern": [],
|
|
6
|
-
"includeAsDev": [],
|
|
7
|
-
"includeOnly": ["tnp-helpers"],
|
|
8
|
-
"dependencies": {},
|
|
9
|
-
"linkedFolders": [],
|
|
10
|
-
"npmFixes": []
|
|
11
|
-
},
|
|
12
|
-
|
|
13
|
-
"smartContainerBuildTarget": "",
|
|
14
|
-
"linkedRepos": [],
|
|
15
|
-
|
|
16
|
-
"libReleaseOptions": {
|
|
17
|
-
"nodts": false,
|
|
18
|
-
"obscure": false,
|
|
19
|
-
"ugly": false,
|
|
20
|
-
"includeNodeModules": false,
|
|
21
|
-
"cliBuildNoDts": false,
|
|
22
|
-
"cliBuildObscure": false,
|
|
23
|
-
"cliBuildIncludeNodeModules": false,
|
|
24
|
-
"cliBuildUglify": false
|
|
25
|
-
},
|
|
26
|
-
|
|
27
|
-
"smartContainerTarget": "",
|
|
28
|
-
"type": "isomorphic-lib",
|
|
29
|
-
"isCoreProject": false,
|
|
30
|
-
"useFramework": false,
|
|
31
|
-
"required": [],
|
|
32
|
-
"version": "v18",
|
|
33
|
-
"isGenerated": false,
|
|
34
|
-
"requiredServers": [],
|
|
35
|
-
"license": "UNLICENSED",
|
|
36
|
-
"main": "index.js",
|
|
37
|
-
"private": false,
|
|
38
|
-
"workerPlugins": {}
|
|
1
|
+
{
|
|
2
|
+
"resources": ["README.md"],
|
|
3
|
+
|
|
4
|
+
"overrided": {
|
|
5
|
+
"ignoreDepsPattern": [],
|
|
6
|
+
"includeAsDev": [],
|
|
7
|
+
"includeOnly": ["tnp-helpers"],
|
|
8
|
+
"dependencies": {},
|
|
9
|
+
"linkedFolders": [],
|
|
10
|
+
"npmFixes": []
|
|
11
|
+
},
|
|
12
|
+
|
|
13
|
+
"smartContainerBuildTarget": "",
|
|
14
|
+
"linkedRepos": [],
|
|
15
|
+
|
|
16
|
+
"libReleaseOptions": {
|
|
17
|
+
"nodts": false,
|
|
18
|
+
"obscure": false,
|
|
19
|
+
"ugly": false,
|
|
20
|
+
"includeNodeModules": false,
|
|
21
|
+
"cliBuildNoDts": false,
|
|
22
|
+
"cliBuildObscure": false,
|
|
23
|
+
"cliBuildIncludeNodeModules": false,
|
|
24
|
+
"cliBuildUglify": false
|
|
25
|
+
},
|
|
26
|
+
|
|
27
|
+
"smartContainerTarget": "",
|
|
28
|
+
"type": "isomorphic-lib",
|
|
29
|
+
"isCoreProject": false,
|
|
30
|
+
"useFramework": false,
|
|
31
|
+
"required": [],
|
|
32
|
+
"version": "v18",
|
|
33
|
+
"isGenerated": false,
|
|
34
|
+
"requiredServers": [],
|
|
35
|
+
"license": "UNLICENSED",
|
|
36
|
+
"main": "index.js",
|
|
37
|
+
"private": false,
|
|
38
|
+
"workerPlugins": {}
|
|
39
39
|
}
|
package/package.json
CHANGED
|
@@ -39,17 +39,17 @@
|
|
|
39
39
|
"workerPlugins": {}
|
|
40
40
|
},
|
|
41
41
|
"name": "node-cli-tester",
|
|
42
|
-
"version": "18.0.
|
|
42
|
+
"version": "18.0.3",
|
|
43
43
|
"license": "UNLICENSED",
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"tnp-helpers": "~18.0.
|
|
45
|
+
"tnp-helpers": "~18.0.4"
|
|
46
46
|
},
|
|
47
47
|
"bin": {
|
|
48
48
|
"node-cli-tester": "bin/node-cli-tester",
|
|
49
49
|
"node-cli-tester-debug": "bin/node-cli-tester-debug"
|
|
50
50
|
},
|
|
51
|
-
"lastBuildTagHash": "
|
|
51
|
+
"lastBuildTagHash": "2b16ee138a3d675048c99689f63eb0349eb057ab",
|
|
52
52
|
"private": false,
|
|
53
53
|
"devDependencies": {},
|
|
54
|
-
"main": "
|
|
54
|
+
"main": "dist/app.electron.js"
|
|
55
55
|
}
|
package/tmp-environment.json
CHANGED
|
@@ -43,16 +43,16 @@
|
|
|
43
43
|
"workerPlugins": {}
|
|
44
44
|
},
|
|
45
45
|
"name": "node-cli-tester",
|
|
46
|
-
"version": "18.0.
|
|
46
|
+
"version": "18.0.3",
|
|
47
47
|
"license": "UNLICENSED",
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"tnp-helpers": "~18.0.
|
|
49
|
+
"tnp-helpers": "~18.0.4"
|
|
50
50
|
},
|
|
51
51
|
"bin": {
|
|
52
52
|
"node-cli-tester": "bin/node-cli-tester",
|
|
53
53
|
"node-cli-tester-debug": "bin/node-cli-tester-debug"
|
|
54
54
|
},
|
|
55
|
-
"lastBuildTagHash": "
|
|
55
|
+
"lastBuildTagHash": "2b16ee138a3d675048c99689f63eb0349eb057ab",
|
|
56
56
|
"private": false,
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"@angular-builders/custom-webpack": "~18.0.0",
|
|
@@ -112,7 +112,7 @@
|
|
|
112
112
|
"@types/diff": "5.2.1",
|
|
113
113
|
"@types/express": "4.17.21",
|
|
114
114
|
"@types/express-fileupload": "1.5.0",
|
|
115
|
-
"@types/fs-extra": "
|
|
115
|
+
"@types/fs-extra": "7.0.0",
|
|
116
116
|
"@types/glob": "5.0.35",
|
|
117
117
|
"@types/http-proxy": "1.17.15",
|
|
118
118
|
"@types/http-proxy-middleware": "1.0.0",
|
|
@@ -128,7 +128,7 @@
|
|
|
128
128
|
"@types/password-hash": "1.2.24",
|
|
129
129
|
"@types/progress": "2.0.7",
|
|
130
130
|
"@types/q": "1.5.8",
|
|
131
|
-
"@types/rimraf": "
|
|
131
|
+
"@types/rimraf": "2.0.2",
|
|
132
132
|
"@types/semver": "7.5.8",
|
|
133
133
|
"@types/systeminformation": "3.54.1",
|
|
134
134
|
"@types/vinyl": "2.0.12",
|
|
@@ -141,7 +141,7 @@
|
|
|
141
141
|
"angular-material-css-vars": "7.0.0",
|
|
142
142
|
"angular-resize-event": "3.2.0",
|
|
143
143
|
"animate.css": "4.1.1",
|
|
144
|
-
"any-project-cli": "~18.0.
|
|
144
|
+
"any-project-cli": "~18.0.4",
|
|
145
145
|
"app-root-path": "3.1.0",
|
|
146
146
|
"axios": "1.7.3",
|
|
147
147
|
"background-worker-process": "~16.100.10",
|
|
@@ -175,9 +175,9 @@
|
|
|
175
175
|
"dateformat": "3.0.3",
|
|
176
176
|
"detect-mocha": "0.1.0",
|
|
177
177
|
"diff": "4.0.2",
|
|
178
|
-
"electron": "
|
|
179
|
-
"electron-builder": "24.
|
|
180
|
-
"electron-debug": "
|
|
178
|
+
"electron": "25.2.0",
|
|
179
|
+
"electron-builder": "24.4.0",
|
|
180
|
+
"electron-debug": "3.2.0",
|
|
181
181
|
"electron-reloader": "1.2.3",
|
|
182
182
|
"element-resize-detector": "1.2.4",
|
|
183
183
|
"enquirer": "2.4.1",
|
|
@@ -197,17 +197,17 @@
|
|
|
197
197
|
"file-saver": "2.0.5",
|
|
198
198
|
"file-type": "19.1.1",
|
|
199
199
|
"firedev": "^18",
|
|
200
|
-
"firedev-crud": "~18.0.
|
|
201
|
-
"firedev-crud-deamon": "~18.0.
|
|
202
|
-
"firedev-ports": "~18.0.
|
|
203
|
-
"firedev-storage": "~18.0.
|
|
204
|
-
"firedev-type-sql": "~18.0.
|
|
205
|
-
"firedev-typeorm": "~18.0.
|
|
206
|
-
"firedev-ui": "~
|
|
200
|
+
"firedev-crud": "~18.0.3",
|
|
201
|
+
"firedev-crud-deamon": "~18.0.4",
|
|
202
|
+
"firedev-ports": "~18.0.3",
|
|
203
|
+
"firedev-storage": "~18.0.3",
|
|
204
|
+
"firedev-type-sql": "~18.0.4",
|
|
205
|
+
"firedev-typeorm": "~18.0.3",
|
|
206
|
+
"firedev-ui": "~18.0.4",
|
|
207
207
|
"fkill": "6.1.0",
|
|
208
208
|
"font-awesome": "4.7.0",
|
|
209
209
|
"form-data": "4.0.0",
|
|
210
|
-
"fs-extra": "
|
|
210
|
+
"fs-extra": "8.1.0",
|
|
211
211
|
"fuzzy": "0.1.3",
|
|
212
212
|
"glob": "7.1.2",
|
|
213
213
|
"google-libphonenumber": "3.2.38",
|
|
@@ -221,11 +221,11 @@
|
|
|
221
221
|
"image-focus": "1.2.1",
|
|
222
222
|
"immer": "10.0.2",
|
|
223
223
|
"immutable": "4.3.7",
|
|
224
|
-
"incremental-compiler": "~18.0.
|
|
224
|
+
"incremental-compiler": "~18.0.4",
|
|
225
225
|
"inquirer": "7.3.3",
|
|
226
226
|
"inquirer-autocomplete-prompt": "1.3.0",
|
|
227
227
|
"is-elevated": "3.0.0",
|
|
228
|
-
"isomorphic-region-loader": "~18.0.
|
|
228
|
+
"isomorphic-region-loader": "~18.0.4",
|
|
229
229
|
"istanbul-instrumenter-loader": "3.0.1",
|
|
230
230
|
"jest": "29.7.0",
|
|
231
231
|
"jest-date-mock": "1.0.10",
|
|
@@ -236,8 +236,8 @@
|
|
|
236
236
|
"joi": "17.13.3",
|
|
237
237
|
"jscodeshift": "0.6.3",
|
|
238
238
|
"json-stringify-safe": "5.0.1",
|
|
239
|
-
"json10": "~18.0.
|
|
240
|
-
"json10-writer": "~18.0.
|
|
239
|
+
"json10": "~18.0.4",
|
|
240
|
+
"json10-writer": "~18.0.4",
|
|
241
241
|
"json5": "2.2.3",
|
|
242
242
|
"json5-writer": "0.2.0",
|
|
243
243
|
"jszip": "3.10.1",
|
|
@@ -246,9 +246,9 @@
|
|
|
246
246
|
"localforage": "1.10.0",
|
|
247
247
|
"lockfile": "1.0.4",
|
|
248
248
|
"lodash": "4.17.21",
|
|
249
|
-
"lodash-walk-object": "~18.0.
|
|
249
|
+
"lodash-walk-object": "~18.0.4",
|
|
250
250
|
"lowdb": "7.0.1",
|
|
251
|
-
"magic-renamer": "~18.0.
|
|
251
|
+
"magic-renamer": "~18.0.4",
|
|
252
252
|
"material-design-icons": "3.0.1",
|
|
253
253
|
"method-override": "2.3.10",
|
|
254
254
|
"minimist": "1.2.8",
|
|
@@ -259,10 +259,10 @@
|
|
|
259
259
|
"ng-in-viewport": "16.1.0",
|
|
260
260
|
"ng-lock": "18.0.1",
|
|
261
261
|
"ng-packagr": "18.1.0",
|
|
262
|
-
"ng-talkback": "~18.0.
|
|
263
|
-
"ng2-logger": "~18.0.
|
|
262
|
+
"ng-talkback": "~18.0.3",
|
|
263
|
+
"ng2-logger": "~18.0.6",
|
|
264
264
|
"ng2-pdfjs-viewer": "18.0.0",
|
|
265
|
-
"ng2-rest": "~18.0.
|
|
265
|
+
"ng2-rest": "~18.0.4",
|
|
266
266
|
"ngx-ace-wrapper": "17.0.0",
|
|
267
267
|
"ngx-editor": "17.5.4",
|
|
268
268
|
"ngx-highlightjs": "12.0.0",
|
|
@@ -275,7 +275,7 @@
|
|
|
275
275
|
"ngx-scrolltop": "18.0.0",
|
|
276
276
|
"ngx-store": "3.1.1",
|
|
277
277
|
"ngx-typed-js": "2.1.1",
|
|
278
|
-
"node-cli-tester": "~
|
|
278
|
+
"node-cli-tester": "~18.0.2",
|
|
279
279
|
"node-localstorage": "2.1.6",
|
|
280
280
|
"node-notifier": "10.0.1",
|
|
281
281
|
"node-polyfill-webpack-plugin": "2.0.1",
|
|
@@ -284,12 +284,13 @@
|
|
|
284
284
|
"npm-run": "4.1.2",
|
|
285
285
|
"omelette": "0.4.17",
|
|
286
286
|
"open": "10.0.4",
|
|
287
|
-
"ora": "
|
|
287
|
+
"ora": "3.4.0",
|
|
288
288
|
"passport": "0.7.0",
|
|
289
289
|
"passport-http-bearer": "1.0.1",
|
|
290
290
|
"password-hash": "1.2.2",
|
|
291
291
|
"path-to-regexp": "6.2.2",
|
|
292
292
|
"pica": "9.0.1",
|
|
293
|
+
"playwright": "1.43.1",
|
|
293
294
|
"portfinder": "1.0.21",
|
|
294
295
|
"prettier": "3.3.3",
|
|
295
296
|
"prettier-eslint": "16.3.0",
|
|
@@ -304,7 +305,7 @@
|
|
|
304
305
|
"q": "1.5.1",
|
|
305
306
|
"rallax.js": "2.0.4",
|
|
306
307
|
"randomcolor": "0.5.3",
|
|
307
|
-
"record-replay-req-res-scenario": "~
|
|
308
|
+
"record-replay-req-res-scenario": "~18.0.2",
|
|
308
309
|
"reflect-metadata": "0.2.2",
|
|
309
310
|
"rimraf": "2.6.2",
|
|
310
311
|
"rxjs": "~7.8.1",
|
|
@@ -316,7 +317,7 @@
|
|
|
316
317
|
"socket.io-client": "4.7.5",
|
|
317
318
|
"sort-package-json": "1.11.0",
|
|
318
319
|
"sql.js": "1.8.0",
|
|
319
|
-
"static-columns": "~18.0.
|
|
320
|
+
"static-columns": "~18.0.5",
|
|
320
321
|
"string-similarity": "4.0.4",
|
|
321
322
|
"sudo-block": "3.0.0",
|
|
322
323
|
"supertest": "7.0.0",
|
|
@@ -324,12 +325,12 @@
|
|
|
324
325
|
"systeminformation": "3.45.7",
|
|
325
326
|
"task.js": "0.1.5",
|
|
326
327
|
"threads": "1.7.0",
|
|
327
|
-
"tnp": "~18.0.
|
|
328
|
-
"tnp-cli": "~
|
|
329
|
-
"tnp-config": "~18.0.
|
|
330
|
-
"tnp-core": "~18.0.
|
|
331
|
-
"tnp-db": "~18.0.
|
|
332
|
-
"tnp-models": "~18.0.
|
|
328
|
+
"tnp": "~18.0.4",
|
|
329
|
+
"tnp-cli": "~18.0.2",
|
|
330
|
+
"tnp-config": "~18.0.6",
|
|
331
|
+
"tnp-core": "~18.0.28",
|
|
332
|
+
"tnp-db": "~18.0.4",
|
|
333
|
+
"tnp-models": "~18.0.5",
|
|
333
334
|
"ts-debug": "1.3.0",
|
|
334
335
|
"ts-json-schema-generator": "2.3.0-next.5",
|
|
335
336
|
"ts-loader": "2.3.1",
|
|
@@ -340,13 +341,13 @@
|
|
|
340
341
|
"typedoc": "0.26.5",
|
|
341
342
|
"typedoc-plugin-markdown": "4.2.3",
|
|
342
343
|
"typescript": "~5.5.4",
|
|
343
|
-
"typescript-class-helpers": "~18.0.
|
|
344
|
+
"typescript-class-helpers": "~18.0.5",
|
|
344
345
|
"typescript-formatter": "~7.2.2",
|
|
345
346
|
"underscore": "1.13.7",
|
|
346
347
|
"uuid": "10.0.0",
|
|
347
348
|
"validator": "13.5.2",
|
|
348
349
|
"video.js": "8.3.0",
|
|
349
|
-
"vpn-split": "~
|
|
350
|
+
"vpn-split": "~18.0.2",
|
|
350
351
|
"vscode": "1.1.37",
|
|
351
352
|
"wait-on": "7.0.1",
|
|
352
353
|
"watch": "1.0.2",
|
|
@@ -359,14 +360,14 @@
|
|
|
359
360
|
"main": "dist/app.electron.js"
|
|
360
361
|
},
|
|
361
362
|
"build": {
|
|
362
|
-
"number":
|
|
363
|
-
"date": "2024-08-
|
|
364
|
-
"hash": "
|
|
363
|
+
"number": 230,
|
|
364
|
+
"date": "2024-08-13T18:58:15.000Z",
|
|
365
|
+
"hash": "cb9237ffc801b6d1b6cbc6d6d71b145b2e51f53b"
|
|
365
366
|
},
|
|
366
367
|
"currentProjectName": "node-cli-tester",
|
|
367
368
|
"currentProjectGenericName": "node-cli-tester",
|
|
368
369
|
"currentProjectType": "isomorphic-lib",
|
|
369
|
-
"currentFrameworkVersion": "18.0.
|
|
370
|
+
"currentFrameworkVersion": "18.0.4",
|
|
370
371
|
"isStandaloneProject": true,
|
|
371
372
|
"isSmartContainer": false,
|
|
372
373
|
"pathesTsconfig": "\"paths\": {\"node-cli-tester\":[\"./src/lib\"],\"node-cli-tester/*\":[\"./src/lib/*\"]},",
|
package/websql/README.md
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
# MyLib
|
|
2
|
-
|
|
3
|
-
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.0.
|
|
4
|
-
|
|
5
|
-
## Code scaffolding
|
|
6
|
-
|
|
7
|
-
Run `ng generate component component-name --project my-lib` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project my-lib`.
|
|
8
|
-
> Note: Don't forget to add `--project my-lib` or else it will be added to the default project in your `angular.json` file.
|
|
9
|
-
|
|
10
|
-
## Build
|
|
11
|
-
|
|
12
|
-
Run `ng build my-lib` to build the project. The build artifacts will be stored in the `dist/` directory.
|
|
13
|
-
|
|
14
|
-
## Publishing
|
|
15
|
-
|
|
16
|
-
After building your library with `ng build my-lib`, go to the dist folder `cd dist/my-lib` and run `npm publish`.
|
|
17
|
-
|
|
18
|
-
## Running unit tests
|
|
19
|
-
|
|
20
|
-
Run `ng test my-lib` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
|
21
|
-
|
|
22
|
-
## Further help
|
|
23
|
-
|
|
24
|
-
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
|
|
1
|
+
# MyLib
|
|
2
|
+
|
|
3
|
+
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.0.
|
|
4
|
+
|
|
5
|
+
## Code scaffolding
|
|
6
|
+
|
|
7
|
+
Run `ng generate component component-name --project my-lib` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project my-lib`.
|
|
8
|
+
> Note: Don't forget to add `--project my-lib` or else it will be added to the default project in your `angular.json` file.
|
|
9
|
+
|
|
10
|
+
## Build
|
|
11
|
+
|
|
12
|
+
Run `ng build my-lib` to build the project. The build artifacts will be stored in the `dist/` directory.
|
|
13
|
+
|
|
14
|
+
## Publishing
|
|
15
|
+
|
|
16
|
+
After building your library with `ng build my-lib`, go to the dist folder `cd dist/my-lib` and run `npm publish`.
|
|
17
|
+
|
|
18
|
+
## Running unit tests
|
|
19
|
+
|
|
20
|
+
Run `ng test my-lib` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
|
21
|
+
|
|
22
|
+
## Further help
|
|
23
|
+
|
|
24
|
+
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
|