ng2-logger 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 CHANGED
@@ -1,192 +1,192 @@
1
- ## firedev-logger (ng2-logger) ##
2
-
3
- - Part of [firedev.io](https://github.com/darekf77/firedev)
4
- - Isomorphic Logger for TypeScript and JavaScript apps.
5
- - Purpose:
6
- + usefull/elegant backend/frontend logger
7
-
8
- You can use this logger in your apps with **any**
9
- TS/JS framework.
10
-
11
- See what is going on in your app!
12
-
13
- Now chrome console logs are full of colors!
14
-
15
- ![Modules marked](screen.png)
16
-
17
- See nice server logs:
18
-
19
- ![Modules marked](server.png)
20
-
21
-
22
- To install package run:
23
- ```
24
- npm install ng2-logger --save
25
- ```
26
-
27
- First import proper version for your environment:
28
-
29
-
30
-
31
- Nodejs server (or any firedev's lib/app):
32
-
33
-
34
-
35
- ```ts
36
-
37
- import { Log, Level } from 'ng2-logger'
38
-
39
- ```
40
-
41
- or Browser:
42
-
43
-
44
-
45
- ```ts
46
-
47
- import { Log, Level } from 'ng2-logger/browser' // new javascript module: es2015 + esnext + angular ivy support
48
-
49
- ```
50
-
51
-
52
-
53
- Simple use:
54
-
55
-
56
-
57
- In your file with log:
58
-
59
- ```ts
60
-
61
- const log = Log.create('books');
62
-
63
- ```
64
-
65
- or if you wanna just log errors and warnings :
66
-
67
- ```ts
68
-
69
- const log = Log.create('books', Level.ERROR, Level.WARN);
70
-
71
- ```
72
-
73
- 'books' is current class or anything inside *.ts/*.js file.
74
-
75
-
76
-
77
- You can also assign static color to specific module in application (browser for now only):
78
-
79
- ```ts
80
-
81
- log.color = 'red';
82
-
83
- ```
84
-
85
- After inited **log** you are able to start debugging:
86
-
87
- ```ts
88
-
89
- log.d('object',obj) // console.log
90
-
91
- log.er('object',obj) // console.error
92
-
93
- log.i('object',obj) // console.info
94
-
95
- log.w('object',obj) // console.warn
96
-
97
- ```
98
-
99
- or
100
-
101
- ```ts
102
-
103
- log.debug('object',obj) // console.log
104
-
105
- log.error('object',obj) // console.error
106
-
107
- log.info('object',obj) // console.info
108
-
109
- log.warn('object',obj) // console.warn
110
-
111
- ```
112
-
113
-
114
-
115
-
116
- **Production mode**
117
-
118
- -------------------
119
-
120
-
121
-
122
- You will not see anyting in prduction mode:
123
-
124
-
125
-
126
- // enable production mode in your app
127
-
128
- ...
129
-
130
- Log.setProductionMode();
131
-
132
- ...
133
-
134
- // your app code with console and ng2-logger logs
135
-
136
-
137
-
138
-
139
- It is important to set production mode before any log messages are executed.
140
-
141
- This will ensure that log messages that should not be seen are leaked out.
142
-
143
-
144
-
145
-
146
- **Selective debug - global settings**
147
-
148
- -------------------
149
-
150
-
151
-
152
- Optional specify what you wanna see in yours debug console.
153
-
154
- This settings will override settings from files.
155
-
156
-
157
-
158
- ```ts
159
-
160
- Log.setProductionMode();
161
-
162
- Log.onlyModules('src:books', 'src:records', 'src:page:login');
163
-
164
- Log.onlyLevel(Level.ERROR,Level.INFO);
165
-
166
- ```
167
-
168
-
169
-
170
- **Specifying `onlyModules` as regular expression(s)**
171
-
172
- -------------------
173
-
174
-
175
-
176
- In the above example you'll notice `module:books` and `module:records` were specified.
177
-
178
- you might be using such syntax for namespace hierarchy etc. You may also pass in one or more regular
179
-
180
- expression string(s) to the `onlyModule` function to specify a selection of modules you wish
181
-
182
- to show, for instances those whose name begins with `src`:
183
-
184
-
185
-
186
- ```ts
187
-
188
-
189
-
190
- Log.onlyModules( new RegEx('^.src') );
191
-
192
- ```
1
+ ## firedev-logger (ng2-logger) ##
2
+
3
+ - Part of [firedev.io](https://github.com/darekf77/firedev)
4
+ - Isomorphic Logger for TypeScript and JavaScript apps.
5
+ - Purpose:
6
+ + usefull/elegant backend/frontend logger
7
+
8
+ You can use this logger in your apps with **any**
9
+ TS/JS framework.
10
+
11
+ See what is going on in your app!
12
+
13
+ Now chrome console logs are full of colors!
14
+
15
+ ![Modules marked](screen.png)
16
+
17
+ See nice server logs:
18
+
19
+ ![Modules marked](server.png)
20
+
21
+
22
+ To install package run:
23
+ ```
24
+ npm install ng2-logger --save
25
+ ```
26
+
27
+ First import proper version for your environment:
28
+
29
+
30
+
31
+ Nodejs server (or any firedev's lib/app):
32
+
33
+
34
+
35
+ ```ts
36
+
37
+ import { Log, Level } from 'ng2-logger'
38
+
39
+ ```
40
+
41
+ or Browser:
42
+
43
+
44
+
45
+ ```ts
46
+
47
+ import { Log, Level } from 'ng2-logger/browser' // new javascript module: es2015 + esnext + angular ivy support
48
+
49
+ ```
50
+
51
+
52
+
53
+ Simple use:
54
+
55
+
56
+
57
+ In your file with log:
58
+
59
+ ```ts
60
+
61
+ const log = Log.create('books');
62
+
63
+ ```
64
+
65
+ or if you wanna just log errors and warnings :
66
+
67
+ ```ts
68
+
69
+ const log = Log.create('books', Level.ERROR, Level.WARN);
70
+
71
+ ```
72
+
73
+ 'books' is current class or anything inside *.ts/*.js file.
74
+
75
+
76
+
77
+ You can also assign static color to specific module in application (browser for now only):
78
+
79
+ ```ts
80
+
81
+ log.color = 'red';
82
+
83
+ ```
84
+
85
+ After inited **log** you are able to start debugging:
86
+
87
+ ```ts
88
+
89
+ log.d('object',obj) // console.log
90
+
91
+ log.er('object',obj) // console.error
92
+
93
+ log.i('object',obj) // console.info
94
+
95
+ log.w('object',obj) // console.warn
96
+
97
+ ```
98
+
99
+ or
100
+
101
+ ```ts
102
+
103
+ log.debug('object',obj) // console.log
104
+
105
+ log.error('object',obj) // console.error
106
+
107
+ log.info('object',obj) // console.info
108
+
109
+ log.warn('object',obj) // console.warn
110
+
111
+ ```
112
+
113
+
114
+
115
+
116
+ **Production mode**
117
+
118
+ -------------------
119
+
120
+
121
+
122
+ You will not see anyting in prduction mode:
123
+
124
+
125
+
126
+ // enable production mode in your app
127
+
128
+ ...
129
+
130
+ Log.setProductionMode();
131
+
132
+ ...
133
+
134
+ // your app code with console and ng2-logger logs
135
+
136
+
137
+
138
+
139
+ It is important to set production mode before any log messages are executed.
140
+
141
+ This will ensure that log messages that should not be seen are leaked out.
142
+
143
+
144
+
145
+
146
+ **Selective debug - global settings**
147
+
148
+ -------------------
149
+
150
+
151
+
152
+ Optional specify what you wanna see in yours debug console.
153
+
154
+ This settings will override settings from files.
155
+
156
+
157
+
158
+ ```ts
159
+
160
+ Log.setProductionMode();
161
+
162
+ Log.onlyModules('src:books', 'src:records', 'src:page:login');
163
+
164
+ Log.onlyLevel(Level.ERROR,Level.INFO);
165
+
166
+ ```
167
+
168
+
169
+
170
+ **Specifying `onlyModules` as regular expression(s)**
171
+
172
+ -------------------
173
+
174
+
175
+
176
+ In the above example you'll notice `module:books` and `module:records` were specified.
177
+
178
+ you might be using such syntax for namespace hierarchy etc. You may also pass in one or more regular
179
+
180
+ expression string(s) to the `onlyModule` function to specify a selection of modules you wish
181
+
182
+ to show, for instances those whose name begins with `src`:
183
+
184
+
185
+
186
+ ```ts
187
+
188
+
189
+
190
+ Log.onlyModules( new RegEx('^.src') );
191
+
192
+ ```
@@ -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 (ng2-logger@18.0.1)
3
+ Assets from this folder are being shipped with this npm package (ng2-logger@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": "ng2-logger",
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/ng2-logger.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/ng2-logger.mjs",
20
+ "esm": "./esm2022/ng2-logger.mjs",
21
+ "default": "./fesm2022/ng2-logger.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,41 +1,41 @@
1
- {
2
- "resources": ["README.md", "screen.png", "server.png"],
3
-
4
- "overrided": {
5
- "includeAsDev": [],
6
- "includeOnly": ["chalk", "json-stringify-safe", "json5", "randomcolor", "tnp-config"],
7
- "dependencies": {},
8
- "ignoreDepsPattern": [],
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
- "version": "v18",
30
- "additionalNpmNames": ["firedev-logger"],
31
- "description": "isomorphic logger for browser/server in typescript",
32
- "license": "MIT",
33
- "private": false,
34
-
35
- "author": {
36
- "name": "Dariusz Filipiak"
37
- },
38
-
39
- "homepage": "https://github.com/darekf77/ng2-logger#readme",
40
- "keywords": ["isomorphic", "logger", "logging", "logowanie", "log", "typescript"]
1
+ {
2
+ "resources": ["README.md", "screen.png", "server.png"],
3
+
4
+ "overrided": {
5
+ "includeAsDev": [],
6
+ "includeOnly": ["chalk", "json-stringify-safe", "json5", "randomcolor", "tnp-config"],
7
+ "dependencies": {},
8
+ "ignoreDepsPattern": [],
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
+ "version": "v18",
30
+ "additionalNpmNames": ["firedev-logger"],
31
+ "description": "isomorphic logger for browser/server in typescript",
32
+ "license": "MIT",
33
+ "private": false,
34
+
35
+ "author": {
36
+ "name": "Dariusz Filipiak"
37
+ },
38
+
39
+ "homepage": "https://github.com/darekf77/ng2-logger#readme",
40
+ "keywords": ["isomorphic", "logger", "logging", "logowanie", "log", "typescript"]
41
41
  }
package/package.json CHANGED
@@ -54,7 +54,7 @@
54
54
  ]
55
55
  },
56
56
  "name": "ng2-logger",
57
- "version": "18.0.1",
57
+ "version": "18.0.3",
58
58
  "description": "isomorphic logger for browser/server in typescript",
59
59
  "repository": {
60
60
  "type": "git",
@@ -80,15 +80,15 @@
80
80
  "homepage": "https://github.com/darekf77/ng2-logger#readme",
81
81
  "readmeFilename": "README.md",
82
82
  "dependencies": {
83
- "chalk": "1.1.3",
83
+ "chalk": "2.3.2",
84
84
  "json-stringify-safe": "5.0.1",
85
85
  "json5": "2.2.3",
86
86
  "randomcolor": "0.5.3",
87
- "tnp-config": "~16.444.15"
87
+ "tnp-config": "~18.0.2"
88
88
  },
89
89
  "license": "MIT",
90
90
  "private": false,
91
- "lastBuildTagHash": "7f4198ca23c44d41b60cd13998ec7e12063e51b5",
91
+ "lastBuildTagHash": "b7d60b8a49506f1822e0adedac7c8f1b092f096c",
92
92
  "peerDependencies": {},
93
93
  "devDependencies": {},
94
94
  "main": "dist/app.electron.js"
@@ -58,7 +58,7 @@
58
58
  ]
59
59
  },
60
60
  "name": "ng2-logger",
61
- "version": "18.0.1",
61
+ "version": "18.0.3",
62
62
  "description": "isomorphic logger for browser/server in typescript",
63
63
  "repository": {
64
64
  "type": "git",
@@ -84,15 +84,15 @@
84
84
  "homepage": "https://github.com/darekf77/ng2-logger#readme",
85
85
  "readmeFilename": "README.md",
86
86
  "dependencies": {
87
- "chalk": "1.1.3",
87
+ "chalk": "2.3.2",
88
88
  "json-stringify-safe": "5.0.1",
89
89
  "json5": "2.2.3",
90
90
  "randomcolor": "0.5.3",
91
- "tnp-config": "~16.444.15"
91
+ "tnp-config": "~18.0.2"
92
92
  },
93
93
  "license": "MIT",
94
94
  "private": false,
95
- "lastBuildTagHash": "7f4198ca23c44d41b60cd13998ec7e12063e51b5",
95
+ "lastBuildTagHash": "b7d60b8a49506f1822e0adedac7c8f1b092f096c",
96
96
  "peerDependencies": {},
97
97
  "devDependencies": {
98
98
  "@angular-builders/custom-webpack": "~18.0.0",
@@ -181,7 +181,7 @@
181
181
  "angular-material-css-vars": "7.0.0",
182
182
  "angular-resize-event": "3.2.0",
183
183
  "animate.css": "4.1.1",
184
- "any-project-cli": "~16.444.12",
184
+ "any-project-cli": "~18.0.1",
185
185
  "app-root-path": "3.1.0",
186
186
  "axios": "1.7.3",
187
187
  "background-worker-process": "~16.100.10",
@@ -195,7 +195,7 @@
195
195
  "chai": "4.5.0",
196
196
  "check-node-version": "3.2.0",
197
197
  "cheerio": "1.0.0",
198
- "chokidar": "2.1.8",
198
+ "chokidar": "3.5.3",
199
199
  "circular-json": "0.5.1",
200
200
  "class-transformer": "0.5.1",
201
201
  "class-validator": "0.14.1",
@@ -237,10 +237,10 @@
237
237
  "file-type": "19.1.1",
238
238
  "firedev": "^18",
239
239
  "firedev-crud": "~16.444.15",
240
- "firedev-crud-deamon": "~16.444.15",
240
+ "firedev-crud-deamon": "~18.0.1",
241
241
  "firedev-ports": "~16.444.15",
242
242
  "firedev-storage": "~16.444.11",
243
- "firedev-type-sql": "~16.444.15",
243
+ "firedev-type-sql": "~18.0.1",
244
244
  "firedev-typeorm": "~16.444.11",
245
245
  "firedev-ui": "~16.444.1",
246
246
  "fkill": "6.1.0",
@@ -260,11 +260,11 @@
260
260
  "image-focus": "1.2.1",
261
261
  "immer": "10.0.2",
262
262
  "immutable": "4.3.7",
263
- "incremental-compiler": "~16.444.16",
263
+ "incremental-compiler": "~18.0.1",
264
264
  "inquirer": "7.3.3",
265
265
  "inquirer-autocomplete-prompt": "1.3.0",
266
266
  "is-elevated": "3.0.0",
267
- "isomorphic-region-loader": "~16.444.15",
267
+ "isomorphic-region-loader": "~18.0.1",
268
268
  "istanbul-instrumenter-loader": "3.0.1",
269
269
  "jest": "29.7.0",
270
270
  "jest-date-mock": "1.0.10",
@@ -274,18 +274,18 @@
274
274
  "jimp": "0.22.12",
275
275
  "joi": "17.13.3",
276
276
  "jscodeshift": "0.6.3",
277
- "json10": "~16.444.15",
278
- "json10-writer": "~16.444.15",
277
+ "json10": "~18.0.1",
278
+ "json10-writer": "~18.0.1",
279
279
  "json5-writer": "0.2.0",
280
280
  "jszip": "3.10.1",
281
- "karma-cli": "0.1.2",
281
+ "karma-cli": "1.0.1",
282
282
  "lnk": "1.0.1",
283
283
  "localforage": "1.10.0",
284
284
  "lockfile": "1.0.4",
285
285
  "lodash": "4.17.21",
286
- "lodash-walk-object": "~16.444.14",
286
+ "lodash-walk-object": "~18.0.1",
287
287
  "lowdb": "7.0.1",
288
- "magic-renamer": "~16.444.14",
288
+ "magic-renamer": "~18.0.1",
289
289
  "material-design-icons": "3.0.1",
290
290
  "method-override": "2.3.10",
291
291
  "minimist": "1.2.8",
@@ -297,9 +297,9 @@
297
297
  "ng-lock": "18.0.1",
298
298
  "ng-packagr": "18.1.0",
299
299
  "ng-talkback": "~16.444.7",
300
- "ng2-logger": "~16.444.15",
300
+ "ng2-logger": "~18.0.2",
301
301
  "ng2-pdfjs-viewer": "18.0.0",
302
- "ng2-rest": "~16.444.14",
302
+ "ng2-rest": "~18.0.1",
303
303
  "ngx-ace-wrapper": "17.0.0",
304
304
  "ngx-editor": "17.5.4",
305
305
  "ngx-highlightjs": "12.0.0",
@@ -315,7 +315,7 @@
315
315
  "node-cli-tester": "~16.444.7",
316
316
  "node-localstorage": "2.1.6",
317
317
  "node-notifier": "10.0.1",
318
- "node-polyfill-webpack-plugin": "1.1.4",
318
+ "node-polyfill-webpack-plugin": "2.0.1",
319
319
  "nodemon": "2.0.22",
320
320
  "npm-get-dependents": "1.0.1",
321
321
  "npm-run": "4.1.2",
@@ -360,11 +360,12 @@
360
360
  "systeminformation": "3.45.7",
361
361
  "task.js": "0.1.5",
362
362
  "threads": "1.7.0",
363
+ "tnp": "~18.0.1",
363
364
  "tnp-cli": "~16.444.7",
364
- "tnp-core": "~18.0.3",
365
- "tnp-db": "~16.444.14",
366
- "tnp-helpers": "~16.444.25",
367
- "tnp-models": "~16.444.15",
365
+ "tnp-core": "~18.0.15",
366
+ "tnp-db": "~18.0.1",
367
+ "tnp-helpers": "~18.0.1",
368
+ "tnp-models": "~18.0.2",
368
369
  "ts-debug": "1.3.0",
369
370
  "ts-json-schema-generator": "2.3.0-next.5",
370
371
  "ts-loader": "2.3.1",
@@ -375,7 +376,7 @@
375
376
  "typedoc": "0.26.5",
376
377
  "typedoc-plugin-markdown": "4.2.3",
377
378
  "typescript": "~5.5.4",
378
- "typescript-class-helpers": "~16.444.15",
379
+ "typescript-class-helpers": "~18.0.2",
379
380
  "typescript-formatter": "~7.2.2",
380
381
  "underscore": "1.13.7",
381
382
  "uuid": "10.0.0",
@@ -383,7 +384,7 @@
383
384
  "video.js": "8.3.0",
384
385
  "vpn-split": "~16.444.7",
385
386
  "vscode": "1.1.37",
386
- "wait-on": "5.2.2",
387
+ "wait-on": "7.0.1",
387
388
  "watch": "1.0.2",
388
389
  "webpack": "~5.80",
389
390
  "webpack-dev-middleware": "~6.1.3",
@@ -394,14 +395,14 @@
394
395
  "main": "dist/app.electron.js"
395
396
  },
396
397
  "build": {
397
- "number": 655,
398
- "date": "2024-07-29T12:08:53.000Z",
399
- "hash": "994a92cb538d649689f5fe4281c80d9e3264b636"
398
+ "number": 657,
399
+ "date": "2024-08-12T19:12:14.000Z",
400
+ "hash": "8fd8122f74dbed1c7e2041dd1a03082261bcd641"
400
401
  },
401
402
  "currentProjectName": "ng2-logger",
402
403
  "currentProjectGenericName": "ng2-logger",
403
404
  "currentProjectType": "isomorphic-lib",
404
- "currentFrameworkVersion": "18.0.0",
405
+ "currentFrameworkVersion": "18.0.1",
405
406
  "isStandaloneProject": true,
406
407
  "isSmartContainer": false,
407
408
  "pathesTsconfig": "\"paths\": {\"ng2-logger\":[\"./src/lib\"],\"ng2-logger/*\":[\"./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": "ng2-logger",
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/ng2-logger.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/ng2-logger.mjs",
20
+ "esm": "./esm2022/ng2-logger.mjs",
21
+ "default": "./fesm2022/ng2-logger.mjs"
22
+ }
23
+ },
24
+ "sideEffects": false
25
+ }