incremental-compiler 18.0.1 → 18.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,13 +1,13 @@
1
- # INCREMENTAL COMPILER
2
-
3
- - lib for any kind incremental compilers, files watchers..
4
- - based on excellent https://github.com/paulmillr/chokidar
5
-
6
- ## Example use case
7
-
8
- - You want to call some function for each file in you folder "src" in you project.
9
- - After you call this function for each file... you are watching this files and
10
- for each file change in "src", you are calling again function for this particular file
11
-
12
-
13
- ### If you have many "files watchers" with "increamntal-compiler" you can create scenario ( IncCompiler.init(...) ) and prevent any kind of "race coditions"
1
+ # INCREMENTAL COMPILER
2
+
3
+ - lib for any kind incremental compilers, files watchers..
4
+ - based on excellent https://github.com/paulmillr/chokidar
5
+
6
+ ## Example use case
7
+
8
+ - You want to call some function for each file in you folder "src" in you project.
9
+ - After you call this function for each file... you are watching this files and
10
+ for each file change in "src", you are calling again function for this particular file
11
+
12
+
13
+ ### If you have many "files watchers" with "increamntal-compiler" you can create scenario ( IncCompiler.init(...) ) and prevent any kind of "race coditions"
@@ -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 (incremental-compiler@18.0.1)
3
+ Assets from this folder are being shipped with this npm package (incremental-compiler@18.0.2)
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.
@@ -0,0 +1,25 @@
1
+ {
2
+ "name": "incremental-compiler",
3
+ "version": "0.0.1",
4
+ "peerDependencies": {
5
+ "@angular/common": "^13.2.0",
6
+ "@angular/core": "^13.2.0"
7
+ },
8
+ "dependencies": {
9
+ "tslib": "^2.3.0"
10
+ },
11
+ "module": "fesm2022/incremental-compiler.mjs",
12
+ "typings": "index.d.ts",
13
+ "exports": {
14
+ "./package.json": {
15
+ "default": "./package.json"
16
+ },
17
+ ".": {
18
+ "types": "./index.d.ts",
19
+ "esm2022": "./esm2022/incremental-compiler.mjs",
20
+ "esm": "./esm2022/incremental-compiler.mjs",
21
+ "default": "./fesm2022/incremental-compiler.mjs"
22
+ }
23
+ },
24
+ "sideEffects": false
25
+ }
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/firedev.jsonc CHANGED
@@ -1,51 +1,51 @@
1
- {
2
- "resources": ["README.md"],
3
-
4
- "overrided": {
5
- "ignoreDepsPattern": [],
6
- "includeAsDev": [],
7
-
8
- "includeOnly": [
9
- "@types/glob",
10
- "glob",
11
- "fs-extra",
12
- "@types/fs-extra",
13
- "chokidar",
14
- "@types/chokidar",
15
- "dateformat",
16
- "@types/dateformat",
17
- "typescript-class-helpers",
18
- "tnp-helpers"
19
- ],
20
-
21
- "dependencies": {},
22
- "linkedFolders": [],
23
- "npmFixes": []
24
- },
25
-
26
- "smartContainerBuildTarget": "",
27
- "linkedRepos": [],
28
-
29
- "libReleaseOptions": {
30
- "nodts": false,
31
- "obscure": false,
32
- "ugly": false,
33
- "includeNodeModules": false,
34
- "cliBuildNoDts": false,
35
- "cliBuildObscure": false,
36
- "cliBuildIncludeNodeModules": false,
37
- "cliBuildUglify": false
38
- },
39
-
40
- "smartContainerTarget": "",
41
- "type": "isomorphic-lib",
42
- "isCoreProject": false,
43
- "useFramework": false,
44
- "version": "v18",
45
- "isGenerated": false,
46
- "license": "MIT",
47
- "private": false,
48
- "main": "index.js",
49
- "workerPlugins": {},
50
- "additionalNpmNames": ["firedev-incremental-watcher"]
1
+ {
2
+ "resources": ["README.md"],
3
+
4
+ "overrided": {
5
+ "ignoreDepsPattern": [],
6
+ "includeAsDev": [],
7
+
8
+ "includeOnly": [
9
+ "@types/glob",
10
+ "glob",
11
+ "fs-extra",
12
+ "@types/fs-extra",
13
+ "chokidar",
14
+ "@types/chokidar",
15
+ "dateformat",
16
+ "@types/dateformat",
17
+ "typescript-class-helpers",
18
+ "tnp-helpers"
19
+ ],
20
+
21
+ "dependencies": {},
22
+ "linkedFolders": [],
23
+ "npmFixes": []
24
+ },
25
+
26
+ "smartContainerBuildTarget": "",
27
+ "linkedRepos": [],
28
+
29
+ "libReleaseOptions": {
30
+ "nodts": false,
31
+ "obscure": false,
32
+ "ugly": false,
33
+ "includeNodeModules": false,
34
+ "cliBuildNoDts": false,
35
+ "cliBuildObscure": false,
36
+ "cliBuildIncludeNodeModules": false,
37
+ "cliBuildUglify": false
38
+ },
39
+
40
+ "smartContainerTarget": "",
41
+ "type": "isomorphic-lib",
42
+ "isCoreProject": false,
43
+ "useFramework": false,
44
+ "version": "v18",
45
+ "isGenerated": false,
46
+ "license": "MIT",
47
+ "private": false,
48
+ "main": "index.js",
49
+ "workerPlugins": {},
50
+ "additionalNpmNames": ["firedev-incremental-watcher"]
51
51
  }
package/package.json CHANGED
@@ -49,22 +49,22 @@
49
49
  ]
