vpn-split 18.0.15 → 18.0.17
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 +3 -3
- package/taon.jsonc +33 -33
- package/tmp-environment.json +30 -29
- 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.17)
|
|
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
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"hostile": "1.3.3",
|
|
39
39
|
"is-elevated": "3.0.0",
|
|
40
|
-
"tnp-helpers": "~18.0.
|
|
40
|
+
"tnp-helpers": "~18.0.18"
|
|
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.17",
|
|
50
|
+
"lastBuildTagHash": "9260d588ca54cfe7a10afcf4c833a69e9221b61d",
|
|
51
51
|
"devDependencies": {},
|
|
52
52
|
"main": "dist/app.electron.js"
|
|
53
53
|
}
|
package/taon.jsonc
CHANGED
|
@@ -1,33 +1,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
|
-
}
|
|
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
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"hostile": "1.3.3",
|
|
43
43
|
"is-elevated": "3.0.0",
|
|
44
|
-
"tnp-helpers": "~18.0.
|
|
44
|
+
"tnp-helpers": "~18.0.18"
|
|
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.17",
|
|
54
|
+
"lastBuildTagHash": "9260d588ca54cfe7a10afcf4c833a69e9221b61d",
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"@angular-builders/custom-webpack": "~18.0.0",
|
|
57
57
|
"@angular-devkit/build-angular": "~18.1.4",
|
|
@@ -215,12 +215,13 @@
|
|
|
215
215
|
"image-focus": "1.2.1",
|
|
216
216
|
"immer": "10.0.2",
|
|
217
217
|
"immutable": "4.3.7",
|
|
218
|
-
"incremental-compiler": "~18.0.
|
|
218
|
+
"incremental-compiler": "~18.0.19",
|
|
219
219
|
"inquirer": "7.3.3",
|
|
220
220
|
"inquirer-autocomplete-prompt": "1.4.0",
|
|
221
221
|
"inquirer-autocomplete-standalone": "0.8.1",
|
|
222
222
|
"inquirer-select-pro": "1.0.0-alpha.7",
|
|
223
|
-
"
|
|
223
|
+
"inquirer-toggle": "1.0.1",
|
|
224
|
+
"isomorphic-region-loader": "~18.0.18",
|
|
224
225
|
"istanbul-instrumenter-loader": "3.0.1",
|
|
225
226
|
"jest": "29.7.0",
|
|
226
227
|
"jest-date-mock": "1.0.10",
|
|
@@ -231,8 +232,8 @@
|
|
|
231
232
|
"joi": "17.13.3",
|
|
232
233
|
"jscodeshift": "0.6.3",
|
|
233
234
|
"json-stringify-safe": "5.0.1",
|
|
234
|
-
"json10": "~18.0.
|
|
235
|
-
"json10-writer": "~18.0.
|
|
235
|
+
"json10": "~18.0.18",
|
|
236
|
+
"json10-writer": "~18.0.18",
|
|
236
237
|
"json5": "2.2.3",
|
|
237
238
|
"json5-writer": "0.2.0",
|
|
238
239
|
"jszip": "3.10.1",
|
|
@@ -241,9 +242,9 @@
|
|
|
241
242
|
"localforage": "1.10.0",
|
|
242
243
|
"lockfile": "1.0.4",
|
|
243
244
|
"lodash": "4.17.21",
|
|
244
|
-
"lodash-walk-object": "~18.0.
|
|
245
|
+
"lodash-walk-object": "~18.0.18",
|
|
245
246
|
"lowdb": "7.0.1",
|
|
246
|
-
"magic-renamer": "~18.0.
|
|
247
|
+
"magic-renamer": "~18.0.18",
|
|
247
248
|
"material-design-icons": "3.0.1",
|
|
248
249
|
"method-override": "2.3.10",
|
|
249
250
|
"minimist": "1.2.8",
|
|
@@ -254,11 +255,11 @@
|
|
|
254
255
|
"ng-in-viewport": "16.1.0",
|
|
255
256
|
"ng-lock": "18.0.1",
|
|
256
257
|
"ng-packagr": "18.1.0",
|
|
257
|
-
"ng-talkback": "~18.0.
|
|
258
|
-
"ng2-logger": "~18.0.
|
|
258
|
+
"ng-talkback": "~18.0.17",
|
|
259
|
+
"ng2-logger": "~18.0.20",
|
|
259
260
|
"ng2-pdfjs-viewer": "18.0.0",
|
|
260
|
-
"ng2-rest": "~18.0.
|
|
261
|
-
"ng2-rest-swagger-generator": "18.0.
|
|
261
|
+
"ng2-rest": "~18.0.18",
|
|
262
|
+
"ng2-rest-swagger-generator": "18.0.15",
|
|
262
263
|
"ngx-ace-wrapper": "17.0.0",
|
|
263
264
|
"ngx-editor": "17.5.4",
|
|
264
265
|
"ngx-highlightjs": "12.0.0",
|
|
@@ -272,7 +273,7 @@
|
|
|
272
273
|
"ngx-scrolltop": "18.0.0",
|
|
273
274
|
"ngx-store": "3.1.1",
|
|
274
275
|
"ngx-typed-js": "2.1.1",
|
|
275
|
-
"node-cli-tester": "~18.0.
|
|
276
|
+
"node-cli-tester": "~18.0.17",
|
|
276
277
|
"node-localstorage": "2.1.6",
|
|
277
278
|
"node-notifier": "10.0.1",
|
|
278
279
|
"node-polyfill-webpack-plugin": "2.0.1",
|
|
@@ -303,7 +304,7 @@
|
|
|
303
304
|
"q": "1.5.1",
|
|
304
305
|
"rallax.js": "2.0.4",
|
|
305
306
|
"randomcolor": "0.5.3",
|
|
306
|
-
"record-replay-req-res-scenario": "~18.0.
|
|
307
|
+
"record-replay-req-res-scenario": "~18.0.17",
|
|
307
308
|
"reflect-metadata": "0.2.2",
|
|
308
309
|
"rimraf": "2.6.2",
|
|
309
310
|
"rxjs": "~7.8.1",
|
|
@@ -317,22 +318,22 @@
|
|
|
317
318
|
"sql-template-strings": "2.2.2",
|
|
318
319
|
"sql-template-tag": "5.2.1",
|
|
319
320
|
"sql.js": "1.8.0",
|
|
320
|
-
"static-columns": "~18.0.
|
|
321
|
+
"static-columns": "~18.0.19",
|
|
321
322
|
"string-similarity": "4.0.4",
|
|
322
323
|
"sudo-block": "3.0.0",
|
|
323
324
|
"supertest": "7.0.0",
|
|
324
325
|
"sweetalert2": "11.7.32",
|
|
325
326
|
"systeminformation": "3.45.7",
|
|
326
327
|
"taon": "^18",
|
|
327
|
-
"taon-storage": "18.0.
|
|
328
|
-
"taon-type-sql": "18.0.
|
|
329
|
-
"taon-typeorm": "18.0.
|
|
328
|
+
"taon-storage": "18.0.27",
|
|
329
|
+
"taon-type-sql": "18.0.18",
|
|
330
|
+
"taon-typeorm": "18.0.17",
|
|
330
331
|
"task.js": "0.1.5",
|
|
331
332
|
"threads": "1.7.0",
|
|
332
|
-
"tnp": "~18.0.
|
|
333
|
-
"tnp-config": "~18.0.
|
|
334
|
-
"tnp-core": "~18.0.
|
|
335
|
-
"tnp-models": "~18.0.
|
|
333
|
+
"tnp": "~18.0.23",
|
|
334
|
+
"tnp-config": "~18.0.20",
|
|
335
|
+
"tnp-core": "~18.0.45",
|
|
336
|
+
"tnp-models": "~18.0.19",
|
|
336
337
|
"ts-debug": "1.3.0",
|
|
337
338
|
"ts-json-schema-generator": "2.3.0-next.5",
|
|
338
339
|
"ts-loader": "2.3.1",
|
|
@@ -344,14 +345,14 @@
|
|
|
344
345
|
"typedoc": "0.26.5",
|
|
345
346
|
"typedoc-plugin-markdown": "4.2.3",
|
|
346
347
|
"typescript": "~5.5.4",
|
|
347
|
-
"typescript-class-helpers": "~18.0.
|
|
348
|
+
"typescript-class-helpers": "~18.0.19",
|
|
348
349
|
"typescript-formatter": "~7.2.2",
|
|
349
350
|
"typescript-string-enums": "~1.0.0",
|
|
350
351
|
"underscore": "1.13.7",
|
|
351
352
|
"uuid": "10.0.0",
|
|
352
353
|
"validator": "13.5.2",
|
|
353
354
|
"video.js": "8.3.0",
|
|
354
|
-
"vpn-split": "~18.0.
|
|
355
|
+
"vpn-split": "~18.0.16",
|
|
355
356
|
"vscode": "1.1.37",
|
|
356
357
|
"wait-on": "8.0.1",
|
|
357
358
|
"watch": "1.0.2",
|
|
@@ -364,14 +365,14 @@
|
|
|
364
365
|
"main": "dist/app.electron.js"
|
|
365
366
|
},
|
|
366
367
|
"build": {
|
|
367
|
-
"number":
|
|
368
|
-
"date": "
|
|
369
|
-
"hash": "
|
|
368
|
+
"number": 252,
|
|
369
|
+
"date": "2025-01-06T22:22:32.000Z",
|
|
370
|
+
"hash": "b5c118c2dab70eb30f8632777d4921c3a80d8cfe"
|
|
370
371
|
},
|
|
371
372
|
"currentProjectName": "vpn-split",
|
|
372
373
|
"currentProjectGenericName": "vpn-split",
|
|
373
374
|
"currentProjectType": "isomorphic-lib",
|
|
374
|
-
"currentFrameworkVersion": "18.0.
|
|
375
|
+
"currentFrameworkVersion": "18.0.23",
|
|
375
376
|
"isStandaloneProject": true,
|
|
376
377
|
"isSmartContainer": false,
|
|
377
378
|
"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.
|