incremental-compiler 13.1.24 → 13.1.25

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.
Files changed (50) hide show
  1. package/README.md +13 -13
  2. package/assets/shared/shared_folder_info.txt +1 -1
  3. package/browser/README.md +24 -24
  4. package/browser/esm2020/incremental-compiler.mjs +4 -4
  5. package/browser/esm2020/lib/index.mjs +74 -74
  6. package/browser/esm2020/lib/models.mjs +5 -5
  7. package/browser/esm2020/public-api.mjs +1 -1
  8. package/browser/fesm2015/incremental-compiler.mjs +74 -74
  9. package/browser/fesm2020/incremental-compiler.mjs +74 -74
  10. package/browser/incremental-compiler.d.ts +4 -4
  11. package/browser/lib/models.d.ts +33 -33
  12. package/client/README.md +24 -24
  13. package/client/esm2020/incremental-compiler.mjs +4 -4
  14. package/client/esm2020/lib/index.mjs +74 -74
  15. package/client/esm2020/lib/models.mjs +5 -5
  16. package/client/esm2020/public-api.mjs +1 -1
  17. package/client/fesm2015/incremental-compiler.mjs +74 -74
  18. package/client/fesm2020/incremental-compiler.mjs +74 -74
  19. package/client/incremental-compiler.d.ts +4 -4
  20. package/client/lib/models.d.ts +33 -33
  21. package/client/package.json +28 -28
  22. package/index.d.ts +1 -1
  23. package/index.js.map +1 -1
  24. package/lib/base-client-compiler.backend.d.ts +56 -56
  25. package/lib/base-client-compiler.backend.js.map +1 -1
  26. package/lib/change-of-file.backend.d.ts +14 -14
  27. package/lib/change-of-file.backend.js.map +1 -1
  28. package/lib/compiler-manager.backend.d.ts +26 -26
  29. package/lib/compiler-manager.backend.js.map +1 -1
  30. package/lib/decorators.backend.d.ts +5 -5
  31. package/lib/decorators.backend.js.map +1 -1
  32. package/lib/helpers.backend.d.ts +3 -3
  33. package/lib/helpers.backend.js.map +1 -1
  34. package/lib/index.d.ts +40 -40
  35. package/lib/index.js.map +1 -1
  36. package/lib/models.d.ts +34 -34
  37. package/lib/models.js.map +1 -1
  38. package/package.json +4 -4
  39. package/package.json_devDependencies.json +216 -216
  40. package/package.json_tnp.json5 +53 -50
  41. package/tmp-environment.json +34 -33
  42. package/websql/README.md +24 -24
  43. package/websql/esm2020/incremental-compiler.mjs +4 -4
  44. package/websql/esm2020/lib/index.mjs +74 -74
  45. package/websql/esm2020/lib/models.mjs +5 -5
  46. package/websql/esm2020/public-api.mjs +1 -1
  47. package/websql/fesm2015/incremental-compiler.mjs +74 -74
  48. package/websql/fesm2020/incremental-compiler.mjs +74 -74
  49. package/websql/incremental-compiler.d.ts +4 -4
  50. package/websql/lib/models.d.ts +33 -33
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@13.1.24)
3
+ Assets from this folder are being shipped with this npm package (incremental-compiler@13.1.25)
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.
@@ -1,5 +1,5 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- export * from './public-api';
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ export * from './public-api';
5
5
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5jcmVtZW50YWwtY29tcGlsZXIuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi90bXAtbGlicy1mb3ItYnVuZGxlL2luY3JlbWVudGFsLWNvbXBpbGVyL3Byb2plY3RzL2luY3JlbWVudGFsLWNvbXBpbGVyL3NyYy9pbmNyZW1lbnRhbC1jb21waWxlci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBHZW5lcmF0ZWQgYnVuZGxlIGluZGV4LiBEbyBub3QgZWRpdC5cbiAqL1xuXG5leHBvcnQgKiBmcm9tICcuL3B1YmxpYy1hcGknO1xuIl19
@@ -1,75 +1,75 @@
1
- /* */
2
- /* */
3
- /* */
4
- /* */
5
- /* */
6
- /* */
7
- /* */
8
- /* */
9
- /* */
10
- /* */
11
- /* */
12
- /* */
13
- /* */
14
- /* */
15
- /* */
16
- /* */
17
- /* */
18
- /* */
19
- /* */
20
- /* */
21
- /* */
22
- /* */
23
- /* */
24
- /* */
25
- /* */
26
- /* */
27
- /* */
28
- /* */
29
- /* */
30
- /* */
31
- /* */
32
- /* */
33
- /* */
34
- /* */
35
- /* */
36
- /* */
37
- /* */
38
- /* */
39
- /* */
40
- /* */
41
- /* */
42
- /* */
43
- /* */
44
- /* */
45
- /* */
46
- /* */
47
- /* */
48
- /* */
49
- /* */
50
- /* */
51
- /* */
52
- /* */
53
- /* */
54
- /* */
55
- /* */
56
- /* */
57
- /* */
58
- /* */
59
- /* */
60
- /* */
61
- /* */
62
- /* */
63
- /* */
64
- /* */
65
- /* */
66
- /* */
67
- /* */
68
- /* */
69
- /* */
70
- /* */
71
- /* */
72
- ;
73
- ({}); // @--end-of-file-for-module=incremental-compiler lib/index.ts
74
- export {};
1
+ /* */
2
+ /* */
3
+ /* */
4
+ /* */
5
+ /* */
6
+ /* */
7
+ /* */
8
+ /* */
9
+ /* */
10
+ /* */
11
+ /* */
12
+ /* */
13
+ /* */
14
+ /* */
15
+ /* */
16
+ /* */
17
+ /* */
18
+ /* */
19
+ /* */
20
+ /* */
21
+ /* */
22
+ /* */
23
+ /* */
24
+ /* */
25
+ /* */
26
+ /* */
27
+ /* */
28
+ /* */
29
+ /* */
30
+ /* */
31
+ /* */
32
+ /* */
33
+ /* */
34
+ /* */
35
+ /* */
36
+ /* */
37
+ /* */
38
+ /* */
39
+ /* */
40
+ /* */
41
+ /* */
42
+ /* */
43
+ /* */
44
+ /* */
45
+ /* */
46
+ /* */
47
+ /* */
48
+ /* */
49
+ /* */
50
+ /* */
51
+ /* */
52
+ /* */
53
+ /* */
54
+ /* */
55
+ /* */
56
+ /* */
57
+ /* */
58
+ /* */
59
+ /* */
60
+ /* */
61
+ /* */
62
+ /* */
63
+ /* */
64
+ /* */
65
+ /* */
66
+ /* */
67
+ /* */
68
+ /* */
69
+ /* */
70
+ /* */
71
+ /* */
72
+ ;
73
+ ({}); // @--end-of-file-for-module=incremental-compiler lib/index.ts
74
+ export {};
75
75
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi90bXAtbGlicy1mb3ItYnVuZGxlL2luY3JlbWVudGFsLWNvbXBpbGVyL3Byb2plY3RzL2luY3JlbWVudGFsLWNvbXBpbGVyL3NyYy9saWIvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQ0EsS0FBSztBQUNMLEtBQUs7QUFDTCxLQUFLO0FBQ0wsS0FBSztBQUNMLEtBQUs7QUFDTCxLQUFLO0FBQ0wsS0FBSztBQUNMLEtBQUs7QUFDTCxLQUFLO0FBQ0wsS0FBSztBQUNMLEtBQUs7QUFDTCxLQUFLO0FBQ0wsS0FBSztBQUNMLEtBQUs7QUFDTCxLQUFLO0FBQ0wsS0FBSztBQUNMLEtBQUs7QUFDTCxLQUFLO0FBQ0wsS0FBSztBQUNMLEtBQUs7QUFDTCxLQUFLO0FBQ0wsS0FBSztBQUNMLEtBQUs7QUFDTCxLQUFLO0FBQ0wsS0FBSztBQUNMLEtBQUs7QUFDTCxLQUFLO0FBQ0wsS0FBSztBQUNMLEtBQUs7QUFDTCxLQUFLO0FBQ0wsS0FBSztBQUNMLEtBQUs7QUFDTCxLQUFLO0FBQ0wsS0FBSztBQUNMLEtBQUs7QUFDTCxLQUFLO0FBQ0wsS0FBSztBQUNMLEtBQUs7QUFDTCxLQUFLO0FBQ0wsS0FBSztBQUNMLEtBQUs7QUFDTCxLQUFLO0FBQ0wsS0FBSztBQUNMLEtBQUs7QUFDTCxLQUFLO0FBQ0wsS0FBSztBQUNMLEtBQUs7QUFDTCxLQUFLO0FBQ0wsS0FBSztBQUNMLEtBQUs7QUFDTCxLQUFLO0FBQ0wsS0FBSztBQUNMLEtBQUs7QUFDTCxLQUFLO0FBQ0wsS0FBSztBQUNMLEtBQUs7QUFDTCxLQUFLO0FBQ0wsS0FBSztBQUNMLEtBQUs7QUFDTCxLQUFLO0FBQ0wsS0FBSztBQUNMLEtBQUs7QUFDTCxLQUFLO0FBQ0wsS0FBSztBQUNMLEtBQUs7QUFDTCxLQUFLO0FBQ0wsS0FBSztBQUNMLEtBQUs7QUFDTCxLQUFLO0FBQ0wsS0FBSztBQUNMLEtBQUs7QUFHSixDQUFDO0FBQUEsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDLDhEQUE4RCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCAqIGFzIG1vZGVscyBmcm9tICcuL21vZGVscyc7XG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbiAgXG5cbiA7KHt9KTsgLy8gQC0tZW5kLW9mLWZpbGUtZm9yLW1vZHVsZT1pbmNyZW1lbnRhbC1jb21waWxlciBsaWIvaW5kZXgudHMiXX0=
@@ -1,6 +1,6 @@
1
- /* */
2
- /* */
3
- ;
4
- ({}); // @--end-of-file-for-module=incremental-compiler lib/models.ts
5
- export {};
1
+ /* */
2
+ /* */
3
+ ;
4
+ ({}); // @--end-of-file-for-module=incremental-compiler lib/models.ts
5
+ export {};
6
6
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibW9kZWxzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vdG1wLWxpYnMtZm9yLWJ1bmRsZS9pbmNyZW1lbnRhbC1jb21waWxlci9wcm9qZWN0cy9pbmNyZW1lbnRhbC1jb21waWxlci9zcmMvbGliL21vZGVscy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFDQSxLQUFLO0FBQ0wsS0FBSztBQTRESixDQUFDO0FBQUEsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDLCtEQUErRCIsInNvdXJjZXNDb250ZW50IjpbIlxuLyogKi9cbi8qICovXG4gIFxuaW1wb3J0IHsgQ29uZmlnTW9kZWxzIH0gZnJvbSAndG5wLWNvbmZpZy9icm93c2VyJztcblxuZXhwb3J0IG5hbWVzcGFjZSBNb2RlbHMge1xuXG5cblxuXG5cblxuXG5cblxuXG5cblxuXG5cblxuXG4gIGV4cG9ydCBpbnRlcmZhY2UgU3RhcnRBbmRXYXRjaE9wdGlvbnMge1xuICAgIGFmdGVySW5pdENhbGxCYWNrPzogKCkgPT4gdm9pZDtcbiAgICB3YXRjaE9ubHk/OiBib29sZWFuO1xuICB9XG5cblxuXG4gIGV4cG9ydCBpbnRlcmZhY2UgQmFzZUNsaWVudENvbXBpbGVyT3B0aW9ucyB7XG4gICAgZm9sZGVyUGF0aD86IHN0cmluZyB8IHN0cmluZ1tdO1xuICAgIC8qKlxuICAgICAqIEl0IHdpbGwgY2FjaGUgaW4gbWVtb3J5IHByZXZpb3VzZSBmaWxlc1xuICAgICAqIHRvIGxpbWl0IGFzeW5jIGFjdGlvbnMgY2FsbHNcbiAgICAgKiBhbmQgcHJldmVudCBub3QgY2hhbmdlZCBmaWxlcyBlbWl0aW5nIGNoYW5nZSBldmVudFxuICAgICAqL1xuICAgIGZvbGRlclBhdGhDb250ZW50Q2hlY2s/OiBzdHJpbmcgfCBzdHJpbmdbXTtcblxuICAgIHdhdGNoRGVwdGg/OiBOdW1iZXI7XG4gICAgLyoqXG4gICAgICogZGVmYXVsdCB0cnVlXG4gICAgICovXG4gICAgZm9sbG93U3ltbGlua3M/OiBib29sZWFuO1xuICAgIC8qKlxuICAgICAqIE5vdGlmeSBjb21waWxlciBpZiBmaWxlIGlzIHVubGlua2VkXG4gICAgICogZGVmYXVsdDogZmFsc2VcbiAgICAgKi9cbiAgICBub3RpZnlPbkZpbGVVbmxpbms/OiBib29sZWFuO1xuICAgIGlnbm9yZUZvbGRlclBhdHRlcj86IHN0cmluZ1tdO1xuICAgIGFsbG93ZWRPbmx5RmlsZUV4dD86IHN0cmluZ1tdO1xuICAgIC8qKlxuICAgICAqIHVzZWZ1bCB3aGVuIHVzaW5nICoqYWxsb3dlZE9ubHlGaWxlRXh0KipcbiAgICAgKi9cbiAgICBhZGRpdGlvbmFsbHlBbGxvd2VkRmlsZXNXaXRoTmFtZXM/OiBzdHJpbmdbXTtcbiAgICBleGVjdXRlT3V0c2lkZVNjZW5hcmlvPzogYm9vbGVhbjtcbiAgICBzdWJzY3JpYmVPbmx5Rm9yPzogQ29uZmlnTW9kZWxzLkZpbGVFeHRlbnNpb25bXTtcbiAgfVxuXG5cbn1cblxuIDsoe30pOyAvLyBALS1lbmQtb2YtZmlsZS1mb3ItbW9kdWxlPWluY3JlbWVudGFsLWNvbXBpbGVyIGxpYi9tb2RlbHMudHMiXX0=
@@ -1,2 +1,2 @@
1
- export * from './lib';
1
+ export * from './lib';
2
2
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3RtcC1saWJzLWZvci1idW5kbGUvaW5jcmVtZW50YWwtY29tcGlsZXIvcHJvamVjdHMvaW5jcmVtZW50YWwtY29tcGlsZXIvc3JjL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxPQUFPLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2xpYic7XG4iXX0=
@@ -1,78 +1,78 @@
1
- /* */
2
- /* */
3
- /* */
4
- /* */
5
- /* */
6
- /* */
7
- /* */
8
- /* */
9
- /* */
10
- /* */
11
- /* */
12
- /* */
13
- /* */
14
- /* */
15
- /* */
16
- /* */
17
- /* */
18
- /* */
19
- /* */
20
- /* */
21
- /* */
22
- /* */
23
- /* */
24
- /* */
25
- /* */
26
- /* */
27
- /* */
28
- /* */
29
- /* */
30
- /* */
31
- /* */
32
- /* */
33
- /* */
34
- /* */
35
- /* */
36
- /* */
37
- /* */
38
- /* */
39
- /* */
40
- /* */
41
- /* */
42
- /* */
43
- /* */
44
- /* */
45
- /* */
46
- /* */
47
- /* */
48
- /* */
49
- /* */
50
- /* */
51
- /* */
52
- /* */
53
- /* */
54
- /* */
55
- /* */
56
- /* */
57
- /* */
58
- /* */
59
- /* */
60
- /* */
61
- /* */
62
- /* */
63
- /* */
64
- /* */
65
- /* */
66
- /* */
67
- /* */
68
- /* */
69
- /* */
70
- /* */
71
- /* */
72
- ;
1
+ /* */
2
+ /* */
3
+ /* */
4
+ /* */
5
+ /* */
6
+ /* */
7
+ /* */
8
+ /* */
9
+ /* */
10
+ /* */
11
+ /* */
12
+ /* */
13
+ /* */
14
+ /* */
15
+ /* */
16
+ /* */
17
+ /* */
18
+ /* */
19
+ /* */
20
+ /* */
21
+ /* */
22
+ /* */
23
+ /* */
24
+ /* */
25
+ /* */
26
+ /* */
27
+ /* */
28
+ /* */
29
+ /* */
30
+ /* */
31
+ /* */
32
+ /* */
33
+ /* */
34
+ /* */
35
+ /* */
36
+ /* */
37
+ /* */
38
+ /* */
39
+ /* */
40
+ /* */
41
+ /* */
42
+ /* */
43
+ /* */
44
+ /* */
45
+ /* */
46
+ /* */
47
+ /* */
48
+ /* */
49
+ /* */
50
+ /* */
51
+ /* */
52
+ /* */
53
+ /* */
54
+ /* */
55
+ /* */
56
+ /* */
57
+ /* */
58
+ /* */
59
+ /* */
60
+ /* */
61
+ /* */
62
+ /* */
63
+ /* */
64
+ /* */
65
+ /* */
66
+ /* */
67
+ /* */
68
+ /* */
69
+ /* */
70
+ /* */
71
+ /* */
72
+ ;
73
73
  ({}); // @--end-of-file-for-module=incremental-compiler lib/index.ts