50
50
  },
51
51
  "name": "incremental-compiler",
52
- "version": "18.0.1",
52
+ "version": "18.0.2",
53
53
  "license": "MIT",
54
54
  "dependencies": {
55
55
  "@types/chokidar": "2.1.3",
56
56
  "@types/dateformat": "1.0.1",
57
57
  "@types/fs-extra": "11.0.4",
58
58
  "@types/glob": "5.0.35",
59
- "chokidar": "2.1.8",
59
+ "chokidar": "3.5.3",
60
60
  "dateformat": "3.0.3",
61
61
  "fs-extra": "11.1.1",
62
62
  "glob": "7.1.2",
63
- "tnp-helpers": "~16.444.25",
64
- "typescript-class-helpers": "~16.444.15"
63
+ "tnp-helpers": "~18.0.2",
64
+ "typescript-class-helpers": "~18.0.3"
65
65
  },
66
66
  "private": false,
67
- "lastBuildTagHash": "19d3fb109a9b4ae2135b9def9a28ccd52b36ccd7",
67
+ "lastBuildTagHash": "c25fdaf8f2eb2456ae0981bc70f6552707c59c7b",
68
68
  "devDependencies": {},
69
- "main": "dist/app.electron.js"
69
+ "main": "index.js"
70
70
  }
@@ -53,22 +53,22 @@
53
53
  ]
54
54
  },
55
55
  "name": "incremental-compiler",
56
- "version": "18.0.1",
56
+ "version": "18.0.2",
57
57
  "license": "MIT",
58
58
  "dependencies": {
59
59
  "@types/chokidar": "2.1.3",
60
60
  "@types/dateformat": "1.0.1",
61
61
  "@types/fs-extra": "11.0.4",
62
62
  "@types/glob": "5.0.35",
63
- "chokidar": "2.1.8",
63
+ "chokidar": "3.5.3",
64
64
  "dateformat": "3.0.3",
65
65
  "fs-extra": "11.1.1",
66
66
  "glob": "7.1.2",
67
- "tnp-helpers": "~16.444.25",
68
- "typescript-class-helpers": "~16.444.15"
67
+ "tnp-helpers": "~18.0.2",
68
+ "typescript-class-helpers": "~18.0.3"
69
69
  },
70
70
  "private": false,
