ng2-logger 16.100.3 → 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 -35
- package/firedev.jsonc +48 -0
- package/package.json +3 -4
- package/tmp-environment.json +39 -39
- package/websql/README.md +24 -24
- package/package.json_devDependencies.json +0 -184
- package/package.json_tnp.json5 +0 -58
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
|
@@ -19,7 +19,6 @@
|
|
|
19
19
|
"linkedFolders": [],
|
|
20
20
|
"npmFixes": []
|
|
21
21
|
},
|
|
22
|
-
"linkedProjects": [],
|
|
23
22
|
"smartContainerBuildTarget": "",
|
|
24
23
|
"linkedRepos": [],
|
|
25
24
|
"libReleaseOptions": {
|
|
@@ -55,7 +54,7 @@
|
|
|
55
54
|
]
|
|
56
55
|
},
|
|
57
56
|
"name": "ng2-logger",
|
|
58
|
-
"version": "16.100.
|
|
57
|
+
"version": "16.100.5",
|
|
59
58
|
"description": "isomorphic logger for browser/server in typescript",
|
|
60
59
|
"repository": {
|
|
61
60
|
"type": "git",
|
|
@@ -85,11 +84,11 @@
|
|
|
85
84
|
"json-stringify-safe": "5.0.1",
|
|
86
85
|
"json5": "2.2.1",
|
|
87
86
|
"randomcolor": "0.5.3",
|
|
88
|
-
"tnp-config": "
|
|
87
|
+
"tnp-config": "16.100.5"
|
|
89
88
|
},
|
|
90
89
|
"license": "MIT",
|
|
91
90
|
"private": false,
|
|
92
|
-
"lastBuildTagHash": "
|
|
91
|
+
"lastBuildTagHash": "c3a7c52afb6533305d89cf319b274ced4eb3bb29",
|
|
93
92
|
"peerDependencies": {},
|
|
94
93
|
"devDependencies": {
|
|
95
94
|
"@angular-builders/custom-webpack": "~16.0.2-beta.2",
|
|
@@ -154,7 +153,6 @@
|
|
|
154
153
|
"@types/json5": "0.0.29",
|
|
155
154
|
"@types/lockfile": "1.0.0",
|
|
156
155
|
"@types/lodash": "4.14.92",
|
|
157
|
-
"@types/lowdb": "1.0.6",
|
|
158
156
|
"@types/mocha": "5.2.5",
|
|
159
157
|
"@types/node": "16.18.21",
|
|
160
158
|
"@types/node-notifier": "5.4.0",
|
|
@@ -173,9 +171,9 @@
|
|
|
173
171
|
"angular-material-css-vars": "5.0.2",
|
|
174
172
|
"angular-resize-event": "3.2.0",
|
|
175
173
|
"animate.css": "4.1.1 ",
|
|
176
|
-
"any-project-cli": "
|
|
174
|
+
"any-project-cli": "16.100.4",
|
|
177
175
|
"axios": "1.3.5",
|
|
178
|
-
"background-worker-process": "
|
|
176
|
+
"background-worker-process": "16.100.4",
|
|
179
177
|
"base32": "0.0.7",
|
|
180
178
|
"bcryptjs": "2.4.3",
|
|
181
179
|
"better-sqlite3": "9.5.0",
|
|
@@ -222,19 +220,20 @@
|
|
|
222
220
|
"file-saver": "2.0.5",
|
|
223
221
|
"file-type": "18.5.0",
|
|
224
222
|
"firedev": "^16",
|
|
225
|
-
"firedev-crud": "
|
|
226
|
-
"firedev-crud-deamon": "
|
|
227
|
-
"firedev-ports": "
|
|
228
|
-
"firedev-storage": "
|
|
229
|
-
"firedev-type-sql": "
|
|
230
|
-
"firedev-typeorm": "
|
|
231
|
-
"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",
|
|
232
230
|
"fkill": "6.1.0",
|
|
233
231
|
"font-awesome": "4.7.0",
|
|
234
232
|
"form-data": "4.0.0",
|
|
235
233
|
"fs-extra": "8.1.0",
|
|
236
234
|
"fuzzy": "0.1.3",
|
|
237
235
|
"glob": "7.1.2",
|
|
236
|
+
"google-libphonenumber": "3.2.25",
|
|
238
237
|
"gulp": "3.9.1",
|
|
239
238
|
"helmet": "7.0.0",
|
|
240
239
|
"hostile": "1.3.3",
|
|
@@ -245,11 +244,11 @@
|
|
|
245
244
|
"image-focus": "1.2.1",
|
|
246
245
|
"immer": "10.0.2",
|
|
247
246
|
"immutable": "4.3.0",
|
|
248
|
-
"incremental-compiler": "
|
|
247
|
+
"incremental-compiler": "16.100.4",
|
|
249
248
|
"inquirer": "7.3.3",
|
|
250
249
|
"inquirer-autocomplete-prompt": "1.3.0",
|
|
251
250
|
"is-elevated": "3.0.0",
|
|
252
|
-
"isomorphic-region-loader": "
|
|
251
|
+
"isomorphic-region-loader": "16.100.4",
|
|
253
252
|
"istanbul-instrumenter-loader": "2.0.0",
|
|
254
253
|
"jest": "29.5.0",
|
|
255
254
|
"jest-date-mock": "1.0.8",
|
|
@@ -259,8 +258,8 @@
|
|
|
259
258
|
"jimp": "0.22.8",
|
|
260
259
|
"joi": "17.9.2",
|
|
261
260
|
"jscodeshift": "0.6.3",
|
|
262
|
-
"json10": "
|
|
263
|
-
"json10-writer": "
|
|
261
|
+
"json10": "16.100.3",
|
|
262
|
+
"json10-writer": "16.100.4",
|
|
264
263
|
"json5-writer": "0.2.0",
|
|
265
264
|
"jszip": "3.10.1",
|
|
266
265
|
"karma-cli": "1.0.1",
|
|
@@ -268,23 +267,23 @@
|
|
|
268
267
|
"localforage": "1.10.0",
|
|
269
268
|
"lockfile": "1.0.4",
|
|
270
269
|
"lodash": "4.17.20",
|
|
271
|
-
"lodash-walk-object": "
|
|
272
|
-
"lowdb": "
|
|
273
|
-
"magic-renamer": "
|
|
270
|
+
"lodash-walk-object": "16.100.3",
|
|
271
|
+
"lowdb": "7.0.1",
|
|
272
|
+
"magic-renamer": "16.100.4",
|
|
274
273
|
"material-design-icons": "3.0.1",
|
|
275
274
|
"method-override": "2.3.10",
|
|
276
275
|
"minimist": "1.2.0",
|
|
277
276
|
"mkdirp": "0.5.1",
|
|
278
277
|
"mocha": "10.2.0",
|
|
279
278
|
"moment": "2.29.3",
|
|
280
|
-
"morphi": "~16.5.17",
|
|
281
279
|
"ng-for-track-by-property": "16.0.1",
|
|
282
280
|
"ng-in-viewport": "15.0.2",
|
|
283
281
|
"ng-lock": "16.0.1",
|
|
284
282
|
"ng-packagr": "16.0.1",
|
|
285
|
-
"ng-talkback": "
|
|
286
|
-
"ng2-logger": "
|
|
287
|
-
"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",
|
|
288
287
|
"ngx-ace-wrapper": "14.0.0",
|
|
289
288
|
"ngx-editor": "15.3.0",
|
|
290
289
|
"ngx-highlightjs": "9.0.0",
|
|
@@ -297,7 +296,7 @@
|
|
|
297
296
|
"ngx-scrolltop": "6.0.0",
|
|
298
297
|
"ngx-store": "3.1.1",
|
|
299
298
|
"ngx-typed-js": "2.1.1",
|
|
300
|
-
"node-cli-tester": "
|
|
299
|
+
"node-cli-tester": "16.100.3",
|
|
301
300
|
"node-localstorage": "2.1.6",
|
|
302
301
|
"node-notifier": "6.0.0",
|
|
303
302
|
"node-polyfill-webpack-plugin": "2.0.1",
|
|
@@ -324,7 +323,7 @@
|
|
|
324
323
|
"ps-node": "0.1.6",
|
|
325
324
|
"q": "1.5.1",
|
|
326
325
|
"rallax.js": "2.0.4",
|
|
327
|
-
"record-replay-req-res-scenario": "
|
|
326
|
+
"record-replay-req-res-scenario": "16.100.3",
|
|
328
327
|
"reflect-metadata": "0.1.10",
|
|
329
328
|
"rimraf": "2.6.2",
|
|
330
329
|
"rxjs": "~7.8.0",
|
|
@@ -335,7 +334,7 @@
|
|
|
335
334
|
"socket.io": "2.4.1",
|
|
336
335
|
"sort-package-json": "1.11.0",
|
|
337
336
|
"sql.js": "1.8.0",
|
|
338
|
-
"static-columns": "
|
|
337
|
+
"static-columns": "16.100.3",
|
|
339
338
|
"string-similarity": "4.0.2",
|
|
340
339
|
"sudo-block": "3.0.0",
|
|
341
340
|
"supertest": "6.3.3",
|
|
@@ -343,25 +342,26 @@
|
|
|
343
342
|
"systeminformation": "3.45.7",
|
|
344
343
|
"task.js": "0.1.5",
|
|
345
344
|
"threads": "1.7.0",
|
|
346
|
-
"tnp-cli": "
|
|
347
|
-
"tnp-core": "
|
|
348
|
-
"tnp-db": "
|
|
349
|
-
"tnp-helpers": "
|
|
350
|
-
"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",
|
|
351
350
|
"ts-debug": "1.3.0",
|
|
351
|
+
"ts-json-schema-generator": "2.1.1",
|
|
352
352
|
"ts-loader": "2.3.1",
|
|
353
353
|
"ts-node": "10.9.1",
|
|
354
354
|
"tslib": "~2.3.0",
|
|
355
355
|
"tslint": "5.9.1",
|
|
356
356
|
"turndown": "7.1.2",
|
|
357
357
|
"typescript": "~5.0.2",
|
|
358
|
-
"typescript-class-helpers": "~16.100.
|
|
358
|
+
"typescript-class-helpers": "~16.100.4",
|
|
359
359
|
"typescript-formatter": "~7.2.2",
|
|
360
360
|
"underscore": "1.9.1",
|
|
361
361
|
"uuid": "8.3.2",
|
|
362
362
|
"validator": "9.2.0",
|
|
363
363
|
"video.js": "8.3.0",
|
|
364
|
-
"vpn-split": "
|
|
364
|
+
"vpn-split": "16.100.3",
|
|
365
365
|
"watch": "1.0.2",
|
|
366
366
|
"webpack": "~5.80",
|
|
367
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
|
@@ -19,7 +19,6 @@
|
|
|
19
19
|
"linkedFolders": [],
|
|
20
20
|
"npmFixes": []
|
|
21
21
|
},
|
|
22
|
-
"linkedProjects": [],
|
|
23
22
|
"smartContainerBuildTarget": "",
|
|
24
23
|
"linkedRepos": [],
|
|
25
24
|
"libReleaseOptions": {
|
|
@@ -55,7 +54,7 @@
|
|
|
55
54
|
]
|
|
56
55
|
},
|
|
57
56
|
"name": "ng2-logger",
|
|
58
|
-
"version": "16.100.
|
|
57
|
+
"version": "16.100.5",
|
|
59
58
|
"description": "isomorphic logger for browser/server in typescript",
|
|
60
59
|
"repository": {
|
|
61
60
|
"type": "git",
|
|
@@ -85,11 +84,11 @@
|
|
|
85
84
|
"json-stringify-safe": "5.0.1",
|
|
86
85
|
"json5": "2.2.1",
|
|
87
86
|
"randomcolor": "0.5.3",
|
|
88
|
-
"tnp-config": "
|
|
87
|
+
"tnp-config": "16.100.5"
|
|
89
88
|
},
|
|
90
89
|
"license": "MIT",
|
|
91
90
|
"private": false,
|
|
92
|
-
"lastBuildTagHash": "
|
|
91
|
+
"lastBuildTagHash": "c3a7c52afb6533305d89cf319b274ced4eb3bb29",
|
|
93
92
|
"peerDependencies": {},
|
|
94
93
|
"devDependencies": {},
|
|
95
94
|
"main": "dist/app.electron.js"
|
package/tmp-environment.json
CHANGED
|
@@ -23,7 +23,6 @@
|
|
|
23
23
|
"linkedFolders": [],
|
|
24
24
|
"npmFixes": []
|
|
25
25
|
},
|
|
26
|
-
"linkedProjects": [],
|
|
27
26
|
"smartContainerBuildTarget": "",
|
|
28
27
|
"linkedRepos": [],
|
|
29
28
|
"libReleaseOptions": {
|
|
@@ -59,7 +58,7 @@
|
|
|
59
58
|
]
|
|
60
59
|
},
|
|
61
60
|
"name": "ng2-logger",
|
|
62
|
-
"version": "16.100.
|
|
61
|
+
"version": "16.100.5",
|
|
63
62
|
"description": "isomorphic logger for browser/server in typescript",
|
|
64
63
|
"repository": {
|
|
65
64
|
"type": "git",
|
|
@@ -89,11 +88,11 @@
|
|
|
89
88
|
"json-stringify-safe": "5.0.1",
|
|
90
89
|
"json5": "2.2.1",
|
|
91
90
|
"randomcolor": "0.5.3",
|
|
92
|
-
"tnp-config": "
|
|
91
|
+
"tnp-config": "16.100.5"
|
|
93
92
|
},
|
|
94
93
|
"license": "MIT",
|
|
95
94
|
"private": false,
|
|
96
|
-
"lastBuildTagHash": "
|
|
95
|
+
"lastBuildTagHash": "c3a7c52afb6533305d89cf319b274ced4eb3bb29",
|
|
97
96
|
"peerDependencies": {},
|
|
98
97
|
"devDependencies": {
|
|
99
98
|
"@angular-builders/custom-webpack": "~16.0.2-beta.2",
|
|
@@ -158,7 +157,6 @@
|
|
|
158
157
|
"@types/json5": "0.0.29",
|
|
159
158
|
"@types/lockfile": "1.0.0",
|
|
160
159
|
"@types/lodash": "4.14.92",
|
|
161
|
-
"@types/lowdb": "1.0.6",
|
|
162
160
|
"@types/mocha": "5.2.5",
|
|
163
161
|
"@types/node": "16.18.21",
|
|
164
162
|
"@types/node-notifier": "5.4.0",
|
|
@@ -177,9 +175,9 @@
|
|
|
177
175
|
"angular-material-css-vars": "5.0.2",
|
|
178
176
|
"angular-resize-event": "3.2.0",
|
|
179
177
|
"animate.css": "4.1.1 ",
|
|
180
|
-
"any-project-cli": "
|
|
178
|
+
"any-project-cli": "16.100.4",
|
|
181
179
|
"axios": "1.3.5",
|
|
182
|
-
"background-worker-process": "
|
|
180
|
+
"background-worker-process": "16.100.4",
|
|
183
181
|
"base32": "0.0.7",
|
|
184
182
|
"bcryptjs": "2.4.3",
|
|
185
183
|
"better-sqlite3": "9.5.0",
|
|
@@ -226,19 +224,20 @@
|
|
|
226
224
|
"file-saver": "2.0.5",
|
|
227
225
|
"file-type": "18.5.0",
|
|
228
226
|
"firedev": "^16",
|
|
229
|
-
"firedev-crud": "
|
|
230
|
-
"firedev-crud-deamon": "
|
|
231
|
-
"firedev-ports": "
|
|
232
|
-
"firedev-storage": "
|
|
233
|
-
"firedev-type-sql": "
|
|
234
|
-
"firedev-typeorm": "
|
|
235
|
-
"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",
|
|
236
234
|
"fkill": "6.1.0",
|
|
237
235
|
"font-awesome": "4.7.0",
|
|
238
236
|
"form-data": "4.0.0",
|
|
239
237
|
"fs-extra": "8.1.0",
|
|
240
238
|
"fuzzy": "0.1.3",
|
|
241
239
|
"glob": "7.1.2",
|
|
240
|
+
"google-libphonenumber": "3.2.25",
|
|
242
241
|
"gulp": "3.9.1",
|
|
243
242
|
"helmet": "7.0.0",
|
|
244
243
|
"hostile": "1.3.3",
|
|
@@ -249,11 +248,11 @@
|
|
|
249
248
|
"image-focus": "1.2.1",
|
|
250
249
|
"immer": "10.0.2",
|
|
251
250
|
"immutable": "4.3.0",
|
|
252
|
-
"incremental-compiler": "
|
|
251
|
+
"incremental-compiler": "16.100.4",
|
|
253
252
|
"inquirer": "7.3.3",
|
|
254
253
|
"inquirer-autocomplete-prompt": "1.3.0",
|
|
255
254
|
"is-elevated": "3.0.0",
|
|
256
|
-
"isomorphic-region-loader": "
|
|
255
|
+
"isomorphic-region-loader": "16.100.4",
|
|
257
256
|
"istanbul-instrumenter-loader": "2.0.0",
|
|
258
257
|
"jest": "29.5.0",
|
|
259
258
|
"jest-date-mock": "1.0.8",
|
|
@@ -263,8 +262,8 @@
|
|
|
263
262
|
"jimp": "0.22.8",
|
|
264
263
|
"joi": "17.9.2",
|
|
265
264
|
"jscodeshift": "0.6.3",
|
|
266
|
-
"json10": "
|
|
267
|
-
"json10-writer": "
|
|
265
|
+
"json10": "16.100.3",
|
|
266
|
+
"json10-writer": "16.100.4",
|
|
268
267
|
"json5-writer": "0.2.0",
|
|
269
268
|
"jszip": "3.10.1",
|
|
270
269
|
"karma-cli": "1.0.1",
|
|
@@ -272,23 +271,23 @@
|
|
|
272
271
|
"localforage": "1.10.0",
|
|
273
272
|
"lockfile": "1.0.4",
|
|
274
273
|
"lodash": "4.17.20",
|
|
275
|
-
"lodash-walk-object": "
|
|
276
|
-
"lowdb": "
|
|
277
|
-
"magic-renamer": "
|
|
274
|
+
"lodash-walk-object": "16.100.3",
|
|
275
|
+
"lowdb": "7.0.1",
|
|
276
|
+
"magic-renamer": "16.100.4",
|
|
278
277
|
"material-design-icons": "3.0.1",
|
|
279
278
|
"method-override": "2.3.10",
|
|
280
279
|
"minimist": "1.2.0",
|
|
281
280
|
"mkdirp": "0.5.1",
|
|
282
281
|
"mocha": "10.2.0",
|
|
283
282
|
"moment": "2.29.3",
|
|
284
|
-
"morphi": "~16.5.17",
|
|
285
283
|
"ng-for-track-by-property": "16.0.1",
|
|
286
284
|
"ng-in-viewport": "15.0.2",
|
|
287
285
|
"ng-lock": "16.0.1",
|
|
288
286
|
"ng-packagr": "16.0.1",
|
|
289
|
-
"ng-talkback": "
|
|
290
|
-
"ng2-logger": "
|
|
291
|
-
"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",
|
|
292
291
|
"ngx-ace-wrapper": "14.0.0",
|
|
293
292
|
"ngx-editor": "15.3.0",
|
|
294
293
|
"ngx-highlightjs": "9.0.0",
|
|
@@ -301,7 +300,7 @@
|
|
|
301
300
|
"ngx-scrolltop": "6.0.0",
|
|
302
301
|
"ngx-store": "3.1.1",
|
|
303
302
|
"ngx-typed-js": "2.1.1",
|
|
304
|
-
"node-cli-tester": "
|
|
303
|
+
"node-cli-tester": "16.100.3",
|
|
305
304
|
"node-localstorage": "2.1.6",
|
|
306
305
|
"node-notifier": "6.0.0",
|
|
307
306
|
"node-polyfill-webpack-plugin": "2.0.1",
|
|
@@ -328,7 +327,7 @@
|
|
|
328
327
|
"ps-node": "0.1.6",
|
|
329
328
|
"q": "1.5.1",
|
|
330
329
|
"rallax.js": "2.0.4",
|
|
331
|
-
"record-replay-req-res-scenario": "
|
|
330
|
+
"record-replay-req-res-scenario": "16.100.3",
|
|
332
331
|
"reflect-metadata": "0.1.10",
|
|
333
332
|
"rimraf": "2.6.2",
|
|
334
333
|
"rxjs": "~7.8.0",
|
|
@@ -339,7 +338,7 @@
|
|
|
339
338
|
"socket.io": "2.4.1",
|
|
340
339
|
"sort-package-json": "1.11.0",
|
|
341
340
|
"sql.js": "1.8.0",
|
|
342
|
-
"static-columns": "
|
|
341
|
+
"static-columns": "16.100.3",
|
|
343
342
|
"string-similarity": "4.0.2",
|
|
344
343
|
"sudo-block": "3.0.0",
|
|
345
344
|
"supertest": "6.3.3",
|
|
@@ -347,25 +346,26 @@
|
|
|
347
346
|
"systeminformation": "3.45.7",
|
|
348
347
|
"task.js": "0.1.5",
|
|
349
348
|
"threads": "1.7.0",
|
|
350
|
-
"tnp-cli": "
|
|
351
|
-
"tnp-core": "
|
|
352
|
-
"tnp-db": "
|
|
353
|
-
"tnp-helpers": "
|
|
354
|
-
"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",
|
|
355
354
|
"ts-debug": "1.3.0",
|
|
355
|
+
"ts-json-schema-generator": "2.1.1",
|
|
356
356
|
"ts-loader": "2.3.1",
|
|
357
357
|
"ts-node": "10.9.1",
|
|
358
358
|
"tslib": "~2.3.0",
|
|
359
359
|
"tslint": "5.9.1",
|
|
360
360
|
"turndown": "7.1.2",
|
|
361
361
|
"typescript": "~5.0.2",
|
|
362
|
-
"typescript-class-helpers": "~16.100.
|
|
362
|
+
"typescript-class-helpers": "~16.100.4",
|
|
363
363
|
"typescript-formatter": "~7.2.2",
|
|
364
364
|
"underscore": "1.9.1",
|
|
365
365
|
"uuid": "8.3.2",
|
|
366
366
|
"validator": "9.2.0",
|
|
367
367
|
"video.js": "8.3.0",
|
|
368
|
-
"vpn-split": "
|
|
368
|
+
"vpn-split": "16.100.3",
|
|
369
369
|
"watch": "1.0.2",
|
|
370
370
|
"webpack": "~5.80",
|
|
371
371
|
"webpack-dev-middleware": "~6.0.2",
|
|
@@ -376,14 +376,14 @@
|
|
|
376
376
|
"main": "dist/app.electron.js"
|
|
377
377
|
},
|
|
378
378
|
"build": {
|
|
379
|
-
"number":
|
|
380
|
-
"date": "2024-05-
|
|
381
|
-
"hash": "
|
|
379
|
+
"number": 631,
|
|
380
|
+
"date": "2024-05-20T11:14:24.000Z",
|
|
381
|
+
"hash": "9f8f73e18fbd12b906b49768c3ee0b3ffabdb564"
|
|
382
382
|
},
|
|
383
383
|
"currentProjectName": "ng2-logger",
|
|
384
384
|
"currentProjectGenericName": "ng2-logger",
|
|
385
385
|
"currentProjectType": "isomorphic-lib",
|
|
386
|
-
"currentFrameworkVersion": "16.100.
|
|
386
|
+
"currentFrameworkVersion": "16.100.5",
|
|
387
387
|
"isStandaloneProject": true,
|
|
388
388
|
"isSmartContainer": false,
|
|
389
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,58 +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
|
-
linkedProjects: [],
|
|
22
|
-
smartContainerBuildTarget: '',
|
|
23
|
-
linkedRepos: [],
|
|
24
|
-
|
|
25
|
-
libReleaseOptions: {
|
|
26
|
-
nodts: false,
|
|
27
|
-
obscure: false,
|
|
28
|
-
ugly: false,
|
|
29
|
-
includeNodeModules: false,
|
|
30
|
-
cliBuildNoDts: false,
|
|
31
|
-
cliBuildObscure: false,
|
|
32
|
-
cliBuildIncludeNodeModules: false,
|
|
33
|
-
cliBuildUglify: false,
|
|
34
|
-
},
|
|
35
|
-
|
|
36
|
-
smartContainerTarget: '',
|
|
37
|
-
type: "isomorphic-lib",
|
|
38
|
-
version: 'v4',
|
|
39
|
-
additionalNpmNames: ["firedev-logger"],
|
|
40
|
-
description: "isomorphic logger for browser/server in typescript",
|
|
41
|
-
license: "MIT",
|
|
42
|
-
private: false,
|
|
43
|
-
|
|
44
|
-
author: {
|
|
45
|
-
name: "Dariusz Filipiak",
|
|
46
|
-
},
|
|
47
|
-
|
|
48
|
-
homepage: "https://github.com/darekf77/ng2-logger#readme",
|
|
49
|
-
|
|
50
|
-
keywords: [
|
|
51
|
-
"isomorphic",
|
|
52
|
-
"logger",
|
|
53
|
-
"logging",
|
|
54
|
-
"logowanie",
|
|
55
|
-
"log",
|
|
56
|
-
"typescript",
|
|
57
|
-
],
|
|
58
|
-
}
|