74
74
 
75
- /**
76
- * Generated bundle index. Do not edit.
75
+ /**
76
+ * Generated bundle index. Do not edit.
77
77
  */
78
78
  //# sourceMappingURL=incremental-compiler.mjs.map
@@ -1,78 +1,78 @@
1
- /* */
2
- /* */
3
- /* */
4
- /* */
5
- /* */
6
- /* */
7
- /* */
8
- /* */
9
- /* */
10
- /* */
11
- /* */
12
- /* */
13
- /* */
14
- /* */
15
- /* */
16
- /* */
17
- /* */
18
- /* */
19
- /* */
20
- /* */
21
- /* */
22
- /* */
23
- /* */
24
- /* */
25
- /* */
26
- /* */
27
- /* */
28
- /* */
29
- /* */
30
- /* */
31
- /* */
32
- /* */
33
- /* */
34
- /* */
35
- /* */
36
- /* */
37
- /* */
38
- /* */
39
- /* */
40
- /* */
41
- /* */
42
- /* */
43
- /* */
44
- /* */
45
- /* */
46
- /* */
47
- /* */
48
- /* */
49
- /* */
50
- /* */
51
- /* */
52
- /* */
53
- /* */
54
- /* */
55
- /* */
56
- /* */
57
- /* */
58
- /* */
59
- /* */
60
- /* */
61
- /* */
62
- /* */
63
- /* */
64
- /* */
65
- /* */
66
- /* */
67
- /* */
68
- /* */
69
- /* */
70
- /* */
71
- /* */
72
- ;
1
+ /* */
2
+ /* */
3
+ /* */
4
+ /* */
5
+ /* */
6
+ /* */
7
+ /* */
8
+ /* */
9
+ /* */
10
+ /* */
11
+ /* */
12
+ /* */
13
+ /* */
14
+ /* */
15
+ /* */
16
+ /* */
17
+ /* */
18
+ /* */
19
+ /* */
20
+ /* */
21
+ /* */
22
+ /* */
23
+ /* */
24
+ /* */
25
+ /* */
26
+ /* */
27
+ /* */
28
+ /* */
29
+ /* */
30
+ /* */
31
+ /* */
32
+ /* */
33
+ /* */
34
+ /* */
35
+ /* */
36
+ /* */
37
+ /* */
38
+ /* */
39
+ /* */
40
+ /* */
41
+ /* */
42
+ /* */
43
+ /* */
44
+ /* */
45
+ /* */
46
+ /* */
47
+ /* */
48
+ /* */
49
+ /* */
50
+ /* */
51
+ /* */
52
+ /* */
53
+ /* */
54
+ /* */
55
+ /* */
56
+ /* */
57
+ /* */
58
+ /* */
59
+ /* */
60
+ /* */
61
+ /* */
62
+ /* */
63
+ /* */
64
+ /* */
65
+ /* */
66
+ /* */
67
+ /* */
68
+ /* */
69
+ /* */
70
+ /* */
71
+ /* */
72
+ ;
73
73
  ({}); // @--end-of-file-for-module=incremental-compiler lib/index.ts