71
- "lastBuildTagHash": "19d3fb109a9b4ae2135b9def9a28ccd52b36ccd7",
71
+ "lastBuildTagHash": "c25fdaf8f2eb2456ae0981bc70f6552707c59c7b",
72
72
  "devDependencies": {
73
73
  "@angular-builders/custom-webpack": "~18.0.0",
74
74
  "@angular-devkit/build-angular": "~18.1.4",
@@ -152,7 +152,7 @@
152
152
  "angular-material-css-vars": "7.0.0",
153
153
  "angular-resize-event": "3.2.0",
154
154
  "animate.css": "4.1.1",
155
- "any-project-cli": "~16.444.12",
155
+ "any-project-cli": "~18.0.1",
156
156
  "app-root-path": "3.1.0",
157
157
  "axios": "1.7.3",
158
158
  "background-worker-process": "~16.100.10",
@@ -164,7 +164,7 @@
164
164
  "bun": "1.1.22",
165
165
  "callsite-record": "4.1.5",
166
166
  "chai": "4.5.0",
167
- "chalk": "1.1.3",
167
+ "chalk": "2.3.2",
168
168
  "check-node-version": "3.2.0",
169
169
  "cheerio": "1.0.0",
170
170
  "circular-json": "0.5.1",
@@ -207,10 +207,10 @@
207
207
  "file-type": "19.1.1",
208
208
  "firedev": "^18",
209
209
  "firedev-crud": "~16.444.15",
210
- "firedev-crud-deamon": "~16.444.15",
210
+ "firedev-crud-deamon": "~18.0.1",
211
211
  "firedev-ports": "~16.444.15",
212
212
  "firedev-storage": "~16.444.11",
213
- "firedev-type-sql": "~16.444.15",
213
+ "firedev-type-sql": "~18.0.1",
214
214
  "firedev-typeorm": "~16.444.11",
215
215
  "firedev-ui": "~16.444.1",
216
216
  "fkill": "6.1.0",
@@ -228,11 +228,11 @@
228
228
  "image-focus": "1.2.1",
229
229
  "immer": "10.0.2",
230
230
  "immutable": "4.3.7",
231
- "incremental-compiler": "~16.444.16",
231
+ "incremental-compiler": "~18.0.1",
232
232
  "inquirer": "7.3.3",
233
233
  "inquirer-autocomplete-prompt": "1.3.0",
234
234
  "is-elevated": "3.0.0",
235
- "isomorphic-region-loader": "~16.444.15",
235
+ "isomorphic-region-loader": "~18.0.1",
236
236
  "istanbul-instrumenter-loader": "3.0.1",
237
237
  "jest": "29.7.0",
238
238
  "jest-date-mock": "1.0.10",
@@ -243,19 +243,19 @@
243
243
  "joi": "17.13.3",
244
244
  "jscodeshift": "0.6.3",
245
245
  "json-stringify-safe": "5.0.1",
246
- "json10": "~16.444.15",
247
- "json10-writer": "~16.444.15",
246
+ "json10": "~18.0.1",
247
+ "json10-writer": "~18.0.2",
248
248
  "json5": "2.2.3",
249
249
  "json5-writer": "0.2.0",
250
250
  "jszip": "3.10.1",
251
- "karma-cli": "0.1.2",
251
+ "karma-cli": "1.0.1",
252
252
  "lnk": "1.0.1",
253
253
  "localforage": "1.10.0",
254
254
  "lockfile": "1.0.4",
255
255
  "lodash": "4.17.21",
256
- "lodash-walk-object": "~16.444.14",
256
+ "lodash-walk-object": "~18.0.1",
257
257
  "lowdb": "7.0.1",
258
- "magic-renamer": "~16.444.14",
258
+ "magic-renamer": "~18.0.1",
259
259
  "material-design-icons": "3.0.1",
260
260
  "method-override": "2.3.10",
261
261
  "minimist": "1.2.8",
@@ -267,9 +267,9 @@
267
267
  "ng-lock": "18.0.1",
268
268
  "ng-packagr": "18.1.0",
269
269
  "ng-talkback": "~16.444.7",
270
- "ng2-logger": "~16.444.15",
270
+ "ng2-logger": "~18.0.4",
271
271
  "ng2-pdfjs-viewer": "18.0.0",
272
- "ng2-rest": "~16.444.14",
272
+ "ng2-rest": "~18.0.1",
273
273
  "ngx-ace-wrapper": "17.0.0",
274
274
  "ngx-editor": "17.5.4",
275
275
  "ngx-highlightjs": "12.0.0",
@@ -285,7 +285,7 @@
285
285
  "node-cli-tester": "~16.444.7",
286
286
  "node-localstorage": "2.1.6",
287
287
  "node-notifier": "10.0.1",
288
- "node-polyfill-webpack-plugin": "1.1.4",
288
+ "node-polyfill-webpack-plugin": "2.0.1",
289
289
  "nodemon": "2.0.22",
290
290
  "npm-get-dependents": "1.0.1",
291
291
  "npm-run": "4.1.2",
@@ -331,11 +331,12 @@
331
331
  "systeminformation": "3.45.7",
332
332
  "task.js": "0.1.5",
333
333
  "threads": "1.7.0",
334
+ "tnp": "~18.0.1",
334
335
  "tnp-cli": "~16.444.7",
335
- "tnp-config": "~16.444.15",
336
- "tnp-core": "~18.0.3",
337
- "tnp-db": "~16.444.14",
338
- "tnp-models": "~18.0.1",
336
+ "tnp-config": "~18.0.4",
337
+ "tnp-core": "~18.0.26",
338
+ "tnp-db": "~18.0.1",
339
+ "tnp-models": "~18.0.3",
339
340
  "ts-debug": "1.3.0",
340
341
  "ts-json-schema-generator": "2.3.0-next.5",
341
342
  "ts-loader": "2.3.1",
@@ -353,7 +354,7 @@
353
354
  "video.js": "8.3.0",
354
355
  "vpn-split": "~16.444.7",
355
356
  "vscode": "1.1.37",
356
- "wait-on": "5.2.2",
357
+ "wait-on": "7.0.1",
357
358
  "watch": "1.0.2",
358
359
  "webpack": "~5.80",
359
360
  "webpack-dev-middleware": "~6.1.3",
@@ -364,14 +365,14 @@
364
365
  "main": "dist/app.electron.js"
365
366
  },
