ng2-logger 16.100.8 → 16.100.10

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@16.100.8)
3
+ Assets from this folder are being shipped with this npm package (ng2-logger@16.100.10)
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.
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.
@@ -54,7 +54,7 @@
54
54
  ]
55
55
  },
56
56
  "name": "ng2-logger",
57
- "version": "16.100.8",
57
+ "version": "16.100.10",
58
58
  "description": "isomorphic logger for browser/server in typescript",
59
59
  "repository": {
60
60
  "type": "git",
@@ -84,16 +84,21 @@
84
84
  "json-stringify-safe": "5.0.1",
85
85
  "json5": "2.2.1",
86
86
  "randomcolor": "0.5.3",
87
- "tnp-config": "16.100.8"
87
+ "tnp-config": "16.100.10"
88
88
  },
89
89
  "license": "MIT",
90
90
  "private": false,
91
- "lastBuildTagHash": "589c338b6706bfa0ef88e4cf2ed7ac88223ac9e0",
91
+ "lastBuildTagHash": "a8f4e2e654f85554ff2f61ac607663e426c92b3b",
92
92
  "peerDependencies": {},
93
93
  "devDependencies": {
94
94
  "@angular-builders/custom-webpack": "~16.0.2-beta.2",
95
95
  "@angular-devkit/build-angular": "~16.0.5",
96
96
  "@angular-devkit/core": "~16.0.5",
97
+ "@angular-eslint/builder": "~16.3.1",
98
+ "@angular-eslint/eslint-plugin": "~16.3.1",
99
+ "@angular-eslint/eslint-plugin-template": "~16.3.1",
100
+ "@angular-eslint/schematics": "~16.3.1",
101
+ "@angular-eslint/template-parser": "~16.3.1",
97
102
  "@angular-material-extensions/password-strength": "~12.1.0",
98
103
  "@angular/animations": "~16.0.0",
99
104
  "@angular/cdk": "~16.0.3",
@@ -111,9 +116,6 @@
111
116
  "@angular/router": "~16.0.0",
112
117
  "@angular/service-worker": "~16.0.4",
113
118
  "@babel/cli": "7.18.6",
114
- "@commitlint/cli": "12.1.1",
115
- "@commitlint/config-conventional": "12.1.1",
116
- "@commitlint/prompt-cli": "12.1.1",
117
119
  "@compodoc/compodoc": "1.1.20",
118
120
  "@iconify/icons-fa-solid": "1.2.2",
119
121
  "@iconify/icons-mdi": "1.2.1",
@@ -135,6 +137,7 @@
135
137
  "@ngx-formly/material": "6.1.8",
136
138
  "@ngx-translate/core": "15.0.0",
137
139
  "@ngx-translate/http-loader": "8.0.0",
140
+ "@sqltools/formatter": "1.2.2",
138
141
  "@sweetalert2/ngx-sweetalert2": "12.1.0",
139
142
  "@testdeck/jest": "0.3.3",
140
143
  "@testdeck/mocha": "0.3.3",
@@ -165,15 +168,18 @@
165
168
  "@types/systeminformation": "3.23.0",
166
169
  "@types/vinyl": "2.0.2",
167
170
  "@types/watch": "1.0.0",
171
+ "@typescript-eslint/eslint-plugin": "5.62.0",
172
+ "@typescript-eslint/parser": "5.62.0",
168
173
  "@vercel/ncc": "0.38.1",
169
174
  "accepts": "1.3.4",
170
175
  "ajv": "8.12.0",
171
176
  "angular-material-css-vars": "5.0.2",
172
177
  "angular-resize-event": "3.2.0",
173
178
  "animate.css": "4.1.1 ",
174
- "any-project-cli": "16.100.7",
179
+ "any-project-cli": "16.100.9",
180
+ "app-root-path": "3.0.0",
175
181
  "axios": "1.3.5",
176
- "background-worker-process": "16.100.4",
182
+ "background-worker-process": "16.100.10",
177
183
  "base32": "0.0.7",
178
184
  "bcryptjs": "2.4.3",
179
185
  "better-sqlite3": "9.5.0",
@@ -188,6 +194,7 @@
188
194
  "circular-json": "0.5.1",
189
195
  "class-transformer": "0.5.1",
190
196
  "class-validator": "0.14.0",
197
+ "cli-highlight": "2.1.11",
191
198
  "command-exists": "1.2.2",
192
199
  "compression": "1.7.4",
193
200
  "concurrently": "3.5.1",
@@ -209,10 +216,13 @@
209
216
  "enquirer": "2.3.0",
210
217
  "enum-values": "1.2.1",
211
218
  "errorhandler": "1.5.0",
212
- "eslint": "7.13.0",
213
- "eslint-plugin-import": "2.22.1",
214
- "eslint-plugin-jsdoc": "30.7.8",
215
- "eslint-plugin-prefer-arrow": "1.2.2",
219
+ "eslint": "8.51.0",
220
+ "eslint-config-prettier": "9.1.0",
221
+ "eslint-plugin-import": "latest",
222
+ "eslint-plugin-jsdoc": "latest",
223
+ "eslint-plugin-prefer-arrow": "latest",
224
+ "eslint-plugin-prettier": "5.1.3",
225
+ "eslint-plugin-react": "latest",
216
226
  "express": "4.16.3",
217
227
  "express-fileupload": "1.4.0",
218
228
  "express-session": "1.17.3",
@@ -220,13 +230,13 @@
220
230
  "file-saver": "2.0.5",
221
231
  "file-type": "18.5.0",
222
232
  "firedev": "^16",
223
- "firedev-crud": "16.100.7",
224
- "firedev-crud-deamon": "16.100.6",
225
- "firedev-ports": "16.100.7",
226
- "firedev-storage": "16.100.4",
227
- "firedev-type-sql": "16.100.4",
228
- "firedev-typeorm": "16.100.4",
229
- "firedev-ui": "16.100.7",
233
+ "firedev-crud": "16.100.9",
234
+ "firedev-crud-deamon": "16.100.8",
235
+ "firedev-ports": "16.100.9",
236
+ "firedev-storage": "16.100.5",
237
+ "firedev-type-sql": "16.100.6",
238
+ "firedev-typeorm": "16.100.5",
239
+ "firedev-ui": "16.100.8",
230
240
  "fkill": "6.1.0",
231
241
  "font-awesome": "4.7.0",
232
242
  "form-data": "4.0.0",
@@ -244,11 +254,11 @@
244
254
  "image-focus": "1.2.1",
245
255
  "immer": "10.0.2",
246
256
  "immutable": "4.3.0",
247
- "incremental-compiler": "16.100.7",
257
+ "incremental-compiler": "16.100.9",
248
258
  "inquirer": "7.3.3",
249
259
  "inquirer-autocomplete-prompt": "1.3.0",
250
260
  "is-elevated": "3.0.0",
251
- "isomorphic-region-loader": "16.100.6",
261
+ "isomorphic-region-loader": "16.100.8",
252
262
  "istanbul-instrumenter-loader": "2.0.0",
253
263
  "jest": "29.5.0",
254
264
  "jest-date-mock": "1.0.8",
@@ -258,8 +268,8 @@
258
268
  "jimp": "0.22.8",
259
269
  "joi": "17.9.2",
260
270
  "jscodeshift": "0.6.3",
261
- "json10": "16.100.4",
262
- "json10-writer": "16.100.7",
271
+ "json10": "16.100.6",
272
+ "json10-writer": "16.100.9",
263
273
  "json5-writer": "0.2.0",
264
274
  "jszip": "3.10.1",
265
275
  "karma-cli": "1.0.1",
@@ -267,9 +277,9 @@
267
277
  "localforage": "1.10.0",
268
278
  "lockfile": "1.0.4",
269
279
  "lodash": "4.17.20",
270
- "lodash-walk-object": "16.100.4",
280
+ "lodash-walk-object": "16.100.6",
271
281
  "lowdb": "7.0.1",
272
- "magic-renamer": "16.100.6",
282
+ "magic-renamer": "16.100.8",
273
283
  "material-design-icons": "3.0.1",
274
284
  "method-override": "2.3.10",
275
285
  "minimist": "1.2.0",
@@ -280,10 +290,10 @@
280
290
  "ng-in-viewport": "15.0.2",
281
291
  "ng-lock": "16.0.1",
282
292
  "ng-packagr": "16.0.1",
283
- "ng-talkback": "16.100.4",
284
- "ng2-logger": "16.100.7",
293
+ "ng-talkback": "16.100.5",
294
+ "ng2-logger": "16.100.9",
285
295
  "ng2-pdfjs-viewer": "16.0.4",
286
- "ng2-rest": "16.100.4",
296
+ "ng2-rest": "16.100.6",
287
297
  "ngx-ace-wrapper": "14.0.0",
288
298
  "ngx-editor": "15.3.0",
289
299
  "ngx-highlightjs": "9.0.0",
@@ -296,7 +306,7 @@
296
306
  "ngx-scrolltop": "6.0.0",
297
307
  "ngx-store": "3.1.1",
298
308
  "ngx-typed-js": "2.1.1",
299
- "node-cli-tester": "16.100.4",
309
+ "node-cli-tester": "16.100.5",
300
310
  "node-localstorage": "2.1.6",
301
311
  "node-notifier": "6.0.0",
302
312
  "node-polyfill-webpack-plugin": "2.0.1",
@@ -312,7 +322,8 @@
312
322
  "path-to-regexp": "6.2.2",
313
323
  "pica": "9.0.1",
314
324
  "portfinder": "1.0.21",
315
- "prettier": "3.0.0",
325
+ "prettier": "3.2.5",
326
+ "prettier-eslint": "16.3.0",
316
327
  "pretty-error": "4.0.0",
317
328
  "primeflex": "3.3.1",
318
329
  "primeicons": "6.0.1",
@@ -323,7 +334,7 @@
323
334
  "ps-node": "0.1.6",
324
335
  "q": "1.5.1",
325
336
  "rallax.js": "2.0.4",
326
- "record-replay-req-res-scenario": "16.100.4",
337
+ "record-replay-req-res-scenario": "16.100.5",
327
338
  "reflect-metadata": "0.1.10",
328
339
  "rimraf": "2.6.2",
329
340
  "rxjs": "~7.8.0",
@@ -334,7 +345,7 @@
334
345
  "socket.io": "2.4.1",
335
346
  "sort-package-json": "1.11.0",
336
347
  "sql.js": "1.8.0",
337
- "static-columns": "16.100.4",
348
+ "static-columns": "16.100.5",
338
349
  "string-similarity": "4.0.2",
339
350
  "sudo-block": "3.0.0",
340
351
  "supertest": "6.3.3",
@@ -342,11 +353,11 @@
342
353
  "systeminformation": "3.45.7",
343
354
  "task.js": "0.1.5",
344
355
  "threads": "1.7.0",
345
- "tnp-cli": "16.100.4",
346
- "tnp-core": "16.100.19",
347
- "tnp-db": "16.100.6",
348
- "tnp-helpers": "16.100.8",
349
- "tnp-models": "16.100.7",
356
+ "tnp-cli": "16.100.5",
357
+ "tnp-core": "16.100.22",
358
+ "tnp-db": "16.100.8",
359
+ "tnp-helpers": "16.100.17",
360
+ "tnp-models": "16.100.9",
350
361
  "ts-debug": "1.3.0",
351
362
  "ts-json-schema-generator": "2.1.1",
352
363
  "ts-loader": "2.3.1",
@@ -355,13 +366,13 @@
355
366
  "tslint": "5.9.1",
356
367
  "turndown": "7.1.2",
357
368
  "typescript": "~5.0.2",
358
- "typescript-class-helpers": "~16.100.7",
369
+ "typescript-class-helpers": "~16.100.9",
359
370
  "typescript-formatter": "~7.2.2",
360
371
  "underscore": "1.9.1",
361
372
  "uuid": "8.3.2",
362
373
  "validator": "9.2.0",
363
374
  "video.js": "8.3.0",
364
- "vpn-split": "16.100.4",
375
+ "vpn-split": "16.100.5",
365
376
  "watch": "1.0.2",
366
377
  "webpack": "~5.80",
367
378
  "webpack-dev-middleware": "~6.0.2",
package/firedev.jsonc CHANGED
@@ -1,48 +1,48 @@
1
- {
2
- "resources": ["README.md", "screen.png", "server.png"],
3
- "overrided": {
4
- "includeAsDev": [],
5
- "includeOnly": [
6
- "chalk",
7
- "json-stringify-safe",
8
- "json5",
9
- "randomcolor",
10
- "tnp-config",
11
- ],
12
- "dependencies": {},
13
- "ignoreDepsPattern": [],
14
- "linkedFolders": [],
15
- "npmFixes": [],
16
- },
17
- "smartContainerBuildTarget": "",
18
- "linkedRepos": [],
19
- "libReleaseOptions": {
20
- "nodts": false,
21
- "obscure": false,
22
- "ugly": false,
23
- "includeNodeModules": false,
24
- "cliBuildNoDts": false,
25
- "cliBuildObscure": false,
26
- "cliBuildIncludeNodeModules": false,
27
- "cliBuildUglify": false,
28
- },
29
- "smartContainerTarget": "",
30
- "type": "isomorphic-lib",
31
- "version": "v4",
32
- "additionalNpmNames": ["firedev-logger"],
33
- "description": "isomorphic logger for browser/server in typescript",
34
- "license": "MIT",
35
- "private": false,
36
- "author": {
37
- "name": "Dariusz Filipiak",
38
- },
39
- "homepage": "https://github.com/darekf77/ng2-logger#readme",
40
- "keywords": [
41
- "isomorphic",
42
- "logger",
43
- "logging",
44
- "logowanie",
45
- "log",
46
- "typescript",
47
- ],
1
+ {
2
+ "resources": ["README.md", "screen.png", "server.png"],
3
+ "overrided": {
4
+ "includeAsDev": [],
5
+ "includeOnly": [
6
+ "chalk",
7
+ "json-stringify-safe",
8
+ "json5",
9
+ "randomcolor",
10
+ "tnp-config",
11
+ ],
12
+ "dependencies": {},
13
+ "ignoreDepsPattern": [],
14
+ "linkedFolders": [],
15
+ "npmFixes": [],
16
+ },
17
+ "smartContainerBuildTarget": "",
18
+ "linkedRepos": [],
19
+ "libReleaseOptions": {
20
+ "nodts": false,
21
+ "obscure": false,
22
+ "ugly": false,
23
+ "includeNodeModules": false,
24
+ "cliBuildNoDts": false,
25
+ "cliBuildObscure": false,
26
+ "cliBuildIncludeNodeModules": false,
27
+ "cliBuildUglify": false,
28
+ },
29
+ "smartContainerTarget": "",
30
+ "type": "isomorphic-lib",
31
+ "version": "v4",
32
+ "additionalNpmNames": ["firedev-logger"],
33
+ "description": "isomorphic logger for browser/server in typescript",
34
+ "license": "MIT",
35
+ "private": false,
36
+ "author": {
37
+ "name": "Dariusz Filipiak",
38
+ },
39
+ "homepage": "https://github.com/darekf77/ng2-logger#readme",
40
+ "keywords": [
41
+ "isomorphic",
42
+ "logger",
43
+ "logging",
44
+ "logowanie",
45
+ "log",
46
+ "typescript",
47
+ ],
48
48
  }
package/package.json CHANGED
@@ -54,7 +54,7 @@
54
54
  ]
55
55
  },