74
74
 
75
- /**
76
- * Generated bundle index. Do not edit.
75
+ /**
76
+ * Generated bundle index. Do not edit.
77
77
  */
78
78
  //# sourceMappingURL=incremental-compiler.mjs.map
@@ -1,6 +1,6 @@
1
1
  // @ts-nocheck
2
- /**
3
- * Generated bundle index. Do not edit.
4
- */
5
- /// <amd-module name="incremental-compiler" />
2
+ /**
3
+ * Generated bundle index. Do not edit.
4
+ */
5
+ /// <amd-module name="incremental-compiler" />
6
6
  export * from './public-api';
@@ -1,35 +1,35 @@
1
1
  // @ts-nocheck
2
- import { ConfigModels } from 'tnp-config/browser';
3
- export declare namespace Models {
4
- interface StartAndWatchOptions {
5
- afterInitCallBack?: () => void;
6
- watchOnly?: boolean;
7
- }
8
- interface BaseClientCompilerOptions {
9
- folderPath?: string | string[];
10
- /**
11
- * It will cache in memory previouse files
12
- * to limit async actions calls
13
- * and prevent not changed files emiting change event
14
- */
15
- folderPathContentCheck?: string | string[];
16
- watchDepth?: Number;
17
- /**
18
- * default true
19
- */
20
- followSymlinks?: boolean;
21
- /**
22
- * Notify compiler if file is unlinked
23
- * default: false
24
- */
25
- notifyOnFileUnlink?: boolean;
26
- ignoreFolderPatter?: string[];
27
- allowedOnlyFileExt?: string[];
28
- /**
29
- * useful when using **allowedOnlyFileExt**
30
- */
31
- additionallyAllowedFilesWithNames?: string[];
32
- executeOutsideScenario?: boolean;
33
- subscribeOnlyFor?: ConfigModels.FileExtension[];
34
- }
2
+ import { ConfigModels } from 'tnp-config/browser';
3
+ export declare namespace Models {
4
+ interface StartAndWatchOptions {
5
+ afterInitCallBack?: () => void;
6
+ watchOnly?: boolean;
7
+ }
8
+ interface BaseClientCompilerOptions {
9
+ folderPath?: string | string[];
10
+ /**
11
+ * It will cache in memory previouse files
12
+ * to limit async actions calls
13
+ * and prevent not changed files emiting change event
14
+ */
15
+ folderPathContentCheck?: string | string[];
16
+ watchDepth?: Number;
17
+ /**
18
+ * default true
19
+ */
20
+ followSymlinks?: boolean;
21
+ /**
22
+ * Notify compiler if file is unlinked
23
+ * default: false
24
+ */
25
+ notifyOnFileUnlink?: boolean;
26
+ ignoreFolderPatter?: string[];
27
+ allowedOnlyFileExt?: string[];
28
+ /**
29
+ * useful when using **allowedOnlyFileExt**
30
+ */
31
+ additionallyAllowedFilesWithNames?: string[];
32
+ executeOutsideScenario?: boolean;
33
+ subscribeOnlyFor?: ConfigModels.FileExtension[];
34
+ }
35
35
  }