ng2-logger 16.100.4 → 16.100.5
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 +35 -34
- package/firedev.jsonc +48 -0
- package/package.json +3 -3
- package/tmp-environment.json +39 -38
- package/websql/README.md +24 -24
- package/package.json_devDependencies.json +0 -184
- package/package.json_tnp.json5 +0 -57
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.100.
|
|
3
|
+
Assets from this folder are being shipped with this npm package (ng2-logger@16.100.5)
|
|
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.100.
|
|
57
|
+
"version": "16.100.5",
|
|
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": "
|
|
87
|
+
"tnp-config": "16.100.5"
|
|
88
88
|
},
|
|
89
89
|
"license": "MIT",
|
|
90
90
|
"private": false,
|
|
91
|
-
"lastBuildTagHash": "
|
|
91
|
+
"lastBuildTagHash": "c3a7c52afb6533305d89cf319b274ced4eb3bb29",
|
|
92
92
|
"peerDependencies": {},
|
|
93
93
|
"devDependencies": {
|
|
94
94
|
"@angular-builders/custom-webpack": "~16.0.2-beta.2",
|
|
@@ -153,7 +153,6 @@
|
|
|
153
153
|
"@types/json5": "0.0.29",
|
|
154
154
|
"@types/lockfile": "1.0.0",
|
|
155
155
|
"@types/lodash": "4.14.92",
|
|
156
|
-
"@types/lowdb": "1.0.6",
|
|
157
156
|
"@types/mocha": "5.2.5",
|
|
158
157
|
"@types/node": "16.18.21",
|
|
159
158
|
"@types/node-notifier": "5.4.0",
|
|
@@ -172,9 +171,9 @@
|
|
|
172
171
|
"angular-material-css-vars": "5.0.2",
|
|
173
172
|
"angular-resize-event": "3.2.0",
|
|
174
173
|
"animate.css": "4.1.1 ",
|
|
175
|
-
"any-project-cli": "
|
|
174
|
+
"any-project-cli": "16.100.4",
|
|
176
175
|
"axios": "1.3.5",
|
|
177
|
-
"background-worker-process": "
|
|
176
|
+
"background-worker-process": "16.100.4",
|
|
178
177
|
"base32": "0.0.7",
|
|
179
178
|
"bcryptjs": "2.4.3",
|
|
180
179
|
"better-sqlite3": "9.5.0",
|
|
@@ -221,19 +220,20 @@
|
|
|
221
220
|
"file-saver": "2.0.5",
|
|
222
221
|
"file-type": "18.5.0",
|
|
223
222
|
"firedev": "^16",
|
|
224
|
-
"firedev-crud": "
|
|
225
|
-
"firedev-crud-deamon": "
|
|
226
|
-
"firedev-ports": "
|
|
227
|
-
"firedev-storage": "
|
|
228
|
-
"firedev-type-sql": "
|
|
229
|
-
"firedev-typeorm": "
|
|
230
|
-
"firedev-ui": "
|
|
223
|
+
"firedev-crud": "16.100.4",
|
|
224
|
+
"firedev-crud-deamon": "16.100.4",
|
|
225
|
+
"firedev-ports": "16.100.4",
|
|
226
|
+
"firedev-storage": "16.100.3",
|
|
227
|
+
"firedev-type-sql": "16.100.3",
|
|
228
|
+
"firedev-typeorm": "16.100.3",
|
|
229
|
+
"firedev-ui": "16.100.5",
|
|
231
230
|
"fkill": "6.1.0",
|
|
232
231
|
"font-awesome": "4.7.0",
|
|
233
232
|
"form-data": "4.0.0",
|
|
234
233
|
"fs-extra": "8.1.0",
|
|
235
234
|
"fuzzy": "0.1.3",
|
|
236
235
|
"glob": "7.1.2",
|
|
236
|
+
"google-libphonenumber": "3.2.25",
|
|
237
237
|
"gulp": "3.9.1",
|
|
238
238
|
"helmet": "7.0.0",
|
|
239
239
|
"hostile": "1.3.3",
|
|
@@ -244,11 +244,11 @@
|
|
|
244
244
|
"image-focus": "1.2.1",
|
|
245
245
|
"immer": "10.0.2",
|
|
246
246
|
"immutable": "4.3.0",
|
|
247
|
-
"incremental-compiler": "
|
|
247
|
+
"incremental-compiler": "16.100.4",
|
|
248
248
|
"inquirer": "7.3.3",
|
|
249
249
|
"inquirer-autocomplete-prompt": "1.3.0",
|
|
250
250
|
"is-elevated": "3.0.0",
|
|
251
|
-
"isomorphic-region-loader": "
|
|
251
|
+
"isomorphic-region-loader": "16.100.4",
|
|
252
252
|
"istanbul-instrumenter-loader": "2.0.0",
|
|
253
253
|
"jest": "29.5.0",
|
|
254
254
|
"jest-date-mock": "1.0.8",
|
|
@@ -258,8 +258,8 @@
|
|
|
258
258
|
"jimp": "0.22.8",
|
|
259
259
|
"joi": "17.9.2",
|
|
260
260
|
"jscodeshift": "0.6.3",
|
|
261
|
-
"json10": "
|
|
262
|
-
"json10-writer": "
|
|
261
|
+
"json10": "16.100.3",
|
|
262
|
+
"json10-writer": "16.100.4",
|
|
263
263
|
"json5-writer": "0.2.0",
|
|
264
264
|
"jszip": "3.10.1",
|
|
265
265
|
"karma-cli": "1.0.1",
|
|
@@ -267,23 +267,23 @@
|
|
|
267
267
|
"localforage": "1.10.0",
|
|
268
268
|
"lockfile": "1.0.4",
|
|
269
269
|
"lodash": "4.17.20",
|
|
270
|
-
"lodash-walk-object": "
|
|
271
|
-
"lowdb": "
|
|
272
|
-
"magic-renamer": "
|
|
270
|
+
"lodash-walk-object": "16.100.3",
|
|
271
|
+
"lowdb": "7.0.1",
|
|
272
|
+
"magic-renamer": "16.100.4",
|
|
273
273
|
"material-design-icons": "3.0.1",
|
|
274
274
|
"method-override": "2.3.10",
|
|
275
275
|
"minimist": "1.2.0",
|
|
276
276
|
"mkdirp": "0.5.1",
|
|
277
277
|
"mocha": "10.2.0",
|
|
278
278
|
"moment": "2.29.3",
|
|
279
|
-
"morphi": "~16.5.17",
|
|
280
279
|
"ng-for-track-by-property": "16.0.1",
|
|
281
280
|
"ng-in-viewport": "15.0.2",
|
|
282
281
|
"ng-lock": "16.0.1",
|
|
283
282
|
"ng-packagr": "16.0.1",
|
|
284
|
-
"ng-talkback": "
|
|
285
|
-
"ng2-logger": "
|
|
286
|
-
"ng2-
|
|
283
|
+
"ng-talkback": "16.100.3",
|
|
284
|
+
"ng2-logger": "16.100.4",
|
|
285
|
+
"ng2-pdfjs-viewer": "16.0.4",
|
|
286
|
+
"ng2-rest": "16.100.3",
|
|
287
287
|
"ngx-ace-wrapper": "14.0.0",
|
|
288
288
|
"ngx-editor": "15.3.0",
|
|
289
289
|
"ngx-highlightjs": "9.0.0",
|
|
@@ -296,7 +296,7 @@
|
|
|
296
296
|
"ngx-scrolltop": "6.0.0",
|
|
297
297
|
"ngx-store": "3.1.1",
|
|
298
298
|
"ngx-typed-js": "2.1.1",
|
|
299
|
-
"node-cli-tester": "
|
|
299
|
+
"node-cli-tester": "16.100.3",
|
|
300
300
|
"node-localstorage": "2.1.6",
|
|
301
301
|
"node-notifier": "6.0.0",
|
|
302
302
|
"node-polyfill-webpack-plugin": "2.0.1",
|
|
@@ -323,7 +323,7 @@
|
|
|
323
323
|
"ps-node": "0.1.6",
|
|
324
324
|
"q": "1.5.1",
|
|
325
325
|
"rallax.js": "2.0.4",
|
|
326
|
-
"record-replay-req-res-scenario": "
|
|
326
|
+
"record-replay-req-res-scenario": "16.100.3",
|
|
327
327
|
"reflect-metadata": "0.1.10",
|
|
328
328
|
"rimraf": "2.6.2",
|
|
329
329
|
"rxjs": "~7.8.0",
|
|
@@ -334,7 +334,7 @@
|
|
|
334
334
|
"socket.io": "2.4.1",
|
|
335
335
|
"sort-package-json": "1.11.0",
|
|
336
336
|
"sql.js": "1.8.0",
|
|
337
|
-
"static-columns": "
|
|
337
|
+
"static-columns": "16.100.3",
|
|
338
338
|
"string-similarity": "4.0.2",
|
|
339
339
|
"sudo-block": "3.0.0",
|
|
340
340
|
"supertest": "6.3.3",
|
|
@@ -342,25 +342,26 @@
|
|
|
342
342
|
"systeminformation": "3.45.7",
|
|
343
343
|
"task.js": "0.1.5",
|
|
344
344
|
"threads": "1.7.0",
|
|
345
|
-
"tnp-cli": "
|
|
346
|
-
"tnp-core": "
|
|
347
|
-
"tnp-db": "
|
|
348
|
-
"tnp-helpers": "
|
|
349
|
-
"tnp-models": "
|
|
345
|
+
"tnp-cli": "16.100.3",
|
|
346
|
+
"tnp-core": "16.100.15",
|
|
347
|
+
"tnp-db": "16.100.4",
|
|
348
|
+
"tnp-helpers": "16.100.4",
|
|
349
|
+
"tnp-models": "16.100.4",
|
|
350
350
|
"ts-debug": "1.3.0",
|
|
351
|
+
"ts-json-schema-generator": "2.1.1",
|
|
351
352
|
"ts-loader": "2.3.1",
|
|
352
353
|
"ts-node": "10.9.1",
|
|
353
354
|
"tslib": "~2.3.0",
|
|
354
355
|
"tslint": "5.9.1",
|
|
355
356
|
"turndown": "7.1.2",
|
|
356
357
|
"typescript": "~5.0.2",
|
|
357
|
-
"typescript-class-helpers": "~16.100.
|
|
358
|
+
"typescript-class-helpers": "~16.100.4",
|
|
358
359
|
"typescript-formatter": "~7.2.2",
|
|
359
360
|
"underscore": "1.9.1",
|
|
360
361
|
"uuid": "8.3.2",
|
|
361
362
|
"validator": "9.2.0",
|
|
362
363
|
"video.js": "8.3.0",
|
|
363
|
-
"vpn-split": "
|
|
364
|
+
"vpn-split": "16.100.3",
|
|
364
365
|
"watch": "1.0.2",
|
|
365
366
|
"webpack": "~5.80",
|
|
366
367
|
"webpack-dev-middleware": "~6.0.2",
|
package/firedev.jsonc
ADDED
|
@@ -0,0 +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
|
+
],
|
|
48
|
+
}
|
package/package.json
CHANGED
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
]
|
|
55
55
|
},
|
|
56
56
|
"name": "ng2-logger",
|
|
57
|
-
"version": "16.100.
|
|
57
|
+
"version": "16.100.5",
|
|
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": "
|
|
87
|
+
"tnp-config": "16.100.5"
|
|
88
88
|
},
|
|
89
89
|
"license": "MIT",
|
|
90
90
|
"private": false,
|
|
91
|
-
"lastBuildTagHash": "
|
|
91
|
+
"lastBuildTagHash": "c3a7c52afb6533305d89cf319b274ced4eb3bb29",
|
|
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.100.
|
|
61
|
+
"version": "16.100.5",
|
|
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": "
|
|
91
|
+
"tnp-config": "16.100.5"
|
|
92
92
|
},
|
|
93
93
|
"license": "MIT",
|
|
94
94
|
"private": false,
|
|
95
|
-
"lastBuildTagHash": "
|
|
95
|
+
"lastBuildTagHash": "c3a7c52afb6533305d89cf319b274ced4eb3bb29",
|
|
96
96
|
"peerDependencies": {},
|
|
97
97
|
"devDependencies": {
|
|
98
98
|
"@angular-builders/custom-webpack": "~16.0.2-beta.2",
|
|
@@ -157,7 +157,6 @@
|
|
|
157
157
|
"@types/json5": "0.0.29",
|
|
158
158
|
"@types/lockfile": "1.0.0",
|
|
159
159
|
"@types/lodash": "4.14.92",
|
|
160
|
-
"@types/lowdb": "1.0.6",
|
|
161
160
|
"@types/mocha": "5.2.5",
|
|
162
161
|
"@types/node": "16.18.21",
|
|
163
162
|
"@types/node-notifier": "5.4.0",
|
|
@@ -176,9 +175,9 @@
|
|
|
176
175
|
"angular-material-css-vars": "5.0.2",
|
|
177
176
|
"angular-resize-event": "3.2.0",
|
|
178
177
|
"animate.css": "4.1.1 ",
|
|
179
|
-
"any-project-cli": "
|
|
178
|
+
"any-project-cli": "16.100.4",
|
|
180
179
|
"axios": "1.3.5",
|
|
181
|
-
"background-worker-process": "
|
|
180
|
+
"background-worker-process": "16.100.4",
|
|
182
181
|
"base32": "0.0.7",
|
|
183
182
|
"bcryptjs": "2.4.3",
|
|
184
183
|
"better-sqlite3": "9.5.0",
|
|
@@ -225,19 +224,20 @@
|
|
|
225
224
|
"file-saver": "2.0.5",
|
|
226
225
|
"file-type": "18.5.0",
|
|
227
226
|
"firedev": "^16",
|
|
228
|
-
"firedev-crud": "
|
|
229
|
-
"firedev-crud-deamon": "
|
|
230
|
-
"firedev-ports": "
|
|
231
|
-
"firedev-storage": "
|
|
232
|
-
"firedev-type-sql": "
|
|
233
|
-
"firedev-typeorm": "
|
|
234
|
-
"firedev-ui": "
|
|
227
|
+
"firedev-crud": "16.100.4",
|
|
228
|
+
"firedev-crud-deamon": "16.100.4",
|
|
229
|
+
"firedev-ports": "16.100.4",
|
|
230
|
+
"firedev-storage": "16.100.3",
|
|
231
|
+
"firedev-type-sql": "16.100.3",
|
|
232
|
+
"firedev-typeorm": "16.100.3",
|
|
233
|
+
"firedev-ui": "16.100.5",
|
|
235
234
|
"fkill": "6.1.0",
|
|
236
235
|
"font-awesome": "4.7.0",
|
|
237
236
|
"form-data": "4.0.0",
|
|
238
237
|
"fs-extra": "8.1.0",
|
|
239
238
|
"fuzzy": "0.1.3",
|
|
240
239
|
"glob": "7.1.2",
|
|
240
|
+
"google-libphonenumber": "3.2.25",
|
|
241
241
|
"gulp": "3.9.1",
|
|
242
242
|
"helmet": "7.0.0",
|
|
243
243
|
"hostile": "1.3.3",
|
|
@@ -248,11 +248,11 @@
|
|
|
248
248
|
"image-focus": "1.2.1",
|
|
249
249
|
"immer": "10.0.2",
|
|
250
250
|
"immutable": "4.3.0",
|
|
251
|
-
"incremental-compiler": "
|
|
251
|
+
"incremental-compiler": "16.100.4",
|
|
252
252
|
"inquirer": "7.3.3",
|
|
253
253
|
"inquirer-autocomplete-prompt": "1.3.0",
|
|
254
254
|
"is-elevated": "3.0.0",
|
|
255
|
-
"isomorphic-region-loader": "
|
|
255
|
+
"isomorphic-region-loader": "16.100.4",
|
|
256
256
|
"istanbul-instrumenter-loader": "2.0.0",
|
|
257
257
|
"jest": "29.5.0",
|
|
258
258
|
"jest-date-mock": "1.0.8",
|
|
@@ -262,8 +262,8 @@
|
|
|
262
262
|
"jimp": "0.22.8",
|
|
263
263
|
"joi": "17.9.2",
|
|
264
264
|
"jscodeshift": "0.6.3",
|
|
265
|
-
"json10": "
|
|
266
|
-
"json10-writer": "
|
|
265
|
+
"json10": "16.100.3",
|
|
266
|
+
"json10-writer": "16.100.4",
|
|
267
267
|
"json5-writer": "0.2.0",
|
|
268
268
|
"jszip": "3.10.1",
|
|
269
269
|
"karma-cli": "1.0.1",
|
|
@@ -271,23 +271,23 @@
|
|
|
271
271
|
"localforage": "1.10.0",
|
|
272
272
|
"lockfile": "1.0.4",
|
|
273
273
|
"lodash": "4.17.20",
|
|
274
|
-
"lodash-walk-object": "
|
|
275
|
-
"lowdb": "
|
|
276
|
-
"magic-renamer": "
|
|
274
|
+
"lodash-walk-object": "16.100.3",
|
|
275
|
+
"lowdb": "7.0.1",
|
|
276
|
+
"magic-renamer": "16.100.4",
|
|
277
277
|
"material-design-icons": "3.0.1",
|
|
278
278
|
"method-override": "2.3.10",
|
|
279
279
|
"minimist": "1.2.0",
|
|
280
280
|
"mkdirp": "0.5.1",
|
|
281
281
|
"mocha": "10.2.0",
|
|
282
282
|
"moment": "2.29.3",
|
|
283
|
-
"morphi": "~16.5.17",
|
|
284
283
|
"ng-for-track-by-property": "16.0.1",
|
|
285
284
|
"ng-in-viewport": "15.0.2",
|
|
286
285
|
"ng-lock": "16.0.1",
|
|
287
286
|
"ng-packagr": "16.0.1",
|
|
288
|
-
"ng-talkback": "
|
|
289
|
-
"ng2-logger": "
|
|
290
|
-
"ng2-
|
|
287
|
+
"ng-talkback": "16.100.3",
|
|
288
|
+
"ng2-logger": "16.100.4",
|
|
289
|
+
"ng2-pdfjs-viewer": "16.0.4",
|
|
290
|
+
"ng2-rest": "16.100.3",
|
|
291
291
|
"ngx-ace-wrapper": "14.0.0",
|
|
292
292
|
"ngx-editor": "15.3.0",
|
|
293
293
|
"ngx-highlightjs": "9.0.0",
|
|
@@ -300,7 +300,7 @@
|
|
|
300
300
|
"ngx-scrolltop": "6.0.0",
|
|
301
301
|
"ngx-store": "3.1.1",
|
|
302
302
|
"ngx-typed-js": "2.1.1",
|
|
303
|
-
"node-cli-tester": "
|
|
303
|
+
"node-cli-tester": "16.100.3",
|
|
304
304
|
"node-localstorage": "2.1.6",
|
|
305
305
|
"node-notifier": "6.0.0",
|
|
306
306
|
"node-polyfill-webpack-plugin": "2.0.1",
|
|
@@ -327,7 +327,7 @@
|
|
|
327
327
|
"ps-node": "0.1.6",
|
|
328
328
|
"q": "1.5.1",
|
|
329
329
|
"rallax.js": "2.0.4",
|
|
330
|
-
"record-replay-req-res-scenario": "
|
|
330
|
+
"record-replay-req-res-scenario": "16.100.3",
|
|
331
331
|
"reflect-metadata": "0.1.10",
|
|
332
332
|
"rimraf": "2.6.2",
|
|
333
333
|
"rxjs": "~7.8.0",
|
|
@@ -338,7 +338,7 @@
|
|
|
338
338
|
"socket.io": "2.4.1",
|
|
339
339
|
"sort-package-json": "1.11.0",
|
|
340
340
|
"sql.js": "1.8.0",
|
|
341
|
-
"static-columns": "
|
|
341
|
+
"static-columns": "16.100.3",
|
|
342
342
|
"string-similarity": "4.0.2",
|
|
343
343
|
"sudo-block": "3.0.0",
|
|
344
344
|
"supertest": "6.3.3",
|
|
@@ -346,25 +346,26 @@
|
|
|
346
346
|
"systeminformation": "3.45.7",
|
|
347
347
|
"task.js": "0.1.5",
|
|
348
348
|
"threads": "1.7.0",
|
|
349
|
-
"tnp-cli": "
|
|
350
|
-
"tnp-core": "
|
|
351
|
-
"tnp-db": "
|
|
352
|
-
"tnp-helpers": "
|
|
353
|
-
"tnp-models": "
|
|
349
|
+
"tnp-cli": "16.100.3",
|
|
350
|
+
"tnp-core": "16.100.15",
|
|
351
|
+
"tnp-db": "16.100.4",
|
|
352
|
+
"tnp-helpers": "16.100.4",
|
|
353
|
+
"tnp-models": "16.100.4",
|
|
354
354
|
"ts-debug": "1.3.0",
|
|
355
|
+
"ts-json-schema-generator": "2.1.1",
|
|
355
356
|
"ts-loader": "2.3.1",
|
|
356
357
|
"ts-node": "10.9.1",
|
|
357
358
|
"tslib": "~2.3.0",
|
|
358
359
|
"tslint": "5.9.1",
|
|
359
360
|
"turndown": "7.1.2",
|
|
360
361
|
"typescript": "~5.0.2",
|
|
361
|
-
"typescript-class-helpers": "~16.100.
|
|
362
|
+
"typescript-class-helpers": "~16.100.4",
|
|
362
363
|
"typescript-formatter": "~7.2.2",
|
|
363
364
|
"underscore": "1.9.1",
|
|
364
365
|
"uuid": "8.3.2",
|
|
365
366
|
"validator": "9.2.0",
|
|
366
367
|
"video.js": "8.3.0",
|
|
367
|
-
"vpn-split": "
|
|
368
|
+
"vpn-split": "16.100.3",
|
|
368
369
|
"watch": "1.0.2",
|
|
369
370
|
"webpack": "~5.80",
|
|
370
371
|
"webpack-dev-middleware": "~6.0.2",
|
|
@@ -375,14 +376,14 @@
|
|
|
375
376
|
"main": "dist/app.electron.js"
|
|
376
377
|
},
|
|
377
378
|
"build": {
|
|
378
|
-
"number":
|
|
379
|
-
"date": "2024-05-
|
|
380
|
-
"hash": "
|
|
379
|
+
"number": 631,
|
|
380
|
+
"date": "2024-05-20T11:14:24.000Z",
|
|
381
|
+
"hash": "9f8f73e18fbd12b906b49768c3ee0b3ffabdb564"
|
|
381
382
|
},
|
|
382
383
|
"currentProjectName": "ng2-logger",
|
|
383
384
|
"currentProjectGenericName": "ng2-logger",
|
|
384
385
|
"currentProjectType": "isomorphic-lib",
|
|
385
|
-
"currentFrameworkVersion": "16.100.
|
|
386
|
+
"currentFrameworkVersion": "16.100.5",
|
|
386
387
|
"isStandaloneProject": true,
|
|
387
388
|
"isSmartContainer": false,
|
|
388
389
|
"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.
|
|
@@ -1,184 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"@angular-devkit/build-angular": "~13.1.4",
|
|
3
|
-
"@angular/animations": "~13.1.0",
|
|
4
|
-
"@angular/cdk": "~13.1.3",
|
|
5
|
-
"@angular/cli": "~13.1.4",
|
|
6
|
-
"@angular/common": "~13.1.0",
|
|
7
|
-
"@angular/compiler": "~13.1.0",
|
|
8
|
-
"@angular/compiler-cli": "~13.1.0",
|
|
9
|
-
"@angular/core": "~13.1.0",
|
|
10
|
-
"@angular/forms": "~13.1.0",
|
|
11
|
-
"@angular/material": "~13.1.3",
|
|
12
|
-
"@angular/platform-browser": "~13.1.0",
|
|
13
|
-
"@angular/platform-browser-dynamic": "~13.1.0",
|
|
14
|
-
"@angular/pwa": "~13.1.4",
|
|
15
|
-
"@angular/router": "~13.1.0",
|
|
16
|
-
"@angular/service-worker": "~13.1.0",
|
|
17
|
-
"@mdi/js": "5.8.55",
|
|
18
|
-
"@ngrx/component-store": "~13.0.2",
|
|
19
|
-
"@ngrx/data": "~13.0.2",
|
|
20
|
-
"@ngrx/effects": "~13.0.2",
|
|
21
|
-
"@ngrx/entity": "~13.0.2",
|
|
22
|
-
"@ngrx/router-store": "~13.0.2",
|
|
23
|
-
"@ngrx/schematics": "~13.0.2",
|
|
24
|
-
"@ngrx/store": "~13.0.2",
|
|
25
|
-
"@ngrx/store-devtools": "~13.0.2",
|
|
26
|
-
"@types/chai": "4.1.2",
|
|
27
|
-
"@types/chokidar": "2.1.3",
|
|
28
|
-
"@types/dateformat": "1.0.1",
|
|
29
|
-
"@types/diff": "3.2.2",
|
|
30
|
-
"@types/express": "4.11.0",
|
|
31
|
-
"@types/express-fileupload": "0.1.1",
|
|
32
|
-
"@types/fs-extra": "7.0.0",
|
|
33
|
-
"@types/glob": "5.0.35",
|
|
34
|
-
"@types/http-proxy": "1.16.0",
|
|
35
|
-
"@types/http-proxy-middleware": "0.19.2",
|
|
36
|
-
"@types/inquirer": "7.3.1",
|
|
37
|
-
"@types/json-stringify-safe": "5.0.0",
|
|
38
|
-
"@types/json5": "0.0.29",
|
|
39
|
-
"@types/lockfile": "1.0.0",
|
|
40
|
-
"@types/lodash": "4.14.92",
|
|
41
|
-
"@types/lowdb": "1.0.6",
|
|
42
|
-
"@types/mocha": "5.2.5",
|
|
43
|
-
"@types/node": "14.18.9",
|
|
44
|
-
"@types/node-notifier": "5.4.0",
|
|
45
|
-
"@types/oauth2orize": "1.8.0",
|
|
46
|
-
"@types/password-hash": "1.2.19",
|
|
47
|
-
"@types/progress": "2.0.3",
|
|
48
|
-
"@types/q": "1.5.5",
|
|
49
|
-
"@types/rimraf": "2.0.2",
|
|
50
|
-
"@types/systeminformation": "3.23.0",
|
|
51
|
-
"@types/vinyl": "2.0.2",
|
|
52
|
-
"@types/watch": "1.0.0",
|
|
53
|
-
"accepts": "1.3.4",
|
|
54
|
-
"angular-tree-component": "7.0.0",
|
|
55
|
-
"axios": "0.17.1",
|
|
56
|
-
"background-worker-process": "~0.0.35",
|
|
57
|
-
"bcryptjs": "2.4.3",
|
|
58
|
-
"body-parser": "1.18.2",
|
|
59
|
-
"bootstrap": "5.1.3",
|
|
60
|
-
"bs4-breakpoint": "~2.0.40",
|
|
61
|
-
"buffer-shims": "1.0.0",
|
|
62
|
-
"button-dropdown": "~1.0.45",
|
|
63
|
-
"callsite-record": "4.1.3",
|
|
64
|
-
"chai": "4.2.0",
|
|
65
|
-
"check-node-version": "3.2.0",
|
|
66
|
-
"cheerio": "1.0.0-rc.3",
|
|
67
|
-
"chokidar": "3.5.1",
|
|
68
|
-
"circular-json": "0.5.1",
|
|
69
|
-
"command-exists": "1.2.2",
|
|
70
|
-
"compression": "1.7.4",
|
|
71
|
-
"concurrently": "3.5.1",
|
|
72
|
-
"content-type": "1.0.4",
|
|
73
|
-
"cookie-parser": "1.4.3",
|
|
74
|
-
"copy-paste": "1.3.0",
|
|
75
|
-
"cors": "2.8.4",
|
|
76
|
-
"cpr": "3.0.1",
|
|
77
|
-
"cross-spawn": "7.0.3",
|
|
78
|
-
"dateformat": "3.0.3",
|
|
79
|
-
"detect-mocha": "0.1.0",
|
|
80
|
-
"diff": "3.2.0",
|
|
81
|
-
"element-resize-detector": "1.1.15",
|
|
82
|
-
"enquirer": "2.3.0",
|
|
83
|
-
"enum-values": "1.2.1",
|
|
84
|
-
"errorhandler": "1.5.0",
|
|
85
|
-
"eslint": "7.13.0",
|
|
86
|
-
"eslint-plugin-import": "2.22.1",
|
|
87
|
-
"eslint-plugin-jsdoc": "30.7.8",
|
|
88
|
-
"eslint-plugin-prefer-arrow": "1.2.2",
|
|
89
|
-
"express": "4.16.3",
|
|
90
|
-
"express-fileupload": "0.4.0",
|
|
91
|
-
"fbgraph": "1.4.1",
|
|
92
|
-
"file-loader": "1.1.5",
|
|
93
|
-
"fkill": "6.1.0",
|
|
94
|
-
"font-awesome": "4.7.0",
|
|
95
|
-
"fs-extra": "8.1.0",
|
|
96
|
-
"fuzzy": "0.1.3",
|
|
97
|
-
"glob": "7.1.2",
|
|
98
|
-
"gulp": "3.9.1",
|
|
99
|
-
"hostile": "1.3.3",
|
|
100
|
-
"http-proxy": "1.16.2",
|
|
101
|
-
"http-proxy-middleware": "0.19.1",
|
|
102
|
-
"http-server": "0.11.1",
|
|
103
|
-
"incremental-compiler": "~1.1.53",
|
|
104
|
-
"inquirer": "7.3.3",
|
|
105
|
-
"inquirer-autocomplete-prompt": "1.3.0",
|
|
106
|
-
"is-elevated": "3.0.0",
|
|
107
|
-
"istanbul-instrumenter-loader": "2.0.0",
|
|
108
|
-
"json10": "~1.0.34",
|
|
109
|
-
"json5-writer": "0.2.0",
|
|
110
|
-
"karma-cli": "1.0.1",
|
|
111
|
-
"lnk": "1.0.1",
|
|
112
|
-
"lockfile": "1.0.4",
|
|
113
|
-
"lodash": "4.17.4",
|
|
114
|
-
"lodash-walk-object": "~1.0.35",
|
|
115
|
-
"lowdb": "1.0.0",
|
|
116
|
-
"magic-renamer": "~0.0.20",
|
|
117
|
-
"material-design-icons": "3.0.1",
|
|
118
|
-
"method-override": "2.3.10",
|
|
119
|
-
"minimist": "1.2.0",
|
|
120
|
-
"mkdirp": "0.5.1",
|
|
121
|
-
"mocha": "5.2.0",
|
|
122
|
-
"moment": "2.22.2",
|
|
123
|
-
"morphi": "~4.0.54",
|
|
124
|
-
"ng-modal-lib": "0.0.6",
|
|
125
|
-
"ng-talkback": "~2.4.25",
|
|
126
|
-
"ng2-file-upload": "1.3.0",
|
|
127
|
-
"ng2-logger": "~8.0.20",
|
|
128
|
-
"ng2-rest": "~11.0.42",
|
|
129
|
-
"ng4-icons": "~0.0.30",
|
|
130
|
-
"ng4-modal": "~0.0.30",
|
|
131
|
-
"ngx-breadcrumbs": "0.0.3",
|
|
132
|
-
"ngx-store": "2.1.0",
|
|
133
|
-
"node-cli-test": "0.0.2",
|
|
134
|
-
"node-cli-tester": "~0.0.22",
|
|
135
|
-
"node-localstorage": "2.1.6",
|
|
136
|
-
"node-notifier": "6.0.0",
|
|
137
|
-
"nodemon": "1.14.11",
|
|
138
|
-
"npm-get-dependents": "1.0.1",
|
|
139
|
-
"npm-run": "4.1.2",
|
|
140
|
-
"omelette": "0.4.5",
|
|
141
|
-
"open": "7.2.1",
|
|
142
|
-
"ora": "3.4.0",
|
|
143
|
-
"passport": "0.3.2",
|
|
144
|
-
"passport-http-bearer": "1.0.1",
|
|
145
|
-
"password-hash": "1.2.2",
|
|
146
|
-
"portfinder": "1.0.21",
|
|
147
|
-
"progress": "2.0.3",
|
|
148
|
-
"prompts": "0.1.8",
|
|
149
|
-
"ps-list": "6.1.0",
|
|
150
|
-
"ps-node": "0.1.6",
|
|
151
|
-
"q": "1.5.1",
|
|
152
|
-
"record-replay-req-res-scenario": "~0.0.26",
|
|
153
|
-
"reflect-metadata": "0.1.10",
|
|
154
|
-
"rimraf": "2.6.2",
|
|
155
|
-
"rxjs": "~7.4.0",
|
|
156
|
-
"simple-git": "1.96.0",
|
|
157
|
-
"sloc": "0.2.0",
|
|
158
|
-
"socket.io": "2.4.1",
|
|
159
|
-
"sort-package-json": "1.11.0",
|
|
160
|
-
"static-columns": "~2.0.17",
|
|
161
|
-
"string-similarity": "4.0.2",
|
|
162
|
-
"sudo-block": "3.0.0",
|
|
163
|
-
"systeminformation": "3.45.7",
|
|
164
|
-
"task.js": "0.1.5",
|
|
165
|
-
"tnp-config": "~1.0.20",
|
|
166
|
-
"tnp-core": "~1.0.35",
|
|
167
|
-
"tnp-db": "~0.0.44",
|
|
168
|
-
"tnp-helpers": "~0.0.73",
|
|
169
|
-
"tnp-models": "~0.0.37",
|
|
170
|
-
"tnp-tools": "~0.0.46",
|
|
171
|
-
"tnp-ui": "~0.0.33",
|
|
172
|
-
"tsickle": "0.26.0",
|
|
173
|
-
"tslib": "~2.3.0",
|
|
174
|
-
"typeorm": "~0.2.7",
|
|
175
|
-
"typescript": "~4.5.2",
|
|
176
|
-
"typescript-class-helpers": "~1.0.42",
|
|
177
|
-
"typescript-formatter": "~7.2.2",
|
|
178
|
-
"underscore": "1.9.1",
|
|
179
|
-
"uuid": "8.3.2",
|
|
180
|
-
"validator": "9.2.0",
|
|
181
|
-
"vpn-split": "~0.0.18",
|
|
182
|
-
"watch": "1.0.2",
|
|
183
|
-
"zone.js": "~0.11.4"
|
|
184
|
-
}
|
package/package.json_tnp.json5
DELETED
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
resources: ["README.md", "screen.png", "server.png"],
|
|
3
|
-
|
|
4
|
-
overrided: {
|
|
5
|
-
includeAsDev: [],
|
|
6
|
-
|
|
7
|
-
includeOnly: [
|
|
8
|
-
"chalk",
|
|
9
|
-
"json-stringify-safe",
|
|
10
|
-
"json5",
|
|
11
|
-
"randomcolor",
|
|
12
|
-
"tnp-config",
|
|
13
|
-
],
|
|
14
|
-
|
|
15
|
-
dependencies: {},
|
|
16
|
-
ignoreDepsPattern: [],
|
|
17
|
-
linkedFolders: [],
|
|
18
|
-
npmFixes: [],
|
|
19
|
-
},
|
|
20
|
-
|
|
21
|
-
smartContainerBuildTarget: '',
|
|
22
|
-
linkedRepos: [],
|
|
23
|
-
|
|
24
|
-
libReleaseOptions: {
|
|
25
|
-
nodts: false,
|
|
26
|
-
obscure: false,
|
|
27
|
-
ugly: false,
|
|
28
|
-
includeNodeModules: false,
|
|
29
|
-
cliBuildNoDts: false,
|
|
30
|
-
cliBuildObscure: false,
|
|
31
|
-
cliBuildIncludeNodeModules: false,
|
|
32
|
-
cliBuildUglify: false,
|
|
33
|
-
},
|
|
34
|
-
|
|
35
|
-
smartContainerTarget: '',
|
|
36
|
-
type: "isomorphic-lib",
|
|
37
|
-
version: 'v4',
|
|
38
|
-
additionalNpmNames: ["firedev-logger"],
|
|
39
|
-
description: "isomorphic logger for browser/server in typescript",
|
|
40
|
-
license: "MIT",
|
|
41
|
-
private: false,
|
|
42
|
-
|
|
43
|
-
author: {
|
|
44
|
-
name: "Dariusz Filipiak",
|
|
45
|
-
},
|
|
46
|
-
|
|
47
|
-
homepage: "https://github.com/darekf77/ng2-logger#readme",
|
|
48
|
-
|
|
49
|
-
keywords: [
|
|
50
|
-
"isomorphic",
|
|
51
|
-
"logger",
|
|
52
|
-
"logging",
|
|
53
|
-
"logowanie",
|
|
54
|
-
"log",
|
|
55
|
-
"typescript",
|
|
56
|
-
],
|
|
57
|
-
}
|