56
56
  "name": "ng2-logger",
57
- "version": "16.100.8",
57
+ "version": "16.100.10",
58
58
  "description": "isomorphic logger for browser/server in typescript",
59
59
  "repository": {
60
60
  "type": "git",
@@ -84,11 +84,11 @@
84
84
  "json-stringify-safe": "5.0.1",
85
85
  "json5": "2.2.1",
86
86
  "randomcolor": "0.5.3",
87
- "tnp-config": "16.100.8"
87
+ "tnp-config": "16.100.10"
88
88
  },
89
89
  "license": "MIT",
90
90
  "private": false,
91
- "lastBuildTagHash": "589c338b6706bfa0ef88e4cf2ed7ac88223ac9e0",
91
+ "lastBuildTagHash": "a8f4e2e654f85554ff2f61ac607663e426c92b3b",
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": "16.100.8",
61
+ "version": "16.100.10",
62
62
  "description": "isomorphic logger for browser/server in typescript",
63
63
  "repository": {
64
64
  "type": "git",
@@ -88,16 +88,21 @@
88
88
  "json-stringify-safe": "5.0.1",
89
89
  "json5": "2.2.1",
90
90
  "randomcolor": "0.5.3",
91
- "tnp-config": "16.100.8"
91
+ "tnp-config": "16.100.10"
92
92
  },
