tnp-config 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 +17 -17
- package/assets/shared/shared_folder_info.txt +1 -1
- package/browser/README.md +24 -24
- package/browser/package.json +25 -0
- package/client/README.md +24 -24
- package/firedev.jsonc +39 -39
- package/package.json +4 -4
- package/tmp-environment.json +29 -28
- package/websql/README.md +24 -24
- package/websql/package.json +25 -0
package/README.md
CHANGED
@@ -1,17 +1,17 @@
|
|
1
|
-
# firedev-config ( tnp-config )
|
2
|
-
|
3
|
-
- part of [firedev.io](https://github.com/darekf77/firedev)
|
4
|
-
- purpose:
|
5
|
-
+ general config for all firedev/isomorphic lib/apps
|
6
|
-
+ common usefull phrases for backend/frontend usage
|
7
|
-
|
8
|
-
## Usage
|
9
|
-
- in firedev isomorphic libs/apps or any NodeJS apps/libs:
|
10
|
-
```ts
|
11
|
-
import { config } from 'tnp-config';
|
12
|
-
```
|
13
|
-
|
14
|
-
- in any frontend browser apps (except firedev lib/apps)
|
15
|
-
```ts
|
16
|
-
import { Helpers } from 'tnp-config/browser';
|
17
|
-
```
|
1
|
+
# firedev-config ( tnp-config )
|
2
|
+
|
3
|
+
- part of [firedev.io](https://github.com/darekf77/firedev)
|
4
|
+
- purpose:
|
5
|
+
+ general config for all firedev/isomorphic lib/apps
|
6
|
+
+ common usefull phrases for backend/frontend usage
|
7
|
+
|
8
|
+
## Usage
|
9
|
+
- in firedev isomorphic libs/apps or any NodeJS apps/libs:
|
10
|
+
```ts
|
11
|
+
import { config } from 'tnp-config';
|
12
|
+
```
|
13
|
+
|
14
|
+
- in any frontend browser apps (except firedev lib/apps)
|
15
|
+
```ts
|
16
|
+
import { Helpers } from 'tnp-config/browser';
|
17
|
+
```
|
@@ -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 (tnp-config@18.0.
|
3
|
+
Assets from this folder are being shipped with this npm package (tnp-config@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/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.
|
@@ -0,0 +1,25 @@
|
|
1
|
+
{
|
2
|
+
"name": "tnp-config",
|
3
|
+
"version": "0.0.1",
|
4
|
+
"peerDependencies": {
|
5
|
+
"@angular/common": "^13.2.0",
|
6
|
+
"@angular/core": "^13.2.0"
|
7
|
+
},
|
8
|
+
"dependencies": {
|
9
|
+
"tslib": "^2.3.0"
|
10
|
+
},
|
11
|
+
"module": "fesm2022/tnp-config.mjs",
|
12
|
+
"typings": "index.d.ts",
|
13
|
+
"exports": {
|
14
|
+
"./package.json": {
|
15
|
+
"default": "./package.json"
|
16
|
+
},
|
17
|
+
".": {
|
18
|
+
"types": "./index.d.ts",
|
19
|
+
"esm2022": "./esm2022/tnp-config.mjs",
|
20
|
+
"esm": "./esm2022/tnp-config.mjs",
|
21
|
+
"default": "./fesm2022/tnp-config.mjs"
|
22
|
+
}
|
23
|
+
},
|
24
|
+
"sideEffects": false
|
25
|
+
}
|
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,40 +1,40 @@
|
|
1
|
-
{
|
2
|
-
"resources": ["README.md"],
|
3
|
-
|
4
|
-
"overrided": {
|
5
|
-
"ignoreDepsPattern": [],
|
6
|
-
"includeAsDev": [],
|
7
|
-
"includeOnly": ["tnp-core"],
|
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
|
-
"additionalNpmNames": ["firedev-config"],
|
34
|
-
"isGenerated": false,
|
35
|
-
"requiredServers": [],
|
36
|
-
"license": "MIT",
|
37
|
-
"private": false,
|
38
|
-
"main": "index.js",
|
39
|
-
"workerPlugins": {}
|
1
|
+
{
|
2
|
+
"resources": ["README.md"],
|
3
|
+
|
4
|
+
"overrided": {
|
5
|
+
"ignoreDepsPattern": [],
|
6
|
+
"includeAsDev": [],
|
7
|
+
"includeOnly": ["tnp-core"],
|
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
|
+
"additionalNpmNames": ["firedev-config"],
|
34
|
+
"isGenerated": false,
|
35
|
+
"requiredServers": [],
|
36
|
+
"license": "MIT",
|
37
|
+
"private": false,
|
38
|
+
"main": "index.js",
|
39
|
+
"workerPlugins": {}
|
40
40
|
}
|
package/package.json
CHANGED
@@ -42,13 +42,13 @@
|
|
42
42
|
"workerPlugins": {}
|
43
43
|
},
|
44
44
|
"dependencies": {
|
45
|
-
"tnp-core": "~18.0.
|
45
|
+
"tnp-core": "~18.0.15"
|
46
46
|
},
|
47
47
|
"devDependencies": {},
|
48
48
|
"license": "MIT",
|
49
49
|
"private": false,
|
50
50
|
"name": "tnp-config",
|
51
|
-
"version": "18.0.
|
52
|
-
"lastBuildTagHash": "
|
53
|
-
"main": "
|
51
|
+
"version": "18.0.3",
|
52
|
+
"lastBuildTagHash": "30dfc8ad1fad1ebf2b686b3d58376f6cdff64059",
|
53
|
+
"main": "index.js"
|
54
54
|
}
|
package/tmp-environment.json
CHANGED
@@ -46,7 +46,7 @@
|
|
46
46
|
"workerPlugins": {}
|
47
47
|
},
|
48
48
|
"dependencies": {
|
49
|
-
"tnp-core": "~18.0.
|
49
|
+
"tnp-core": "~18.0.15"
|
50
50
|
},
|
51
51
|
"devDependencies": {
|
52
52
|
"@angular-builders/custom-webpack": "~18.0.0",
|
@@ -135,7 +135,7 @@
|
|
135
135
|
"angular-material-css-vars": "7.0.0",
|
136
136
|
"angular-resize-event": "3.2.0",
|
137
137
|
"animate.css": "4.1.1",
|
138
|
-
"any-project-cli": "~
|
138
|
+
"any-project-cli": "~18.0.1",
|
139
139
|
"app-root-path": "3.1.0",
|
140
140
|
"axios": "1.7.3",
|
141
141
|
"background-worker-process": "~16.100.10",
|
@@ -147,10 +147,10 @@
|
|
147
147
|
"bun": "1.1.22",
|
148
148
|
"callsite-record": "4.1.5",
|
149
149
|
"chai": "4.5.0",
|
150
|
-
"chalk": "
|
150
|
+
"chalk": "2.3.2",
|
151
151
|
"check-node-version": "3.2.0",
|
152
152
|
"cheerio": "1.0.0",
|
153
|
-
"chokidar": "
|
153
|
+
"chokidar": "3.5.3",
|
154
154
|
"circular-json": "0.5.1",
|
155
155
|
"class-transformer": "0.5.1",
|
156
156
|
"class-validator": "0.14.1",
|
@@ -192,10 +192,10 @@
|
|
192
192
|
"file-type": "19.1.1",
|
193
193
|
"firedev": "^18",
|
194
194
|
"firedev-crud": "~16.444.15",
|
195
|
-
"firedev-crud-deamon": "~
|
195
|
+
"firedev-crud-deamon": "~18.0.1",
|
196
196
|
"firedev-ports": "~16.444.15",
|
197
197
|
"firedev-storage": "~16.444.11",
|
198
|
-
"firedev-type-sql": "~
|
198
|
+
"firedev-type-sql": "~18.0.1",
|
199
199
|
"firedev-typeorm": "~16.444.11",
|
200
200
|
"firedev-ui": "~16.444.1",
|
201
201
|
"fkill": "6.1.0",
|
@@ -215,11 +215,11 @@
|
|
215
215
|
"image-focus": "1.2.1",
|
216
216
|
"immer": "10.0.2",
|
217
217
|
"immutable": "4.3.7",
|
218
|
-
"incremental-compiler": "~
|
218
|
+
"incremental-compiler": "~18.0.1",
|
219
219
|
"inquirer": "7.3.3",
|
220
220
|
"inquirer-autocomplete-prompt": "1.3.0",
|
221
221
|
"is-elevated": "3.0.0",
|
222
|
-
"isomorphic-region-loader": "~
|
222
|
+
"isomorphic-region-loader": "~18.0.1",
|
223
223
|
"istanbul-instrumenter-loader": "3.0.1",
|
224
224
|
"jest": "29.7.0",
|
225
225
|
"jest-date-mock": "1.0.10",
|
@@ -230,19 +230,19 @@
|
|
230
230
|
"joi": "17.13.3",
|
231
231
|
"jscodeshift": "0.6.3",
|
232
232
|
"json-stringify-safe": "5.0.1",
|
233
|
-
"json10": "~
|
234
|
-
"json10-writer": "~
|
233
|
+
"json10": "~18.0.1",
|
234
|
+
"json10-writer": "~18.0.1",
|
235
235
|
"json5": "2.2.3",
|
236
236
|
"json5-writer": "0.2.0",
|
237
237
|
"jszip": "3.10.1",
|
238
|
-
"karma-cli": "0.1
|
238
|
+
"karma-cli": "1.0.1",
|
239
239
|
"lnk": "1.0.1",
|
240
240
|
"localforage": "1.10.0",
|
241
241
|
"lockfile": "1.0.4",
|
242
242
|
"lodash": "4.17.21",
|
243
|
-
"lodash-walk-object": "~
|
243
|
+
"lodash-walk-object": "~18.0.1",
|
244
244
|
"lowdb": "7.0.1",
|
245
|
-
"magic-renamer": "~
|
245
|
+
"magic-renamer": "~18.0.1",
|
246
246
|
"material-design-icons": "3.0.1",
|
247
247
|
"method-override": "2.3.10",
|
248
248
|
"minimist": "1.2.8",
|
@@ -254,9 +254,9 @@
|
|
254
254
|
"ng-lock": "18.0.1",
|
255
255
|
"ng-packagr": "18.1.0",
|
256
256
|
"ng-talkback": "~16.444.7",
|
257
|
-
"ng2-logger": "~
|
257
|
+
"ng2-logger": "~18.0.2",
|
258
258
|
"ng2-pdfjs-viewer": "18.0.0",
|
259
|
-
"ng2-rest": "~
|
259
|
+
"ng2-rest": "~18.0.1",
|
260
260
|
"ngx-ace-wrapper": "17.0.0",
|
261
261
|
"ngx-editor": "17.5.4",
|
262
262
|
"ngx-highlightjs": "12.0.0",
|
@@ -272,7 +272,7 @@
|
|
272
272
|
"node-cli-tester": "~16.444.7",
|
273
273
|
"node-localstorage": "2.1.6",
|
274
274
|
"node-notifier": "10.0.1",
|
275
|
-
"node-polyfill-webpack-plugin": "
|
275
|
+
"node-polyfill-webpack-plugin": "2.0.1",
|
276
276
|
"nodemon": "2.0.22",
|
277
277
|
"npm-get-dependents": "1.0.1",
|
278
278
|
"npm-run": "4.1.2",
|
@@ -318,11 +318,12 @@
|
|
318
318
|
"systeminformation": "3.45.7",
|
319
319
|
"task.js": "0.1.5",
|
320
320
|
"threads": "1.7.0",
|
321
|
+
"tnp": "~18.0.1",
|
321
322
|
"tnp-cli": "~16.444.7",
|
322
|
-
"tnp-config": "~
|
323
|
-
"tnp-db": "~
|
324
|
-
"tnp-helpers": "~
|
325
|
-
"tnp-models": "~
|
323
|
+
"tnp-config": "~18.0.2",
|
324
|
+
"tnp-db": "~18.0.1",
|
325
|
+
"tnp-helpers": "~18.0.1",
|
326
|
+
"tnp-models": "~18.0.2",
|
326
327
|
"ts-debug": "1.3.0",
|
327
328
|
"ts-json-schema-generator": "2.3.0-next.5",
|
328
329
|
"ts-loader": "2.3.1",
|
@@ -333,7 +334,7 @@
|
|
333
334
|
"typedoc": "0.26.5",
|
334
335
|
"typedoc-plugin-markdown": "4.2.3",
|
335
336
|
"typescript": "~5.5.4",
|
336
|
-
"typescript-class-helpers": "~
|
337
|
+
"typescript-class-helpers": "~18.0.2",
|
337
338
|
"typescript-formatter": "~7.2.2",
|
338
339
|
"underscore": "1.13.7",
|
339
340
|
"uuid": "10.0.0",
|
@@ -341,7 +342,7 @@
|
|
341
342
|
"video.js": "8.3.0",
|
342
343
|
"vpn-split": "~16.444.7",
|
343
344
|
"vscode": "1.1.37",
|
344
|
-
"wait-on": "
|
345
|
+
"wait-on": "7.0.1",
|
345
346
|
"watch": "1.0.2",
|
346
347
|
"webpack": "~5.80",
|
347
348
|
"webpack-dev-middleware": "~6.1.3",
|
@@ -352,19 +353,19 @@
|
|
352
353
|
"license": "MIT",
|
353
354
|
"private": false,
|
354
355
|
"name": "tnp-config",
|
355
|
-
"version": "18.0.
|
356
|
-
"lastBuildTagHash": "
|
356
|
+
"version": "18.0.3",
|
357
|
+
"lastBuildTagHash": "30dfc8ad1fad1ebf2b686b3d58376f6cdff64059",
|
357
358
|
"main": "dist/app.electron.js"
|
358
359
|
},
|
359
360
|
"build": {
|
360
|
-
"number":
|
361
|
-
"date": "2024-08-
|
362
|
-
"hash": "
|
361
|
+
"number": 662,
|
362
|
+
"date": "2024-08-12T19:11:37.000Z",
|
363
|
+
"hash": "7acba524de9f1dcd79589d6143be2e0a9f94837b"
|
363
364
|
},
|
364
365
|
"currentProjectName": "tnp-config",
|
365
366
|
"currentProjectGenericName": "tnp-config",
|
366
367
|
"currentProjectType": "isomorphic-lib",
|
367
|
-
"currentFrameworkVersion": "18.0.
|
368
|
+
"currentFrameworkVersion": "18.0.1",
|
368
369
|
"isStandaloneProject": true,
|
369
370
|
"isSmartContainer": false,
|
370
371
|
"pathesTsconfig": "\"paths\": {\"tnp-config\":[\"./src/lib\"],\"tnp-config/*\":[\"./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.
|
@@ -0,0 +1,25 @@
|
|
1
|
+
{
|
2
|
+
"name": "tnp-config",
|
3
|
+
"version": "0.0.1",
|
4
|
+
"peerDependencies": {
|
5
|
+
"@angular/common": "^13.2.0",
|
6
|
+
"@angular/core": "^13.2.0"
|
7
|
+
},
|
8
|
+
"dependencies": {
|
9
|
+
"tslib": "^2.3.0"
|
10
|
+
},
|
11
|
+
"module": "fesm2022/tnp-config.mjs",
|
12
|
+
"typings": "index.d.ts",
|
13
|
+
"exports": {
|
14
|
+
"./package.json": {
|
15
|
+
"default": "./package.json"
|
16
|
+
},
|
17
|
+
".": {
|
18
|
+
"types": "./index.d.ts",
|
19
|
+
"esm2022": "./esm2022/tnp-config.mjs",
|
20
|
+
"esm": "./esm2022/tnp-config.mjs",
|
21
|
+
"default": "./fesm2022/tnp-config.mjs"
|
22
|
+
}
|
23
|
+
},
|
24
|
+
"sideEffects": false
|
25
|
+
}
|