ng2-logger 16.444.8 → 16.444.11
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 +192 -192
- package/assets/shared/shared_folder_info.txt +1 -1
- package/browser/README.md +24 -24
- package/client/README.md +24 -24
- package/client/package.json +21 -21
- package/firedev.jsonc +47 -47
- package/package.json +3 -3
- package/tmp-environment.json +25 -25
- package/websql/README.md +24 -24
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
|
-

|
|
16
|
-
|
|
17
|
-
See nice server logs:
|
|
18
|
-
|
|
19
|
-

|
|
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
|
+

|
|
16
|
+
|
|
17
|
+
See nice server logs:
|
|
18
|
+
|
|
19
|
+

|
|
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.444.
|
|
3
|
+
Assets from this folder are being shipped with this npm package (ng2-logger@16.444.11)
|
|
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.
|
package/client/package.json
CHANGED
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
]
|
|
55
55
|
},
|
|
56
56
|
"name": "ng2-logger",
|
|
57
|
-
"version": "16.444.
|
|
57
|
+
"version": "16.444.11",
|
|
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.444.
|
|
87
|
+
"tnp-config": "~16.444.11"
|
|
88
88
|
},
|
|
89
89
|
"license": "MIT",
|
|
90
90
|
"private": false,
|
|
91
|
-
"lastBuildTagHash": "
|
|
91
|
+
"lastBuildTagHash": "787df6cac8c3751e1c7d813dc3669357ffd00a20",
|
|
92
92
|
"peerDependencies": {},
|
|
93
93
|
"devDependencies": {
|
|
94
94
|
"@angular-builders/custom-webpack": "~16.0.2-beta.2",
|
|
@@ -176,7 +176,7 @@
|
|
|
176
176
|
"angular-material-css-vars": "5.0.2",
|
|
177
177
|
"angular-resize-event": "3.2.0",
|
|
178
178
|
"animate.css": "4.1.1 ",
|
|
179
|
-
"any-project-cli": "~16.444.
|
|
179
|
+
"any-project-cli": "~16.444.8",
|
|
180
180
|
"app-root-path": "3.0.0",
|
|
181
181
|
"axios": "1.3.5",
|
|
182
182
|
"background-worker-process": "~16.100.10",
|
|
@@ -231,11 +231,11 @@
|
|
|
231
231
|
"file-saver": "2.0.5",
|
|
232
232
|
"file-type": "18.5.0",
|
|
233
233
|
"firedev": "^16",
|
|
234
|
-
"firedev-crud": "~16.444.
|
|
235
|
-
"firedev-crud-deamon": "~16.444.
|
|
236
|
-
"firedev-ports": "~16.444.
|
|
234
|
+
"firedev-crud": "~16.444.8",
|
|
235
|
+
"firedev-crud-deamon": "~16.444.8",
|
|
236
|
+
"firedev-ports": "~16.444.8",
|
|
237
237
|
"firedev-storage": "~16.444.5",
|
|
238
|
-
"firedev-type-sql": "~16.444.
|
|
238
|
+
"firedev-type-sql": "~16.444.8",
|
|
239
239
|
"firedev-typeorm": "~16.444.5",
|
|
240
240
|
"firedev-ui": "~16.444.1",
|
|
241
241
|
"fkill": "6.1.0",
|
|
@@ -255,11 +255,11 @@
|
|
|
255
255
|
"image-focus": "1.2.1",
|
|
256
256
|
"immer": "10.0.2",
|
|
257
257
|
"immutable": "4.3.0",
|
|
258
|
-
"incremental-compiler": "~16.444.
|
|
258
|
+
"incremental-compiler": "~16.444.9",
|
|
259
259
|
"inquirer": "7.3.3",
|
|
260
260
|
"inquirer-autocomplete-prompt": "1.3.0",
|
|
261
261
|
"is-elevated": "3.0.0",
|
|
262
|
-
"isomorphic-region-loader": "~16.444.
|
|
262
|
+
"isomorphic-region-loader": "~16.444.8",
|
|
263
263
|
"istanbul-instrumenter-loader": "2.0.0",
|
|
264
264
|
"jest": "29.5.0",
|
|
265
265
|
"jest-date-mock": "1.0.8",
|
|
@@ -269,8 +269,8 @@
|
|
|
269
269
|
"jimp": "0.22.8",
|
|
270
270
|
"joi": "17.9.2",
|
|
271
271
|
"jscodeshift": "0.6.3",
|
|
272
|
-
"json10": "~16.444.
|
|
273
|
-
"json10-writer": "~16.444.
|
|
272
|
+
"json10": "~16.444.8",
|
|
273
|
+
"json10-writer": "~16.444.8",
|
|
274
274
|
"json5-writer": "0.2.0",
|
|
275
275
|
"jszip": "3.10.1",
|
|
276
276
|
"karma-cli": "1.0.1",
|
|
@@ -278,9 +278,9 @@
|
|
|
278
278
|
"localforage": "1.10.0",
|
|
279
279
|
"lockfile": "1.0.4",
|
|
280
280
|
"lodash": "4.17.20",
|
|
281
|
-
"lodash-walk-object": "~16.444.
|
|
281
|
+
"lodash-walk-object": "~16.444.7",
|
|
282
282
|
"lowdb": "7.0.1",
|
|
283
|
-
"magic-renamer": "~16.444.
|
|
283
|
+
"magic-renamer": "~16.444.7",
|
|
284
284
|
"material-design-icons": "3.0.1",
|
|
285
285
|
"method-override": "2.3.10",
|
|
286
286
|
"minimist": "1.2.0",
|
|
@@ -292,9 +292,9 @@
|
|
|
292
292
|
"ng-lock": "16.0.1",
|
|
293
293
|
"ng-packagr": "16.0.1",
|
|
294
294
|
"ng-talkback": "~16.444.1",
|
|
295
|
-
"ng2-logger": "~16.444.
|
|
295
|
+
"ng2-logger": "~16.444.8",
|
|
296
296
|
"ng2-pdfjs-viewer": "16.0.4",
|
|
297
|
-
"ng2-rest": "~16.444.
|
|
297
|
+
"ng2-rest": "~16.444.7",
|
|
298
298
|
"ngx-ace-wrapper": "14.0.0",
|
|
299
299
|
"ngx-editor": "15.3.0",
|
|
300
300
|
"ngx-highlightjs": "9.0.0",
|
|
@@ -356,10 +356,10 @@
|
|
|
356
356
|
"task.js": "0.1.5",
|
|
357
357
|
"threads": "1.7.0",
|
|
358
358
|
"tnp-cli": "~16.444.1",
|
|
359
|
-
"tnp-core": "~16.444.
|
|
360
|
-
"tnp-db": "~16.444.
|
|
361
|
-
"tnp-helpers": "~16.444.
|
|
362
|
-
"tnp-models": "~16.444.
|
|
359
|
+
"tnp-core": "~16.444.13",
|
|
360
|
+
"tnp-db": "~16.444.7",
|
|
361
|
+
"tnp-helpers": "~16.444.16",
|
|
362
|
+
"tnp-models": "~16.444.8",
|
|
363
363
|
"ts-debug": "1.3.0",
|
|
364
364
|
"ts-json-schema-generator": "2.1.1",
|
|
365
365
|
"ts-loader": "2.3.1",
|
|
@@ -370,7 +370,7 @@
|
|
|
370
370
|
"typedoc": "0.25.13",
|
|
371
371
|
"typedoc-plugin-markdown": "4.0.3",
|
|
372
372
|
"typescript": "~5.0.2",
|
|
373
|
-
"typescript-class-helpers": "~16.444.
|
|
373
|
+
"typescript-class-helpers": "~16.444.8",
|
|
374
374
|
"typescript-formatter": "~7.2.2",
|
|
375
375
|
"underscore": "1.9.1",
|
|
376
376
|
"uuid": "8.3.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": "v16",
|
|
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": "v16",
|
|
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.444.
|
|
57
|
+
"version": "16.444.11",
|
|
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.444.
|
|
87
|
+
"tnp-config": "~16.444.11"
|
|
88
88
|
},
|
|
89
89
|
"license": "MIT",
|
|
90
90
|
"private": false,
|
|
91
|
-
"lastBuildTagHash": "
|
|
91
|
+
"lastBuildTagHash": "787df6cac8c3751e1c7d813dc3669357ffd00a20",
|
|
92
92
|
"peerDependencies": {},
|
|
93
93
|
"devDependencies": {},
|
|
94
94
|
"main": "dist/app.electron.js"
|
package/tmp-environment.json
CHANGED
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
]
|
|
59
59
|
},
|
|
60
60
|
"name": "ng2-logger",
|
|
61
|
-
"version": "16.444.
|
|
61
|
+
"version": "16.444.11",
|
|
62
62
|
"description": "isomorphic logger for browser/server in typescript",
|
|
63
63
|
"repository": {
|
|
64
64
|
"type": "git",
|
|
@@ -88,11 +88,11 @@
|
|
|
88
88
|
"json-stringify-safe": "5.0.1",
|
|
89
89
|
"json5": "2.2.1",
|
|
90
90
|
"randomcolor": "0.5.3",
|
|
91
|
-
"tnp-config": "~16.444.
|
|
91
|
+
"tnp-config": "~16.444.11"
|
|
92
92
|
},
|
|
93
93
|
"license": "MIT",
|
|
94
94
|
"private": false,
|
|
95
|
-
"lastBuildTagHash": "
|
|
95
|
+
"lastBuildTagHash": "787df6cac8c3751e1c7d813dc3669357ffd00a20",
|
|
96
96
|
"peerDependencies": {},
|
|
97
97
|
"devDependencies": {
|
|
98
98
|
"@angular-builders/custom-webpack": "~16.0.2-beta.2",
|
|
@@ -180,7 +180,7 @@
|
|
|
180
180
|
"angular-material-css-vars": "5.0.2",
|
|
181
181
|
"angular-resize-event": "3.2.0",
|
|
182
182
|
"animate.css": "4.1.1 ",
|
|
183
|
-
"any-project-cli": "~16.444.
|
|
183
|
+
"any-project-cli": "~16.444.8",
|
|
184
184
|
"app-root-path": "3.0.0",
|
|
185
185
|
"axios": "1.3.5",
|
|
186
186
|
"background-worker-process": "~16.100.10",
|
|
@@ -235,11 +235,11 @@
|
|
|
235
235
|
"file-saver": "2.0.5",
|
|
236
236
|
"file-type": "18.5.0",
|
|
237
237
|
"firedev": "^16",
|
|
238
|
-
"firedev-crud": "~16.444.
|
|
239
|
-
"firedev-crud-deamon": "~16.444.
|
|
240
|
-
"firedev-ports": "~16.444.
|
|
238
|
+
"firedev-crud": "~16.444.8",
|
|
239
|
+
"firedev-crud-deamon": "~16.444.8",
|
|
240
|
+
"firedev-ports": "~16.444.8",
|
|
241
241
|
"firedev-storage": "~16.444.5",
|
|
242
|
-
"firedev-type-sql": "~16.444.
|
|
242
|
+
"firedev-type-sql": "~16.444.8",
|
|
243
243
|
"firedev-typeorm": "~16.444.5",
|
|
244
244
|
"firedev-ui": "~16.444.1",
|
|
245
245
|
"fkill": "6.1.0",
|
|
@@ -259,11 +259,11 @@
|
|
|
259
259
|
"image-focus": "1.2.1",
|
|
260
260
|
"immer": "10.0.2",
|
|
261
261
|
"immutable": "4.3.0",
|
|
262
|
-
"incremental-compiler": "~16.444.
|
|
262
|
+
"incremental-compiler": "~16.444.9",
|
|
263
263
|
"inquirer": "7.3.3",
|
|
264
264
|
"inquirer-autocomplete-prompt": "1.3.0",
|
|
265
265
|
"is-elevated": "3.0.0",
|
|
266
|
-
"isomorphic-region-loader": "~16.444.
|
|
266
|
+
"isomorphic-region-loader": "~16.444.8",
|
|
267
267
|
"istanbul-instrumenter-loader": "2.0.0",
|
|
268
268
|
"jest": "29.5.0",
|
|
269
269
|
"jest-date-mock": "1.0.8",
|
|
@@ -273,8 +273,8 @@
|
|
|
273
273
|
"jimp": "0.22.8",
|
|
274
274
|
"joi": "17.9.2",
|
|
275
275
|
"jscodeshift": "0.6.3",
|
|
276
|
-
"json10": "~16.444.
|
|
277
|
-
"json10-writer": "~16.444.
|
|
276
|
+
"json10": "~16.444.8",
|
|
277
|
+
"json10-writer": "~16.444.8",
|
|
278
278
|
"json5-writer": "0.2.0",
|
|
279
279
|
"jszip": "3.10.1",
|
|
280
280
|
"karma-cli": "1.0.1",
|
|
@@ -282,9 +282,9 @@
|
|
|
282
282
|
"localforage": "1.10.0",
|
|
283
283
|
"lockfile": "1.0.4",
|
|
284
284
|
"lodash": "4.17.20",
|
|
285
|
-
"lodash-walk-object": "~16.444.
|
|
285
|
+
"lodash-walk-object": "~16.444.7",
|
|
286
286
|
"lowdb": "7.0.1",
|
|
287
|
-
"magic-renamer": "~16.444.
|
|
287
|
+
"magic-renamer": "~16.444.7",
|
|
288
288
|
"material-design-icons": "3.0.1",
|
|
289
289
|
"method-override": "2.3.10",
|
|
290
290
|
"minimist": "1.2.0",
|
|
@@ -296,9 +296,9 @@
|
|
|
296
296
|
"ng-lock": "16.0.1",
|
|
297
297
|
"ng-packagr": "16.0.1",
|
|
298
298
|
"ng-talkback": "~16.444.1",
|
|
299
|
-
"ng2-logger": "~16.444.
|
|
299
|
+
"ng2-logger": "~16.444.8",
|
|
300
300
|
"ng2-pdfjs-viewer": "16.0.4",
|
|
301
|
-
"ng2-rest": "~16.444.
|
|
301
|
+
"ng2-rest": "~16.444.7",
|
|
302
302
|
"ngx-ace-wrapper": "14.0.0",
|
|
303
303
|
"ngx-editor": "15.3.0",
|
|
304
304
|
"ngx-highlightjs": "9.0.0",
|
|
@@ -360,10 +360,10 @@
|
|
|
360
360
|
"task.js": "0.1.5",
|
|
361
361
|
"threads": "1.7.0",
|
|
362
362
|
"tnp-cli": "~16.444.1",
|
|
363
|
-
"tnp-core": "~16.444.
|
|
364
|
-
"tnp-db": "~16.444.
|
|
365
|
-
"tnp-helpers": "~16.444.
|
|
366
|
-
"tnp-models": "~16.444.
|
|
363
|
+
"tnp-core": "~16.444.13",
|
|
364
|
+
"tnp-db": "~16.444.7",
|
|
365
|
+
"tnp-helpers": "~16.444.16",
|
|
366
|
+
"tnp-models": "~16.444.8",
|
|
367
367
|
"ts-debug": "1.3.0",
|
|
368
368
|
"ts-json-schema-generator": "2.1.1",
|
|
369
369
|
"ts-loader": "2.3.1",
|
|
@@ -374,7 +374,7 @@
|
|
|
374
374
|
"typedoc": "0.25.13",
|
|
375
375
|
"typedoc-plugin-markdown": "4.0.3",
|
|
376
376
|
"typescript": "~5.0.2",
|
|
377
|
-
"typescript-class-helpers": "~16.444.
|
|
377
|
+
"typescript-class-helpers": "~16.444.8",
|
|
378
378
|
"typescript-formatter": "~7.2.2",
|
|
379
379
|
"underscore": "1.9.1",
|
|
380
380
|
"uuid": "8.3.2",
|
|
@@ -393,14 +393,14 @@
|
|
|
393
393
|
"main": "dist/app.electron.js"
|
|
394
394
|
},
|
|
395
395
|
"build": {
|
|
396
|
-
"number":
|
|
397
|
-
"date": "2024-
|
|
398
|
-
"hash": "
|
|
396
|
+
"number": 650,
|
|
397
|
+
"date": "2024-07-11T16:46:27.000Z",
|
|
398
|
+
"hash": "94fff4b3d8ebdbadeec4750c50a787a9a2e35d81"
|
|
399
399
|
},
|
|
400
400
|
"currentProjectName": "ng2-logger",
|
|
401
401
|
"currentProjectGenericName": "ng2-logger",
|
|
402
402
|
"currentProjectType": "isomorphic-lib",
|
|
403
|
-
"currentFrameworkVersion": "16.444.
|
|
403
|
+
"currentFrameworkVersion": "16.444.12",
|
|
404
404
|
"isStandaloneProject": true,
|
|
405
405
|
"isSmartContainer": false,
|
|
406
406
|
"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.
|