93
93
  "license": "MIT",
94
94
  "private": false,
95
- "lastBuildTagHash": "589c338b6706bfa0ef88e4cf2ed7ac88223ac9e0",
95
+ "lastBuildTagHash": "a8f4e2e654f85554ff2f61ac607663e426c92b3b",
96
96
  "peerDependencies": {},
97
97
  "devDependencies": {
98
98
  "@angular-builders/custom-webpack": "~16.0.2-beta.2",
99
99
  "@angular-devkit/build-angular": "~16.0.5",
100
100
  "@angular-devkit/core": "~16.0.5",
101
+ "@angular-eslint/builder": "~16.3.1",
102
+ "@angular-eslint/eslint-plugin": "~16.3.1",
103
+ "@angular-eslint/eslint-plugin-template": "~16.3.1",
104
+ "@angular-eslint/schematics": "~16.3.1",
105
+ "@angular-eslint/template-parser": "~16.3.1",
101
106
  "@angular-material-extensions/password-strength": "~12.1.0",
102
107
  "@angular/animations": "~16.0.0",
103
108
  "@angular/cdk": "~16.0.3",
@@ -115,9 +120,6 @@
115
120
  "@angular/router": "~16.0.0",
116
121
  "@angular/service-worker": "~16.0.4",
117
122
  "@babel/cli": "7.18.6",
118
- "@commitlint/cli": "12.1.1",
119
- "@commitlint/config-conventional": "12.1.1",
120
- "@commitlint/prompt-cli": "12.1.1",
121
123
  "@compodoc/compodoc": "1.1.20",
122
124
  "@iconify/icons-fa-solid": "1.2.2",
123
125
  "@iconify/icons-mdi": "1.2.1",
@@ -139,6 +141,7 @@
139
141
  "@ngx-formly/material": "6.1.8",
140
142
  "@ngx-translate/core": "15.0.0",
141
143
  "@ngx-translate/http-loader": "8.0.0",
144
+ "@sqltools/formatter": "1.2.2",
142
145
  "@sweetalert2/ngx-sweetalert2": "12.1.0",
143
146
  "@testdeck/jest": "0.3.3",
144
147
  "@testdeck/mocha": "0.3.3",
@@ -169,15 +172,18 @@
169
172
  "@types/systeminformation": "3.23.0",
170
173
  "@types/vinyl": "2.0.2",
171
174
  "@types/watch": "1.0.0",
175
+ "@typescript-eslint/eslint-plugin": "5.62.0",
176
+ "@typescript-eslint/parser": "5.62.0",
172
177
  "@vercel/ncc": "0.38.1",
173
178
  "accepts": "1.3.4",
174
179
  "ajv": "8.12.0",
175
180
  "angular-material-css-vars": "5.0.2",
176
181
  "angular-resize-event": "3.2.0",
177
182
  "animate.css": "4.1.1 ",
178
- "any-project-cli": "16.100.7",
183
+ "any-project-cli": "16.100.9",
184
+ "app-root-path": "3.0.0",
179
185
  "axios": "1.3.5",
180
- "background-worker-process": "16.100.4",
186
+ "background-worker-process": "16.100.10",
181
187
  "base32": "0.0.7",
182
188
  "bcryptjs": "2.4.3",
183
189
  "better-sqlite3": "9.5.0",
@@ -192,6 +198,7 @@
192
198
  "circular-json": "0.5.1",
193
199
  "class-transformer": "0.5.1",
194
200
  "class-validator": "0.14.0",
201
+ "cli-highlight": "2.1.11",
195
202
  "command-exists": "1.2.2",
196
203
  "compression": "1.7.4",
197
204
  "concurrently": "3.5.1",
@@ -213,10 +220,13 @@
213
220
  "enquirer": "2.3.0",
214
221
  "enum-values": "1.2.1",
215
222
  "errorhandler": "1.5.0",
216
- "eslint": "7.13.0",
217
- "eslint-plugin-import": "2.22.1",
218
- "eslint-plugin-jsdoc": "30.7.8",
219
- "eslint-plugin-prefer-arrow": "1.2.2",
223
+ "eslint": "8.51.0",
224
+ "eslint-config-prettier": "9.1.0",
225
+ "eslint-plugin-import": "latest",
226
+ "eslint-plugin-jsdoc": "latest",
227
+ "eslint-plugin-prefer-arrow": "latest",
228
+ "eslint-plugin-prettier": "5.1.3",
229
+ "eslint-plugin-react": "latest",
220
230
  "express": "4.16.3",
221
231
  "express-fileupload": "1.4.0",
222
232
  "express-session": "1.17.3",
@@ -224,13 +234,13 @@
224
234
  "file-saver": "2.0.5",
225
235
  "file-type": "18.5.0",
226
236
  "firedev": "^16",
227
- "firedev-crud": "16.100.7",
228
- "firedev-crud-deamon": "16.100.6",
229
- "firedev-ports": "16.100.7",
230
- "firedev-storage": "16.100.4",
231
- "firedev-type-sql": "16.100.4",
232
- "firedev-typeorm": "16.100.4",
233
- "firedev-ui": "16.100.7",
237
+ "firedev-crud": "16.100.9",
238
+ "firedev-crud-deamon": "16.100.8",
239
+ "firedev-ports": "16.100.9",
240
+ "firedev-storage": "16.100.5",
241
+ "firedev-type-sql": "16.100.6",
242
+ "firedev-typeorm": "16.100.5",
243
+ "firedev-ui": "16.100.8",
234
244
  "fkill": "6.1.0",
235
245
  "font-awesome": "4.7.0",
236
246
  "form-data": "4.0.0",
@@ -248,11 +258,11 @@
248
258
  "image-focus": "1.2.1",
249
259
  "immer": "10.0.2",
250
260
  "immutable": "4.3.0",
251
- "incremental-compiler": "16.100.7",
261
+ "incremental-compiler": "16.100.9",
252
262
  "inquirer": "7.3.3",
253
263
  "inquirer-autocomplete-prompt": "1.3.0",
254
264
  "is-elevated": "3.0.0",
255
- "isomorphic-region-loader": "16.100.6",
265
+ "isomorphic-region-loader": "16.100.8",
256
266
  "istanbul-instrumenter-loader": "2.0.0",
257
267
  "jest": "29.5.0",
258
268
  "jest-date-mock": "1.0.8",
@@ -262,8 +272,8 @@
262
272
  "jimp": "0.22.8",
263
273
  "joi": "17.9.2",
264
274
  "jscodeshift": "0.6.3",
265
- "json10": "16.100.4",
266
- "json10-writer": "16.100.7",
275
+ "json10": "16.100.6",
276
+ "json10-writer": "16.100.9",
267
277
  "json5-writer": "0.2.0",
268
278
  "jszip": "3.10.1",
269
279
  "karma-cli": "1.0.1",
@@ -271,9 +281,9 @@
271
281
  "localforage": "1.10.0",
272
282
  "lockfile": "1.0.4",
273
283
  "lodash": "4.17.20",
274
- "lodash-walk-object": "16.100.4",
284
+ "lodash-walk-object": "16.100.6",
275
285
  "lowdb": "7.0.1",
276
- "magic-renamer": "16.100.6",
286
+ "magic-renamer": "16.100.8",
277
287
  "material-design-icons": "3.0.1",
278
288
  "method-override": "2.3.10",
279
289
  "minimist": "1.2.0",
@@ -284,10 +294,10 @@
284
294
  "ng-in-viewport": "15.0.2",
285
295
  "ng-lock": "16.0.1",
286
296
  "ng-packagr": "16.0.1",
287
- "ng-talkback": "16.100.4",
288
- "ng2-logger": "16.100.7",
297
+ "ng-talkback": "16.100.5",
298
+ "ng2-logger": "16.100.9",
289
299
  "ng2-pdfjs-viewer": "16.0.4",
290
- "ng2-rest": "16.100.4",
300
+ "ng2-rest": "16.100.6",
291
301
  "ngx-ace-wrapper": "14.0.0",
292
302
  "ngx-editor": "15.3.0",
293
303
  "ngx-highlightjs": "9.0.0",
@@ -300,7 +310,7 @@
300
310
  "ngx-scrolltop": "6.0.0",
301
311
  "ngx-store": "3.1.1",
302
312
  "ngx-typed-js": "2.1.1",
303
- "node-cli-tester": "16.100.4",
313
+ "node-cli-tester": "16.100.5",
304
314
  "node-localstorage": "2.1.6",
305
315
  "node-notifier": "6.0.0",
306
316
  "node-polyfill-webpack-plugin": "2.0.1",
@@ -316,7 +326,8 @@
316
326
  "path-to-regexp": "6.2.2",
317
327
  "pica": "9.0.1",
318
328
  "portfinder": "1.0.21",
319
- "prettier": "3.0.0",
329
+ "prettier": "3.2.5",
330
+ "prettier-eslint": "16.3.0",
320
331
  "pretty-error": "4.0.0",
321
332
  "primeflex": "3.3.1",
322
333
  "primeicons": "6.0.1",
@@ -327,7 +338,7 @@
327
338
  "ps-node": "0.1.6",
328
339
  "q": "1.5.1",
329
340
  "rallax.js": "2.0.4",
330
- "record-replay-req-res-scenario": "16.100.4",
341
+ "record-replay-req-res-scenario": "16.100.5",
331
342
  "reflect-metadata": "0.1.10",
332
343
  "rimraf": "2.6.2",
333
344
  "rxjs": "~7.8.0",
@@ -338,7 +349,7 @@
338
349
  "socket.io": "2.4.1",
339
350
  "sort-package-json": "1.11.0",
340
351
  "sql.js": "1.8.0",
341
- "static-columns": "16.100.4",
352
+ "static-columns": "16.100.5",
342
353
  "string-similarity": "4.0.2",
343
354
  "sudo-block": "3.0.0",
344
355
  "supertest": "6.3.3",
@@ -346,11 +357,11 @@
346
357
  "systeminformation": "3.45.7",
347
358
  "task.js": "0.1.5",
348
359
  "threads": "1.7.0",
349
- "tnp-cli": "16.100.4",
350
- "tnp-core": "16.100.19",
351
- "tnp-db": "16.100.6",
352
- "tnp-helpers": "16.100.8",
353
- "tnp-models": "16.100.7",
360
+ "tnp-cli": "16.100.5",
361
+ "tnp-core": "16.100.22",
362
+ "tnp-db": "16.100.8",
363
+ "tnp-helpers": "16.100.17",
364
+ "tnp-models": "16.100.9",
354
365
  "ts-debug": "1.3.0",
355
366
  "ts-json-schema-generator": "2.1.1",
356
367
  "ts-loader": "2.3.1",
@@ -359,13 +370,13 @@
359
370
  "tslint": "5.9.1",
360
371
  "turndown": "7.1.2",
361
372
  "typescript": "~5.0.2",
362
- "typescript-class-helpers": "~16.100.7",
373
+ "typescript-class-helpers": "~16.100.9",
363
374
  "typescript-formatter": "~7.2.2",
364
375
  "underscore": "1.9.1",
365
376
  "uuid": "8.3.2",
366
377
  "validator": "9.2.0",
367
378
  "video.js": "8.3.0",
368
- "vpn-split": "16.100.4",
379
+ "vpn-split": "16.100.5",
369
380
  "watch": "1.0.2",
370
381
  "webpack": "~5.80",
371
382
  "webpack-dev-middleware": "~6.0.2",
@@ -376,14 +387,14 @@
376
387
  "main": "dist/app.electron.js"
377
388
  },
378
389
  "build": {
379
- "number": 634,
380
- "date": "2024-05-21T03:14:44.000Z",
381
- "hash": "729cf5748d64ac356aa49bc1b95028423631aab7"
390
+ "number": 636,
391
+ "date": "2024-05-27T06:33:39.000Z",
392
+ "hash": "4d4532b76a8b8a1ab4e2bfb7475ed99bc9892de4"
382
393
  },
383
394
  "currentProjectName": "ng2-logger",
384
395
  "currentProjectGenericName": "ng2-logger",
385
396
  "currentProjectType": "isomorphic-lib",
386
- "currentFrameworkVersion": "16.100.9",
397
+ "currentFrameworkVersion": "16.100.20",
387
398
  "isStandaloneProject": true,
388
399
  "isSmartContainer": false,
389
400
  "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.