vpn-split 18.0.1 → 18.0.2
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/firedev.jsonc +32 -32
- package/package.json +3 -3
- package/tmp-environment.json +36 -36
- 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.2)
|
|
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/firedev.jsonc
CHANGED
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
{
|
|
2
|
-
"resources": [],
|
|
3
|
-
|
|
4
|
-
"overrided": {
|
|
5
|
-
"linkedFolders": [],
|
|
6
|
-
"ignoreDepsPattern": ["*"],
|
|
7
|
-
"includeAsDev": [],
|
|
8
|
-
"includeOnly": ["tnp-db", "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": {}
|
|
1
|
+
{
|
|
2
|
+
"resources": [],
|
|
3
|
+
|
|
4
|
+
"overrided": {
|
|
5
|
+
"linkedFolders": [],
|
|
6
|
+
"ignoreDepsPattern": ["*"],
|
|
7
|
+
"includeAsDev": [],
|
|
8
|
+
"includeOnly": ["tnp-db", "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
33
|
}
|
package/package.json
CHANGED
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"hostile": "1.3.3",
|
|
39
39
|
"is-elevated": "3.0.0",
|
|
40
|
-
"tnp-db": "~18.0.
|
|
40
|
+
"tnp-db": "~18.0.3"
|
|
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.2",
|
|
50
|
+
"lastBuildTagHash": "35e593d6133d258d3c24b8e5daf1ca9845bc2ae4",
|
|
51
51
|
"devDependencies": {},
|
|
52
52
|
"main": "dist/app.electron.js"
|
|
53
53
|
}
|
package/tmp-environment.json
CHANGED
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"hostile": "1.3.3",
|
|
43
43
|
"is-elevated": "3.0.0",
|
|
44
|
-
"tnp-db": "~18.0.
|
|
44
|
+
"tnp-db": "~18.0.3"
|
|
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.2",
|
|
54
|
+
"lastBuildTagHash": "35e593d6133d258d3c24b8e5daf1ca9845bc2ae4",
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"@angular-builders/custom-webpack": "~18.0.0",
|
|
57
57
|
"@angular-devkit/build-angular": "~18.1.4",
|
|
@@ -139,7 +139,7 @@
|
|
|
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.
|
|
142
|
+
"any-project-cli": "~18.0.3",
|
|
143
143
|
"app-root-path": "3.1.0",
|
|
144
144
|
"axios": "1.7.3",
|
|
145
145
|
"background-worker-process": "~16.100.10",
|
|
@@ -195,13 +195,13 @@
|
|
|
195
195
|
"file-saver": "2.0.5",
|
|
196
196
|
"file-type": "19.1.1",
|
|
197
197
|
"firedev": "^18",
|
|
198
|
-
"firedev-crud": "~18.0.
|
|
199
|
-
"firedev-crud-deamon": "~18.0.
|
|
200
|
-
"firedev-ports": "~18.0.
|
|
201
|
-
"firedev-storage": "~18.0.
|
|
202
|
-
"firedev-type-sql": "~18.0.
|
|
203
|
-
"firedev-typeorm": "~18.0.
|
|
204
|
-
"firedev-ui": "~
|
|
198
|
+
"firedev-crud": "~18.0.2",
|
|
199
|
+
"firedev-crud-deamon": "~18.0.3",
|
|
200
|
+
"firedev-ports": "~18.0.2",
|
|
201
|
+
"firedev-storage": "~18.0.2",
|
|
202
|
+
"firedev-type-sql": "~18.0.3",
|
|
203
|
+
"firedev-typeorm": "~18.0.2",
|
|
204
|
+
"firedev-ui": "~18.0.3",
|
|
205
205
|
"fkill": "6.1.0",
|
|
206
206
|
"font-awesome": "4.7.0",
|
|
207
207
|
"form-data": "4.0.0",
|
|
@@ -218,10 +218,10 @@
|
|
|
218
218
|
"image-focus": "1.2.1",
|
|
219
219
|
"immer": "10.0.2",
|
|
220
220
|
"immutable": "4.3.7",
|
|
221
|
-
"incremental-compiler": "~18.0.
|
|
221
|
+
"incremental-compiler": "~18.0.3",
|
|
222
222
|
"inquirer": "7.3.3",
|
|
223
223
|
"inquirer-autocomplete-prompt": "1.3.0",
|
|
224
|
-
"isomorphic-region-loader": "~18.0.
|
|
224
|
+
"isomorphic-region-loader": "~18.0.3",
|
|
225
225
|
"istanbul-instrumenter-loader": "3.0.1",
|
|
226
226
|
"jest": "29.7.0",
|
|
227
227
|
"jest-date-mock": "1.0.10",
|
|
@@ -232,8 +232,8 @@
|
|
|
232
232
|
"joi": "17.13.3",
|
|
233
233
|
"jscodeshift": "0.6.3",
|
|
234
234
|
"json-stringify-safe": "5.0.1",
|
|
235
|
-
"json10": "~18.0.
|
|
236
|
-
"json10-writer": "~18.0.
|
|
235
|
+
"json10": "~18.0.3",
|
|
236
|
+
"json10-writer": "~18.0.3",
|
|
237
237
|
"json5": "2.2.3",
|
|
238
238
|
"json5-writer": "0.2.0",
|
|
239
239
|
"jszip": "3.10.1",
|
|
@@ -242,9 +242,9 @@
|
|
|
242
242
|
"localforage": "1.10.0",
|
|
243
243
|
"lockfile": "1.0.4",
|
|
244
244
|
"lodash": "4.17.21",
|
|
245
|
-
"lodash-walk-object": "~18.0.
|
|
245
|
+
"lodash-walk-object": "~18.0.3",
|
|
246
246
|
"lowdb": "7.0.1",
|
|
247
|
-
"magic-renamer": "~18.0.
|
|
247
|
+
"magic-renamer": "~18.0.3",
|
|
248
248
|
"material-design-icons": "3.0.1",
|
|
249
249
|
"method-override": "2.3.10",
|
|
250
250
|
"minimist": "1.2.8",
|
|
@@ -255,10 +255,10 @@
|
|
|
255
255
|
"ng-in-viewport": "16.1.0",
|
|
256
256
|
"ng-lock": "18.0.1",
|
|
257
257
|
"ng-packagr": "18.1.0",
|
|
258
|
-
"ng-talkback": "~18.0.
|
|
259
|
-
"ng2-logger": "~18.0.
|
|
258
|
+
"ng-talkback": "~18.0.2",
|
|
259
|
+
"ng2-logger": "~18.0.5",
|
|
260
260
|
"ng2-pdfjs-viewer": "18.0.0",
|
|
261
|
-
"ng2-rest": "~18.0.
|
|
261
|
+
"ng2-rest": "~18.0.3",
|
|
262
262
|
"ngx-ace-wrapper": "17.0.0",
|
|
263
263
|
"ngx-editor": "17.5.4",
|
|
264
264
|
"ngx-highlightjs": "12.0.0",
|
|
@@ -271,7 +271,7 @@
|
|
|
271
271
|
"ngx-scrolltop": "18.0.0",
|
|
272
272
|
"ngx-store": "3.1.1",
|
|
273
273
|
"ngx-typed-js": "2.1.1",
|
|
274
|
-
"node-cli-tester": "~18.0.
|
|
274
|
+
"node-cli-tester": "~18.0.2",
|
|
275
275
|
"node-localstorage": "2.1.6",
|
|
276
276
|
"node-notifier": "10.0.1",
|
|
277
277
|
"node-polyfill-webpack-plugin": "2.0.1",
|
|
@@ -280,7 +280,7 @@
|
|
|
280
280
|
"npm-run": "4.1.2",
|
|
281
281
|
"omelette": "0.4.17",
|
|
282
282
|
"open": "10.0.4",
|
|
283
|
-
"ora": "
|
|
283
|
+
"ora": "3.4.0",
|
|
284
284
|
"passport": "0.7.0",
|
|
285
285
|
"passport-http-bearer": "1.0.1",
|
|
286
286
|
"password-hash": "1.2.2",
|
|
@@ -300,7 +300,7 @@
|
|
|
300
300
|
"q": "1.5.1",
|
|
301
301
|
"rallax.js": "2.0.4",
|
|
302
302
|
"randomcolor": "0.5.3",
|
|
303
|
-
"record-replay-req-res-scenario": "~18.0.
|
|
303
|
+
"record-replay-req-res-scenario": "~18.0.2",
|
|
304
304
|
"reflect-metadata": "0.2.2",
|
|
305
305
|
"rimraf": "2.6.2",
|
|
306
306
|
"rxjs": "~7.8.1",
|
|
@@ -312,7 +312,7 @@
|
|
|
312
312
|
"socket.io-client": "4.7.5",
|
|
313
313
|
"sort-package-json": "1.11.0",
|
|
314
314
|
"sql.js": "1.8.0",
|
|
315
|
-
"static-columns": "~18.0.
|
|
315
|
+
"static-columns": "~18.0.4",
|
|
316
316
|
"string-similarity": "4.0.4",
|
|
317
317
|
"sudo-block": "3.0.0",
|
|
318
318
|
"supertest": "7.0.0",
|
|
@@ -320,12 +320,12 @@
|
|
|
320
320
|
"systeminformation": "3.45.7",
|
|
321
321
|
"task.js": "0.1.5",
|
|
322
322
|
"threads": "1.7.0",
|
|
323
|
-
"tnp": "~18.0.
|
|
324
|
-
"tnp-cli": "~18.0.
|
|
325
|
-
"tnp-config": "~18.0.
|
|
326
|
-
"tnp-core": "~18.0.
|
|
327
|
-
"tnp-helpers": "~18.0.
|
|
328
|
-
"tnp-models": "~18.0.
|
|
323
|
+
"tnp": "~18.0.3",
|
|
324
|
+
"tnp-cli": "~18.0.2",
|
|
325
|
+
"tnp-config": "~18.0.5",
|
|
326
|
+
"tnp-core": "~18.0.27",
|
|
327
|
+
"tnp-helpers": "~18.0.3",
|
|
328
|
+
"tnp-models": "~18.0.4",
|
|
329
329
|
"ts-debug": "1.3.0",
|
|
330
330
|
"ts-json-schema-generator": "2.3.0-next.5",
|
|
331
331
|
"ts-loader": "2.3.1",
|
|
@@ -336,13 +336,13 @@
|
|
|
336
336
|
"typedoc": "0.26.5",
|
|
337
337
|
"typedoc-plugin-markdown": "4.2.3",
|
|
338
338
|
"typescript": "~5.5.4",
|
|
339
|
-
"typescript-class-helpers": "~18.0.
|
|
339
|
+
"typescript-class-helpers": "~18.0.4",
|
|
340
340
|
"typescript-formatter": "~7.2.2",
|
|
341
341
|
"underscore": "1.13.7",
|
|
342
342
|
"uuid": "10.0.0",
|
|
343
343
|
"validator": "13.5.2",
|
|
344
344
|
"video.js": "8.3.0",
|
|
345
|
-
"vpn-split": "~
|
|
345
|
+
"vpn-split": "~18.0.1",
|
|
346
346
|
"vscode": "1.1.37",
|
|
347
347
|
"wait-on": "7.0.1",
|
|
348
348
|
"watch": "1.0.2",
|
|
@@ -355,14 +355,14 @@
|
|
|
355
355
|
"main": "dist/app.electron.js"
|
|
356
356
|
},
|
|
357
357
|
"build": {
|
|
358
|
-
"number":
|
|
359
|
-
"date": "2024-08-
|
|
360
|
-
"hash": "
|
|
358
|
+
"number": 232,
|
|
359
|
+
"date": "2024-08-13T13:00:05.000Z",
|
|
360
|
+
"hash": "136929a64fafc4aadc104812fba7429e0840ccd2"
|
|
361
361
|
},
|
|
362
362
|
"currentProjectName": "vpn-split",
|
|
363
363
|
"currentProjectGenericName": "vpn-split",
|
|
364
364
|
"currentProjectType": "isomorphic-lib",
|
|
365
|
-
"currentFrameworkVersion": "18.0.
|
|
365
|
+
"currentFrameworkVersion": "18.0.3",
|
|
366
366
|
"isStandaloneProject": true,
|
|
367
367
|
"isSmartContainer": false,
|
|
368
368
|
"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.
|