ng2-logger 18.0.11 → 18.0.14
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/lib/index._auto-generated_.d.ts +0 -0
- package/lib/index._auto-generated_.js +6 -0
- package/lib/index._auto-generated_.js.map +1 -0
- package/package.json +3 -3
- package/taon.jsonc +54 -54
- package/tmp-environment.json +31 -30
- package/websql/README.md +24 -24
package/README.md
CHANGED
|
@@ -1,192 +1,192 @@
|
|
|
1
|
-
## taon-logger (ng2-logger) ##
|
|
2
|
-
|
|
3
|
-
- Part of [taon.io](https://github.com/darekf77/taon)
|
|
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 taon'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
|
+
## taon-logger (ng2-logger) ##
|
|
2
|
+
|
|
3
|
+
- Part of [taon.io](https://github.com/darekf77/taon)
|
|
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 taon'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.
|
|
3
|
+
Assets from this folder are being shipped with this npm package (ng2-logger@18.0.14)
|
|
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.
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index._auto-generated_.js","sourceRoot":"","sources":[""],"names":[],"mappings":"AAAA,cAAc;AACd,8CAA8C;AAC9C,2BAA2B;AAC3B,uDAAuD;AACvD,2CAA2C"}
|
package/package.json
CHANGED
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
]
|
|
55
55
|
},
|
|
56
56
|
"name": "ng2-logger",
|
|
57
|
-
"version": "18.0.
|
|
57
|
+
"version": "18.0.14",
|
|
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.3",
|
|
86
86
|
"randomcolor": "0.5.3",
|
|
87
|
-
"tnp-config": "~18.0.
|
|
87
|
+
"tnp-config": "~18.0.14"
|
|
88
88
|
},
|
|
89
89
|
"license": "MIT",
|
|
90
90
|
"private": false,
|
|
91
|
-
"lastBuildTagHash": "
|
|
91
|
+
"lastBuildTagHash": "8321079bb0e8ad85fff12152c25abb5f3a4fa760",
|
|
92
92
|
"peerDependencies": {},
|
|
93
93
|
"devDependencies": {},
|
|
94
94
|
"main": "dist/app.electron.js"
|
package/taon.jsonc
CHANGED
|
@@ -1,54 +1,54 @@
|
|
|
1
|
-
{
|
|
2
|
-
"resources": ["README.md", "screen.png", "server.png"],
|
|
3
|
-
|
|
4
|
-
"overrided": {
|
|
5
|
-
"includeAsDev": [],
|
|
6
|
-
"includeOnly": [
|
|
7
|
-
"chalk",
|
|
8
|
-
"json-stringify-safe",
|
|
9
|
-
"json5",
|
|
10
|
-
"randomcolor",
|
|
11
|
-
"tnp-config",
|
|
12
|
-
],
|
|
13
|
-
"dependencies": {},
|
|
14
|
-
"ignoreDepsPattern": [],
|
|
15
|
-
"linkedFolders": [],
|
|
16
|
-
"npmFixes": [],
|
|
17
|
-
},
|
|
18
|
-
|
|
19
|
-
"smartContainerBuildTarget": "",
|
|
20
|
-
"linkedRepos": [],
|
|
21
|
-
|
|
22
|
-
"libReleaseOptions": {
|
|
23
|
-
"nodts": false,
|
|
24
|
-
"obscure": false,
|
|
25
|
-
"ugly": false,
|
|
26
|
-
"includeNodeModules": false,
|
|
27
|
-
"cliBuildNoDts": false,
|
|
28
|
-
"cliBuildObscure": false,
|
|
29
|
-
"cliBuildIncludeNodeModules": false,
|
|
30
|
-
"cliBuildUglify": false,
|
|
31
|
-
},
|
|
32
|
-
|
|
33
|
-
"smartContainerTarget": "",
|
|
34
|
-
"type": "isomorphic-lib",
|
|
35
|
-
"version": "v18",
|
|
36
|
-
"additionalNpmNames": ["taon-logger"],
|
|
37
|
-
"description": "isomorphic logger for browser/server in typescript",
|
|
38
|
-
"license": "MIT",
|
|
39
|
-
"private": false,
|
|
40
|
-
|
|
41
|
-
"author": {
|
|
42
|
-
"name": "Dariusz Filipiak",
|
|
43
|
-
},
|
|
44
|
-
|
|
45
|
-
"homepage": "https://github.com/darekf77/ng2-logger#readme",
|
|
46
|
-
"keywords": [
|
|
47
|
-
"isomorphic",
|
|
48
|
-
"logger",
|
|
49
|
-
"logging",
|
|
50
|
-
"logowanie",
|
|
51
|
-
"log",
|
|
52
|
-
"typescript",
|
|
53
|
-
],
|
|
54
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"resources": ["README.md", "screen.png", "server.png"],
|
|
3
|
+
|
|
4
|
+
"overrided": {
|
|
5
|
+
"includeAsDev": [],
|
|
6
|
+
"includeOnly": [
|
|
7
|
+
"chalk",
|
|
8
|
+
"json-stringify-safe",
|
|
9
|
+
"json5",
|
|
10
|
+
"randomcolor",
|
|
11
|
+
"tnp-config",
|
|
12
|
+
],
|
|
13
|
+
"dependencies": {},
|
|
14
|
+
"ignoreDepsPattern": [],
|
|
15
|
+
"linkedFolders": [],
|
|
16
|
+
"npmFixes": [],
|
|
17
|
+
},
|
|
18
|
+
|
|
19
|
+
"smartContainerBuildTarget": "",
|
|
20
|
+
"linkedRepos": [],
|
|
21
|
+
|
|
22
|
+
"libReleaseOptions": {
|
|
23
|
+
"nodts": false,
|
|
24
|
+
"obscure": false,
|
|
25
|
+
"ugly": false,
|
|
26
|
+
"includeNodeModules": false,
|
|
27
|
+
"cliBuildNoDts": false,
|
|
28
|
+
"cliBuildObscure": false,
|
|
29
|
+
"cliBuildIncludeNodeModules": false,
|
|
30
|
+
"cliBuildUglify": false,
|
|
31
|
+
},
|
|
32
|
+
|
|
33
|
+
"smartContainerTarget": "",
|
|
34
|
+
"type": "isomorphic-lib",
|
|
35
|
+
"version": "v18",
|
|
36
|
+
"additionalNpmNames": ["taon-logger"],
|
|
37
|
+
"description": "isomorphic logger for browser/server in typescript",
|
|
38
|
+
"license": "MIT",
|
|
39
|
+
"private": false,
|
|
40
|
+
|
|
41
|
+
"author": {
|
|
42
|
+
"name": "Dariusz Filipiak",
|
|
43
|
+
},
|
|
44
|
+
|
|
45
|
+
"homepage": "https://github.com/darekf77/ng2-logger#readme",
|
|
46
|
+
"keywords": [
|
|
47
|
+
"isomorphic",
|
|
48
|
+
"logger",
|
|
49
|
+
"logging",
|
|
50
|
+
"logowanie",
|
|
51
|
+
"log",
|
|
52
|
+
"typescript",
|
|
53
|
+
],
|
|
54
|
+
}
|
package/tmp-environment.json
CHANGED
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
]
|
|
59
59
|
},
|
|
60
60
|
"name": "ng2-logger",
|
|
61
|
-
"version": "18.0.
|
|
61
|
+
"version": "18.0.14",
|
|
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.3",
|
|
90
90
|
"randomcolor": "0.5.3",
|
|
91
|
-
"tnp-config": "~18.0.
|
|
91
|
+
"tnp-config": "~18.0.14"
|
|
92
92
|
},
|
|
93
93
|
"license": "MIT",
|
|
94
94
|
"private": false,
|
|
95
|
-
"lastBuildTagHash": "
|
|
95
|
+
"lastBuildTagHash": "8321079bb0e8ad85fff12152c25abb5f3a4fa760",
|
|
96
96
|
"peerDependencies": {},
|
|
97
97
|
"devDependencies": {
|
|
98
98
|
"@angular-builders/custom-webpack": "~18.0.0",
|
|
@@ -183,7 +183,6 @@
|
|
|
183
183
|
"animate.css": "4.1.1",
|
|
184
184
|
"app-root-path": "3.1.0",
|
|
185
185
|
"axios": "1.7.3",
|
|
186
|
-
"background-worker-process": "~16.100.10",
|
|
187
186
|
"base32": "0.0.7",
|
|
188
187
|
"bcryptjs": "2.4.3",
|
|
189
188
|
"body-parser": "1.20.2",
|
|
@@ -251,13 +250,13 @@
|
|
|
251
250
|
"image-focus": "1.2.1",
|
|
252
251
|
"immer": "10.0.2",
|
|
253
252
|
"immutable": "4.3.7",
|
|
254
|
-
"incremental-compiler": "~18.0.
|
|
253
|
+
"incremental-compiler": "~18.0.12",
|
|
255
254
|
"inquirer": "7.3.3",
|
|
256
255
|
"inquirer-autocomplete-prompt": "1.4.0",
|
|
257
256
|
"inquirer-autocomplete-standalone": "0.8.1",
|
|
258
257
|
"inquirer-select-pro": "1.0.0-alpha.7",
|
|
259
258
|
"is-elevated": "3.0.0",
|
|
260
|
-
"isomorphic-region-loader": "~18.0.
|
|
259
|
+
"isomorphic-region-loader": "~18.0.10",
|
|
261
260
|
"istanbul-instrumenter-loader": "3.0.1",
|
|
262
261
|
"jest": "29.7.0",
|
|
263
262
|
"jest-date-mock": "1.0.10",
|
|
@@ -267,8 +266,8 @@
|
|
|
267
266
|
"jimp": "0.22.12",
|
|
268
267
|
"joi": "17.13.3",
|
|
269
268
|
"jscodeshift": "0.6.3",
|
|
270
|
-
"json10": "~18.0.
|
|
271
|
-
"json10-writer": "~18.0.
|
|
269
|
+
"json10": "~18.0.10",
|
|
270
|
+
"json10-writer": "~18.0.10",
|
|
272
271
|
"json5-writer": "0.2.0",
|
|
273
272
|
"jszip": "3.10.1",
|
|
274
273
|
"karma-cli": "1.0.1",
|
|
@@ -276,9 +275,9 @@
|
|
|
276
275
|
"localforage": "1.10.0",
|
|
277
276
|
"lockfile": "1.0.4",
|
|
278
277
|
"lodash": "4.17.21",
|
|
279
|
-
"lodash-walk-object": "~18.0.
|
|
278
|
+
"lodash-walk-object": "~18.0.10",
|
|
280
279
|
"lowdb": "7.0.1",
|
|
281
|
-
"magic-renamer": "~18.0.
|
|
280
|
+
"magic-renamer": "~18.0.10",
|
|
282
281
|
"material-design-icons": "3.0.1",
|
|
283
282
|
"method-override": "2.3.10",
|
|
284
283
|
"minimist": "1.2.8",
|
|
@@ -289,14 +288,15 @@
|
|
|
289
288
|
"ng-in-viewport": "16.1.0",
|
|
290
289
|
"ng-lock": "18.0.1",
|
|
291
290
|
"ng-packagr": "18.1.0",
|
|
292
|
-
"ng-talkback": "~18.0.
|
|
293
|
-
"ng2-logger": "~18.0.
|
|
291
|
+
"ng-talkback": "~18.0.9",
|
|
292
|
+
"ng2-logger": "~18.0.12",
|
|
294
293
|
"ng2-pdfjs-viewer": "18.0.0",
|
|
295
|
-
"ng2-rest": "~18.0.
|
|
296
|
-
"ng2-rest-swagger-generator": "18.0.
|
|
294
|
+
"ng2-rest": "~18.0.10",
|
|
295
|
+
"ng2-rest-swagger-generator": "18.0.7",
|
|
297
296
|
"ngx-ace-wrapper": "17.0.0",
|
|
298
297
|
"ngx-editor": "17.5.4",
|
|
299
298
|
"ngx-highlightjs": "12.0.0",
|
|
299
|
+
"ngx-infinite-scroll": "18.0.0",
|
|
300
300
|
"ngx-moment": "6.0.2",
|
|
301
301
|
"ngx-monaco-editor": "12.0.0",
|
|
302
302
|
"ngx-photo-editor": "0.4.4",
|
|
@@ -306,7 +306,7 @@
|
|
|
306
306
|
"ngx-scrolltop": "18.0.0",
|
|
307
307
|
"ngx-store": "3.1.1",
|
|
308
308
|
"ngx-typed-js": "2.1.1",
|
|
309
|
-
"node-cli-tester": "~18.0.
|
|
309
|
+
"node-cli-tester": "~18.0.9",
|
|
310
310
|
"node-localstorage": "2.1.6",
|
|
311
311
|
"node-notifier": "10.0.1",
|
|
312
312
|
"node-polyfill-webpack-plugin": "2.0.1",
|
|
@@ -335,7 +335,7 @@
|
|
|
335
335
|
"ps-node": "0.1.6",
|
|
336
336
|
"q": "1.5.1",
|
|
337
337
|
"rallax.js": "2.0.4",
|
|
338
|
-
"record-replay-req-res-scenario": "~18.0.
|
|
338
|
+
"record-replay-req-res-scenario": "~18.0.9",
|
|
339
339
|
"reflect-metadata": "0.2.2",
|
|
340
340
|
"rimraf": "2.6.2",
|
|
341
341
|
"rxjs": "~7.8.1",
|
|
@@ -347,22 +347,22 @@
|
|
|
347
347
|
"socket.io-client": "4.7.5",
|
|
348
348
|
"sort-package-json": "1.11.0",
|
|
349
349
|
"sql.js": "1.8.0",
|
|
350
|
-
"static-columns": "~18.0.
|
|
350
|
+
"static-columns": "~18.0.11",
|
|
351
351
|
"string-similarity": "4.0.4",
|
|
352
352
|
"sudo-block": "3.0.0",
|
|
353
353
|
"supertest": "7.0.0",
|
|
354
354
|
"sweetalert2": "11.7.32",
|
|
355
355
|
"systeminformation": "3.45.7",
|
|
356
356
|
"taon": "^18",
|
|
357
|
-
"taon-storage": "18.0.
|
|
358
|
-
"taon-type-sql": "18.0.
|
|
359
|
-
"taon-typeorm": "18.0.
|
|
357
|
+
"taon-storage": "18.0.9",
|
|
358
|
+
"taon-type-sql": "18.0.10",
|
|
359
|
+
"taon-typeorm": "18.0.9",
|
|
360
360
|
"task.js": "0.1.5",
|
|
361
361
|
"threads": "1.7.0",
|
|
362
|
-
"tnp": "~18.0.
|
|
363
|
-
"tnp-core": "~18.0.
|
|
364
|
-
"tnp-helpers": "~18.0.
|
|
365
|
-
"tnp-models": "~18.0.
|
|
362
|
+
"tnp": "~18.0.10",
|
|
363
|
+
"tnp-core": "~18.0.36",
|
|
364
|
+
"tnp-helpers": "~18.0.10",
|
|
365
|
+
"tnp-models": "~18.0.11",
|
|
366
366
|
"ts-debug": "1.3.0",
|
|
367
367
|
"ts-json-schema-generator": "2.3.0-next.5",
|
|
368
368
|
"ts-loader": "2.3.1",
|
|
@@ -374,13 +374,14 @@
|
|
|
374
374
|
"typedoc": "0.26.5",
|
|
375
375
|
"typedoc-plugin-markdown": "4.2.3",
|
|
376
376
|
"typescript": "~5.5.4",
|
|
377
|
-
"typescript-class-helpers": "~18.0.
|
|
377
|
+
"typescript-class-helpers": "~18.0.11",
|
|
378
378
|
"typescript-formatter": "~7.2.2",
|
|
379
|
+
"typescript-string-enums": "~1.0.0",
|
|
379
380
|
"underscore": "1.13.7",
|
|
380
381
|
"uuid": "10.0.0",
|
|
381
382
|
"validator": "13.5.2",
|
|
382
383
|
"video.js": "8.3.0",
|
|
383
|
-
"vpn-split": "~18.0.
|
|
384
|
+
"vpn-split": "~18.0.9",
|
|
384
385
|
"vscode": "1.1.37",
|
|
385
386
|
"wait-on": "7.0.1",
|
|
386
387
|
"watch": "1.0.2",
|
|
@@ -393,14 +394,14 @@
|
|
|
393
394
|
"main": "dist/app.electron.js"
|
|
394
395
|
},
|
|
395
396
|
"build": {
|
|
396
|
-
"number":
|
|
397
|
-
"date": "2024-
|
|
398
|
-
"hash": "
|
|
397
|
+
"number": 670,
|
|
398
|
+
"date": "2024-09-03T21:50:50.000Z",
|
|
399
|
+
"hash": "cc28271e1dc53af91165f5f870d3933e97f587d5"
|
|
399
400
|
},
|
|
400
401
|
"currentProjectName": "ng2-logger",
|
|
401
402
|
"currentProjectGenericName": "ng2-logger",
|
|
402
403
|
"currentProjectType": "isomorphic-lib",
|
|
403
|
-
"currentFrameworkVersion": "18.0.
|
|
404
|
+
"currentFrameworkVersion": "18.0.11",
|
|
404
405
|
"isStandaloneProject": true,
|
|
405
406
|
"isSmartContainer": false,
|
|
406
407
|
"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.
|