vpn-split 18.0.5 → 18.0.8
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/assets/shared/shared_folder_info.txt +1 -1
- package/bin/vpn-split +11 -11
- package/bin/vpn-split-debug +11 -11
- package/browser/README.md +24 -24
- package/client/README.md +24 -24
- package/package.json +4 -4
- package/src.d.ts +1 -1
- package/{firedev.jsonc → taon.jsonc} +33 -33
- package/tmp-environment.json +33 -38
- package/websql/README.md +24 -24
|
@@ -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 (vpn-split@18.0.
|
|
3
|
+
Assets from this folder are being shipped with this npm package (vpn-split@18.0.8)
|
|
4
4
|
created from this project.
|
|
5
5
|
|
|
6
6
|
THIS FILE IS GENERATED.THIS FILE IS GENERATED. THIS FILE IS GENERATED.
|
package/bin/vpn-split
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/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
|
-
var run = require(p).run;
|
|
10
|
-
run(process.argv.slice(2));
|
|
11
|
-
|
|
1
|
+
#!/usr/bin/env node
|
|
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
|
+
var run = require(p).run;
|
|
10
|
+
run(process.argv.slice(2));
|
|
11
|
+
|
package/bin/vpn-split-debug
CHANGED
|
@@ -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
|
-
var run = require(p).run;
|
|
10
|
-
run(process.argv.slice(2));
|
|
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
|
+
var run = require(p).run;
|
|
10
|
+
run(process.argv.slice(2));
|
|
11
|
+
|
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/package.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
],
|
|
9
9
|
"includeAsDev": [],
|
|
10
10
|
"includeOnly": [
|
|
11
|
-
"tnp-
|
|
11
|
+
"tnp-helpers",
|
|
12
12
|
"hostile",
|
|
13
13
|
"is-elevated"
|
|
14
14
|
],
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"hostile": "1.3.3",
|
|
39
39
|
"is-elevated": "3.0.0",
|
|
40
|
-
"tnp-
|
|
40
|
+
"tnp-helpers": "~18.0.9"
|
|
41
41
|
},
|
|
42
42
|
"name": "vpn-split",
|
|
43
43
|
"license": "MIT",
|
|
@@ -46,8 +46,8 @@
|
|
|
46
46
|
"vpn-split": "bin/vpn-split",
|
|
47
47
|
"vpn-split-debug": "bin/vpn-split-debug"
|
|
48
48
|
},
|
|
49
|
-
"version": "18.0.
|
|
50
|
-
"lastBuildTagHash": "
|
|
49
|
+
"version": "18.0.8",
|
|
50
|
+
"lastBuildTagHash": "c1ea7cb9ef9c092c4e94b90ef9c3dfea2f413093",
|
|
51
51
|
"devDependencies": {},
|
|
52
52
|
"main": "dist/app.electron.js"
|
|
53
53
|
}
|
package/src.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// THIS FILE IS GENERATED
|
|
2
2
|
export * from './lib';
|
|
3
3
|
// THIS FILE IS GENERATED
|
|
4
|
-
// please use command:
|
|
4
|
+
// please use command: taon build:watch to see here links for your globally builded lib code files
|
|
5
5
|
// THIS FILE IS GENERATED
|
|
6
6
|
|
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
{
|
|
2
|
-
"resources": [],
|
|
3
|
-
|
|
4
|
-
"overrided": {
|
|
5
|
-
"linkedFolders": [],
|
|
6
|
-
"ignoreDepsPattern": ["*"],
|
|
7
|
-
"includeAsDev": [],
|
|
8
|
-
"includeOnly": ["tnp-
|
|
9
|
-
"dependencies": {},
|
|
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
|
-
"version": "v18",
|
|
30
|
-
"license": "MIT",
|
|
31
|
-
"private": false,
|
|
32
|
-
"workerPlugins": {}
|
|
33
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"resources": [],
|
|
3
|
+
|
|
4
|
+
"overrided": {
|
|
5
|
+
"linkedFolders": [],
|
|
6
|
+
"ignoreDepsPattern": ["*"],
|
|
7
|
+
"includeAsDev": [],
|
|
8
|
+
"includeOnly": ["tnp-helpers", "hostile", "is-elevated"],
|
|
9
|
+
"dependencies": {},
|
|
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
|
+
"version": "v18",
|
|
30
|
+
"license": "MIT",
|
|
31
|
+
"private": false,
|
|
32
|
+
"workerPlugins": {}
|
|
33
|
+
}
|
package/tmp-environment.json
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
],
|
|
13
13
|
"includeAsDev": [],
|
|
14
14
|
"includeOnly": [
|
|
15
|
-
"tnp-
|
|
15
|
+
"tnp-helpers",
|
|
16
16
|
"hostile",
|
|
17
17
|
"is-elevated"
|
|
18
18
|
],
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"hostile": "1.3.3",
|
|
43
43
|
"is-elevated": "3.0.0",
|
|
44
|
-
"tnp-
|
|
44
|
+
"tnp-helpers": "~18.0.9"
|
|
45
45
|
},
|
|
46
46
|
"name": "vpn-split",
|
|
47
47
|
"license": "MIT",
|
|
@@ -50,8 +50,8 @@
|
|
|
50
50
|
"vpn-split": "bin/vpn-split",
|
|
51
51
|
"vpn-split-debug": "bin/vpn-split-debug"
|
|
52
52
|
},
|
|
53
|
-
"version": "18.0.
|
|
54
|
-
"lastBuildTagHash": "
|
|
53
|
+
"version": "18.0.8",
|
|
54
|
+
"lastBuildTagHash": "c1ea7cb9ef9c092c4e94b90ef9c3dfea2f413093",
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"@angular-builders/custom-webpack": "~18.0.0",
|
|
57
57
|
"@angular-devkit/build-angular": "~18.1.4",
|
|
@@ -120,7 +120,7 @@
|
|
|
120
120
|
"@types/lockfile": "1.0.4",
|
|
121
121
|
"@types/lodash": "4.14.92",
|
|
122
122
|
"@types/mocha": "10.0.7",
|
|
123
|
-
"@types/node": "18.
|
|
123
|
+
"@types/node": "16.18.21",
|
|
124
124
|
"@types/node-notifier": "8.0.5",
|
|
125
125
|
"@types/oauth2orize": "1.11.5",
|
|
126
126
|
"@types/password-hash": "1.2.24",
|
|
@@ -139,7 +139,6 @@
|
|
|
139
139
|
"angular-material-css-vars": "7.0.0",
|
|
140
140
|
"angular-resize-event": "3.2.0",
|
|
141
141
|
"animate.css": "4.1.1",
|
|
142
|
-
"any-project-cli": "~18.0.6",
|
|
143
142
|
"app-root-path": "3.1.0",
|
|
144
143
|
"axios": "1.7.3",
|
|
145
144
|
"background-worker-process": "~16.100.10",
|
|
@@ -194,14 +193,6 @@
|
|
|
194
193
|
"file-loader": "1.1.11",
|
|
195
194
|
"file-saver": "2.0.5",
|
|
196
195
|
"file-type": "19.1.1",
|
|
197
|
-
"firedev": "^18",
|
|
198
|
-
"firedev-crud": "~18.0.5",
|
|
199
|
-
"firedev-crud-deamon": "~18.0.6",
|
|
200
|
-
"firedev-ports": "~18.0.5",
|
|
201
|
-
"firedev-storage": "~18.0.5",
|
|
202
|
-
"firedev-type-sql": "~18.0.6",
|
|
203
|
-
"firedev-typeorm": "~18.0.5",
|
|
204
|
-
"firedev-ui": "~18.0.6",
|
|
205
196
|
"fkill": "6.1.0",
|
|
206
197
|
"font-awesome": "4.7.0",
|
|
207
198
|
"form-data": "4.0.0",
|
|
@@ -218,12 +209,12 @@
|
|
|
218
209
|
"image-focus": "1.2.1",
|
|
219
210
|
"immer": "10.0.2",
|
|
220
211
|
"immutable": "4.3.7",
|
|
221
|
-
"incremental-compiler": "~18.0.
|
|
212
|
+
"incremental-compiler": "~18.0.9",
|
|
222
213
|
"inquirer": "7.3.3",
|
|
223
214
|
"inquirer-autocomplete-prompt": "1.4.0",
|
|
224
215
|
"inquirer-autocomplete-standalone": "0.8.1",
|
|
225
216
|
"inquirer-select-pro": "1.0.0-alpha.7",
|
|
226
|
-
"isomorphic-region-loader": "~18.0.
|
|
217
|
+
"isomorphic-region-loader": "~18.0.9",
|
|
227
218
|
"istanbul-instrumenter-loader": "3.0.1",
|
|
228
219
|
"jest": "29.7.0",
|
|
229
220
|
"jest-date-mock": "1.0.10",
|
|
@@ -234,8 +225,8 @@
|
|
|
234
225
|
"joi": "17.13.3",
|
|
235
226
|
"jscodeshift": "0.6.3",
|
|
236
227
|
"json-stringify-safe": "5.0.1",
|
|
237
|
-
"json10": "~18.0.
|
|
238
|
-
"json10-writer": "~18.0.
|
|
228
|
+
"json10": "~18.0.9",
|
|
229
|
+
"json10-writer": "~18.0.9",
|
|
239
230
|
"json5": "2.2.3",
|
|
240
231
|
"json5-writer": "0.2.0",
|
|
241
232
|
"jszip": "3.10.1",
|
|
@@ -244,9 +235,9 @@
|
|
|
244
235
|
"localforage": "1.10.0",
|
|
245
236
|
"lockfile": "1.0.4",
|
|
246
237
|
"lodash": "4.17.21",
|
|
247
|
-
"lodash-walk-object": "~18.0.
|
|
238
|
+
"lodash-walk-object": "~18.0.9",
|
|
248
239
|
"lowdb": "7.0.1",
|
|
249
|
-
"magic-renamer": "~18.0.
|
|
240
|
+
"magic-renamer": "~18.0.9",
|
|
250
241
|
"material-design-icons": "3.0.1",
|
|
251
242
|
"method-override": "2.3.10",
|
|
252
243
|
"minimist": "1.2.8",
|
|
@@ -257,10 +248,11 @@
|
|
|
257
248
|
"ng-in-viewport": "16.1.0",
|
|
258
249
|
"ng-lock": "18.0.1",
|
|
259
250
|
"ng-packagr": "18.1.0",
|
|
260
|
-
"ng-talkback": "~18.0.
|
|
261
|
-
"ng2-logger": "~18.0.
|
|
251
|
+
"ng-talkback": "~18.0.8",
|
|
252
|
+
"ng2-logger": "~18.0.11",
|
|
262
253
|
"ng2-pdfjs-viewer": "18.0.0",
|
|
263
|
-
"ng2-rest": "~18.0.
|
|
254
|
+
"ng2-rest": "~18.0.9",
|
|
255
|
+
"ng2-rest-swagger-generator": "18.0.6",
|
|
264
256
|
"ngx-ace-wrapper": "17.0.0",
|
|
265
257
|
"ngx-editor": "17.5.4",
|
|
266
258
|
"ngx-highlightjs": "12.0.0",
|
|
@@ -273,7 +265,7 @@
|
|
|
273
265
|
"ngx-scrolltop": "18.0.0",
|
|
274
266
|
"ngx-store": "3.1.1",
|
|
275
267
|
"ngx-typed-js": "2.1.1",
|
|
276
|
-
"node-cli-tester": "~18.0.
|
|
268
|
+
"node-cli-tester": "~18.0.8",
|
|
277
269
|
"node-localstorage": "2.1.6",
|
|
278
270
|
"node-notifier": "10.0.1",
|
|
279
271
|
"node-polyfill-webpack-plugin": "2.0.1",
|
|
@@ -303,7 +295,7 @@
|
|
|
303
295
|
"q": "1.5.1",
|
|
304
296
|
"rallax.js": "2.0.4",
|
|
305
297
|
"randomcolor": "0.5.3",
|
|
306
|
-
"record-replay-req-res-scenario": "~18.0.
|
|
298
|
+
"record-replay-req-res-scenario": "~18.0.8",
|
|
307
299
|
"reflect-metadata": "0.2.2",
|
|
308
300
|
"rimraf": "2.6.2",
|
|
309
301
|
"rxjs": "~7.8.1",
|
|
@@ -315,20 +307,22 @@
|
|
|
315
307
|
"socket.io-client": "4.7.5",
|
|
316
308
|
"sort-package-json": "1.11.0",
|
|
317
309
|
"sql.js": "1.8.0",
|
|
318
|
-
"static-columns": "~18.0.
|
|
310
|
+
"static-columns": "~18.0.10",
|
|
319
311
|
"string-similarity": "4.0.4",
|
|
320
312
|
"sudo-block": "3.0.0",
|
|
321
313
|
"supertest": "7.0.0",
|
|
322
314
|
"sweetalert2": "11.7.32",
|
|
323
315
|
"systeminformation": "3.45.7",
|
|
316
|
+
"taon": "^18",
|
|
317
|
+
"taon-storage": "18.0.8",
|
|
318
|
+
"taon-type-sql": "18.0.9",
|
|
319
|
+
"taon-typeorm": "18.0.8",
|
|
324
320
|
"task.js": "0.1.5",
|
|
325
321
|
"threads": "1.7.0",
|
|
326
|
-
"tnp": "~18.0.
|
|
327
|
-
"tnp-
|
|
328
|
-
"tnp-
|
|
329
|
-
"tnp-
|
|
330
|
-
"tnp-helpers": "~18.0.6",
|
|
331
|
-
"tnp-models": "~18.0.7",
|
|
322
|
+
"tnp": "~18.0.9",
|
|
323
|
+
"tnp-config": "~18.0.11",
|
|
324
|
+
"tnp-core": "~18.0.33",
|
|
325
|
+
"tnp-models": "~18.0.10",
|
|
332
326
|
"ts-debug": "1.3.0",
|
|
333
327
|
"ts-json-schema-generator": "2.3.0-next.5",
|
|
334
328
|
"ts-loader": "2.3.1",
|
|
@@ -336,16 +330,17 @@
|
|
|
336
330
|
"tslib": "~2.6.3",
|
|
337
331
|
"tslint": "6.1.3",
|
|
338
332
|
"turndown": "7.2.0",
|
|
333
|
+
"type-fest": "4.25.0",
|
|
339
334
|
"typedoc": "0.26.5",
|
|
340
335
|
"typedoc-plugin-markdown": "4.2.3",
|
|
341
336
|
"typescript": "~5.5.4",
|
|
342
|
-
"typescript-class-helpers": "~18.0.
|
|
337
|
+
"typescript-class-helpers": "~18.0.10",
|
|
343
338
|
"typescript-formatter": "~7.2.2",
|
|
344
339
|
"underscore": "1.13.7",
|
|
345
340
|
"uuid": "10.0.0",
|
|
346
341
|
"validator": "13.5.2",
|
|
347
342
|
"video.js": "8.3.0",
|
|
348
|
-
"vpn-split": "~18.0.
|
|
343
|
+
"vpn-split": "~18.0.5",
|
|
349
344
|
"vscode": "1.1.37",
|
|
350
345
|
"wait-on": "7.0.1",
|
|
351
346
|
"watch": "1.0.2",
|
|
@@ -358,14 +353,14 @@
|
|
|
358
353
|
"main": "dist/app.electron.js"
|
|
359
354
|
},
|
|
360
355
|
"build": {
|
|
361
|
-
"number":
|
|
362
|
-
"date": "2024-08-
|
|
363
|
-
"hash": "
|
|
356
|
+
"number": 239,
|
|
357
|
+
"date": "2024-08-28T12:52:21.000Z",
|
|
358
|
+
"hash": "daf7a76e129303b59527a6c6127dc45790917bc1"
|
|
364
359
|
},
|
|
365
360
|
"currentProjectName": "vpn-split",
|
|
366
361
|
"currentProjectGenericName": "vpn-split",
|
|
367
362
|
"currentProjectType": "isomorphic-lib",
|
|
368
|
-
"currentFrameworkVersion": "18.0.
|
|
363
|
+
"currentFrameworkVersion": "18.0.9",
|
|
369
364
|
"isStandaloneProject": true,
|
|
370
365
|
"isSmartContainer": false,
|
|
371
366
|
"pathesTsconfig": "\"paths\": {\"vpn-split\":[\"./src/lib\"],\"vpn-split/*\":[\"./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.
|