366
367
  "build": {
367
- "number": 468,
368
- "date": "2024-07-29T12:11:23.000Z",
369
- "hash": "c25fdaf8f2eb2456ae0981bc70f6552707c59c7b"
368
+ "number": 469,
369
+ "date": "2024-08-12T19:18:18.000Z",
370
+ "hash": "a1914e4bcd01c5d429baf5b9bee4dd7e5b7cbce6"
370
371
  },
371
372
  "currentProjectName": "incremental-compiler",
372
373
  "currentProjectGenericName": "incremental-compiler",
373
374
  "currentProjectType": "isomorphic-lib",
374
- "currentFrameworkVersion": "18.0.0",
375
+ "currentFrameworkVersion": "18.0.1",
375
376
  "isStandaloneProject": true,
376
377
  "isSmartContainer": false,
377
378
  "pathesTsconfig": "\"paths\": {\"incremental-compiler\":[\"./src/lib\"],\"incremental-compiler/*\":[\"./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.
@@ -0,0 +1,25 @@
1
+ {
2
+ "name": "incremental-compiler",
3
+ "version": "0.0.1",
4
+ "peerDependencies": {
5
+ "@angular/common": "^13.2.0",
6
+ "@angular/core": "^13.2.0"
7
+ },
8
+ "dependencies": {
9
+ "tslib": "^2.3.0"
10
+ },
11
+ "module": "fesm2022/incremental-compiler.mjs",
12
+ "typings": "index.d.ts",
13
+ "exports": {
14
+ "./package.json": {
15
+ "default": "./package.json"
16
+ },
17
+ ".": {
18
+ "types": "./index.d.ts",
19
+ "esm2022": "./esm2022/incremental-compiler.mjs",
20
+ "esm": "./esm2022/incremental-compiler.mjs",
21
+ "default": "./fesm2022/incremental-compiler.mjs"
22
+ }
23
+ },
24
+ "sideEffects": false
25
+ }