incremental-compiler 1.1.53 → 13.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/app.js +2 -1
- package/browser/README.md +24 -0
- package/browser/esm2020/incremental-compiler.mjs +5 -0
- package/browser/esm2020/lib/index.mjs +2 -0
- package/browser/esm2020/lib/models.mjs +2 -0
- package/browser/esm2020/public-api.mjs +2 -0
- package/browser/fesm2015/incremental-compiler.mjs +4 -0
- package/browser/fesm2015/incremental-compiler.mjs.map +1 -0
- package/browser/fesm2020/incremental-compiler.mjs +4 -0
- package/browser/fesm2020/incremental-compiler.mjs.map +1 -0
- package/browser/incremental-compiler.d.ts +5 -0
- package/browser/{index.d.ts → lib/index.d.ts} +0 -0
- package/browser/{models.d.ts → lib/models.d.ts} +0 -0
- package/browser/package.json +31 -0
- package/browser/public-api.d.ts +1 -0
- package/client/README.md +24 -0
- package/client/esm2020/incremental-compiler.mjs +5 -0
- package/client/esm2020/lib/index.mjs +2 -0
- package/client/esm2020/lib/models.mjs +2 -0
- package/client/esm2020/public-api.mjs +2 -0
- package/client/fesm2015/incremental-compiler.mjs +4 -0
- package/client/fesm2015/incremental-compiler.mjs.map +1 -0
- package/client/fesm2020/incremental-compiler.mjs +4 -0
- package/client/fesm2020/incremental-compiler.mjs.map +1 -0
- package/client/incremental-compiler.d.ts +5 -0
- package/client/{index.d.ts → lib/index.d.ts} +0 -0
- package/client/{models.d.ts → lib/models.d.ts} +0 -0
- package/client/package.json +26 -14
- package/client/public-api.d.ts +1 -0
- package/index.d.ts +1 -48
- package/index.js +3 -70
- package/index.js.map +1 -1
- package/{base-client-compiler.backend.d.ts → lib/base-client-compiler.backend.d.ts} +0 -0
- package/{base-client-compiler.backend.js → lib/base-client-compiler.backend.js} +19 -18
- package/lib/base-client-compiler.backend.js.map +1 -0
- package/{change-of-file.backend.d.ts → lib/change-of-file.backend.d.ts} +0 -0
- package/{change-of-file.backend.js → lib/change-of-file.backend.js} +3 -2
- package/lib/change-of-file.backend.js.map +1 -0
- package/{compiler-manager.backend.d.ts → lib/compiler-manager.backend.d.ts} +0 -0
- package/{compiler-manager.backend.js → lib/compiler-manager.backend.js} +16 -15
- package/lib/compiler-manager.backend.js.map +1 -0
- package/{decorators.backend.d.ts → lib/decorators.backend.d.ts} +0 -0
- package/{decorators.backend.js → lib/decorators.backend.js} +3 -2
- package/lib/decorators.backend.js.map +1 -0
- package/{helpers.backend.d.ts → lib/helpers.backend.d.ts} +0 -0
- package/{helpers.backend.js → lib/helpers.backend.js} +2 -1
- package/lib/helpers.backend.js.map +1 -0
- package/lib/index.d.ts +48 -0
- package/lib/index.js +74 -0
- package/lib/index.js.map +1 -0
- package/{models.d.ts → lib/models.d.ts} +0 -0
- package/{models.js → lib/models.js} +2 -1
- package/{browser → lib}/models.js.map +1 -1
- package/package.json +12 -12
- package/{package.json_tnp.json → package.json_tnp.json5} +11 -7
- package/tmp-environment.json +111 -112
- package/base-client-compiler.backend.js.map +0 -1
- package/browser/es5/index.js +0 -5
- package/browser/es5/models.js +0 -5
- package/browser/index.js +0 -2
- package/browser/index.js.map +0 -1
- package/browser/models.js +0 -2
- package/change-of-file.backend.js.map +0 -1
- package/client/es5/index.js +0 -5
- package/client/es5/models.js +0 -5
- package/client/index.js +0 -2
- package/client/index.js.map +0 -1
- package/client/models.js +0 -2
- package/client/models.js.map +0 -1
- package/compiler-manager.backend.js.map +0 -1
- package/decorators.backend.js.map +0 -1
- package/helpers.backend.js.map +0 -1
- package/models.js.map +0 -1
package/app.js
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
//# sourceMappingURL=app.js.map
|
|
1
|
+
//# sourceMappingURL=app.js.map
|
|
2
|
+
// @fixed
|
|
@@ -0,0 +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.
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated bundle index. Do not edit.
|
|
3
|
+
*/
|
|
4
|
+
export * from './public-api';
|
|
5
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5jcmVtZW50YWwtY29tcGlsZXIuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi90bXAtbGlicy1mb3ItYnVuZGxlL2luY3JlbWVudGFsLWNvbXBpbGVyL3Byb2plY3RzL2luY3JlbWVudGFsLWNvbXBpbGVyL3NyYy9pbmNyZW1lbnRhbC1jb21waWxlci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBHZW5lcmF0ZWQgYnVuZGxlIGluZGV4LiBEbyBub3QgZWRpdC5cbiAqL1xuXG5leHBvcnQgKiBmcm9tICcuL3B1YmxpYy1hcGknO1xuIl19
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export {};
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi90bXAtbGlicy1mb3ItYnVuZGxlL2luY3JlbWVudGFsLWNvbXBpbGVyL3Byb2plY3RzL2luY3JlbWVudGFsLWNvbXBpbGVyL3NyYy9saWIvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbIlxuXG5pbXBvcnQgKiBhcyBtb2RlbHMgZnJvbSAnLi9tb2RlbHMnO1xuXG4iXX0=
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export {};
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibW9kZWxzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vdG1wLWxpYnMtZm9yLWJ1bmRsZS9pbmNyZW1lbnRhbC1jb21waWxlci9wcm9qZWN0cy9pbmNyZW1lbnRhbC1jb21waWxlci9zcmMvbGliL21vZGVscy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiXG5cbmltcG9ydCB7IENvbmZpZ01vZGVscyB9IGZyb20gJ3RucC1jb25maWcvYnJvd3Nlcic7XG5cbmV4cG9ydCBuYW1lc3BhY2UgTW9kZWxzIHtcblxuICBleHBvcnQgaW50ZXJmYWNlIFN0YXJ0QW5kV2F0Y2hPcHRpb25zIHtcbiAgICBhZnRlckluaXRDYWxsQmFjaz86ICgpID0+IHZvaWQ7XG4gICAgd2F0Y2hPbmx5PzogYm9vbGVhbjtcbiAgfVxuXG5cblxuICBleHBvcnQgaW50ZXJmYWNlIEJhc2VDbGllbnRDb21waWxlck9wdGlvbnMge1xuICAgIGZvbGRlclBhdGg/OiBzdHJpbmcgfCBzdHJpbmdbXTtcbiAgICB3YXRjaERlcHRoPzogTnVtYmVyO1xuICAgIC8qKlxuICAgICAqIGRlZmF1bHQgdHJ1ZVxuICAgICAqL1xuICAgIGZvbGxvd1N5bWxpbmtzPzogYm9vbGVhbjtcbiAgICAvKipcbiAgICAgKiBOb3RpZnkgY29tcGlsZXIgaWYgZmlsZSBpcyB1bmxpbmtlZFxuICAgICAqIGRlZmF1bHQ6IGZhbHNlXG4gICAgICovXG4gICAgbm90aWZ5T25GaWxlVW5saW5rPzogYm9vbGVhbjtcbiAgICBleGVjdXRlT3V0c2lkZVNjZW5hcmlvPzogYm9vbGVhbjtcbiAgICBzdWJzY3JpYmVPbmx5Rm9yPzogQ29uZmlnTW9kZWxzLkZpbGVFeHRlbnNpb25bXTtcbiAgfVxuXG5cblxuXG5cbn1cbiJdfQ==
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './lib';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3RtcC1saWJzLWZvci1idW5kbGUvaW5jcmVtZW50YWwtY29tcGlsZXIvcHJvamVjdHMvaW5jcmVtZW50YWwtY29tcGlsZXIvc3JjL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxPQUFPLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2xpYic7XG4iXX0=
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"incremental-compiler.mjs","sources":["../../../tmp-libs-for-bundle/incremental-compiler/projects/incremental-compiler/src/incremental-compiler.ts"],"sourcesContent":["/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"AAAA;;AAEG"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"incremental-compiler.mjs","sources":["../../../tmp-libs-for-bundle/incremental-compiler/projects/incremental-compiler/src/incremental-compiler.ts"],"sourcesContent":["/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"AAAA;;AAEG"}
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,31 @@
|
|
|
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": "fesm2015/incremental-compiler.mjs",
|
|
12
|
+
"es2020": "fesm2020/incremental-compiler.mjs",
|
|
13
|
+
"esm2020": "esm2020/incremental-compiler.mjs",
|
|
14
|
+
"fesm2020": "fesm2020/incremental-compiler.mjs",
|
|
15
|
+
"fesm2015": "fesm2015/incremental-compiler.mjs",
|
|
16
|
+
"typings": "incremental-compiler.d.ts",
|
|
17
|
+
"exports": {
|
|
18
|
+
"./package.json": {
|
|
19
|
+
"default": "./package.json"
|
|
20
|
+
},
|
|
21
|
+
".": {
|
|
22
|
+
"types": "./incremental-compiler.d.ts",
|
|
23
|
+
"esm2020": "./esm2020/incremental-compiler.mjs",
|
|
24
|
+
"es2020": "./fesm2020/incremental-compiler.mjs",
|
|
25
|
+
"es2015": "./fesm2015/incremental-compiler.mjs",
|
|
26
|
+
"node": "./fesm2015/incremental-compiler.mjs",
|
|
27
|
+
"default": "./fesm2020/incremental-compiler.mjs"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"sideEffects": false
|
|
31
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './lib';
|
package/client/README.md
ADDED
|
@@ -0,0 +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.
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated bundle index. Do not edit.
|
|
3
|
+
*/
|
|
4
|
+
export * from './public-api';
|
|
5
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5jcmVtZW50YWwtY29tcGlsZXIuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi90bXAtbGlicy1mb3ItYnVuZGxlL2luY3JlbWVudGFsLWNvbXBpbGVyL3Byb2plY3RzL2luY3JlbWVudGFsLWNvbXBpbGVyL3NyYy9pbmNyZW1lbnRhbC1jb21waWxlci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBHZW5lcmF0ZWQgYnVuZGxlIGluZGV4LiBEbyBub3QgZWRpdC5cbiAqL1xuXG5leHBvcnQgKiBmcm9tICcuL3B1YmxpYy1hcGknO1xuIl19
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export {};
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi90bXAtbGlicy1mb3ItYnVuZGxlL2luY3JlbWVudGFsLWNvbXBpbGVyL3Byb2plY3RzL2luY3JlbWVudGFsLWNvbXBpbGVyL3NyYy9saWIvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbIlxuXG5pbXBvcnQgKiBhcyBtb2RlbHMgZnJvbSAnLi9tb2RlbHMnO1xuXG4iXX0=
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export {};
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibW9kZWxzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vdG1wLWxpYnMtZm9yLWJ1bmRsZS9pbmNyZW1lbnRhbC1jb21waWxlci9wcm9qZWN0cy9pbmNyZW1lbnRhbC1jb21waWxlci9zcmMvbGliL21vZGVscy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiXG5cbmltcG9ydCB7IENvbmZpZ01vZGVscyB9IGZyb20gJ3RucC1jb25maWcvYnJvd3Nlcic7XG5cbmV4cG9ydCBuYW1lc3BhY2UgTW9kZWxzIHtcblxuICBleHBvcnQgaW50ZXJmYWNlIFN0YXJ0QW5kV2F0Y2hPcHRpb25zIHtcbiAgICBhZnRlckluaXRDYWxsQmFjaz86ICgpID0+IHZvaWQ7XG4gICAgd2F0Y2hPbmx5PzogYm9vbGVhbjtcbiAgfVxuXG5cblxuICBleHBvcnQgaW50ZXJmYWNlIEJhc2VDbGllbnRDb21waWxlck9wdGlvbnMge1xuICAgIGZvbGRlclBhdGg/OiBzdHJpbmcgfCBzdHJpbmdbXTtcbiAgICB3YXRjaERlcHRoPzogTnVtYmVyO1xuICAgIC8qKlxuICAgICAqIGRlZmF1bHQgdHJ1ZVxuICAgICAqL1xuICAgIGZvbGxvd1N5bWxpbmtzPzogYm9vbGVhbjtcbiAgICAvKipcbiAgICAgKiBOb3RpZnkgY29tcGlsZXIgaWYgZmlsZSBpcyB1bmxpbmtlZFxuICAgICAqIGRlZmF1bHQ6IGZhbHNlXG4gICAgICovXG4gICAgbm90aWZ5T25GaWxlVW5saW5rPzogYm9vbGVhbjtcbiAgICBleGVjdXRlT3V0c2lkZVNjZW5hcmlvPzogYm9vbGVhbjtcbiAgICBzdWJzY3JpYmVPbmx5Rm9yPzogQ29uZmlnTW9kZWxzLkZpbGVFeHRlbnNpb25bXTtcbiAgfVxuXG5cblxuXG5cbn1cbiJdfQ==
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './lib';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3RtcC1saWJzLWZvci1idW5kbGUvaW5jcmVtZW50YWwtY29tcGlsZXIvcHJvamVjdHMvaW5jcmVtZW50YWwtY29tcGlsZXIvc3JjL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxPQUFPLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2xpYic7XG4iXX0=
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"incremental-compiler.mjs","sources":["../../../tmp-libs-for-bundle/incremental-compiler/projects/incremental-compiler/src/incremental-compiler.ts"],"sourcesContent":["/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"AAAA;;AAEG"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"incremental-compiler.mjs","sources":["../../../tmp-libs-for-bundle/incremental-compiler/projects/incremental-compiler/src/incremental-compiler.ts"],"sourcesContent":["/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"AAAA;;AAEG"}
|
|
File without changes
|
|
File without changes
|
package/client/package.json
CHANGED
|
@@ -1,19 +1,31 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "incremental-compiler",
|
|
3
|
-
"version": "
|
|
4
|
-
"
|
|
5
|
-
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"peerDependencies": {
|
|
5
|
+
"@angular/common": "^13.2.0",
|
|
6
|
+
"@angular/core": "^13.2.0"
|
|
7
|
+
},
|
|
6
8
|
"dependencies": {
|
|
7
|
-
"
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
9
|
+
"tslib": "^2.3.0"
|
|
10
|
+
},
|
|
11
|
+
"module": "fesm2015/incremental-compiler.mjs",
|
|
12
|
+
"es2020": "fesm2020/incremental-compiler.mjs",
|
|
13
|
+
"esm2020": "esm2020/incremental-compiler.mjs",
|
|
14
|
+
"fesm2020": "fesm2020/incremental-compiler.mjs",
|
|
15
|
+
"fesm2015": "fesm2015/incremental-compiler.mjs",
|
|
16
|
+
"typings": "incremental-compiler.d.ts",
|
|
17
|
+
"exports": {
|
|
18
|
+
"./package.json": {
|
|
19
|
+
"default": "./package.json"
|
|
20
|
+
},
|
|
21
|
+
".": {
|
|
22
|
+
"types": "./incremental-compiler.d.ts",
|
|
23
|
+
"esm2020": "./esm2020/incremental-compiler.mjs",
|
|
24
|
+
"es2020": "./fesm2020/incremental-compiler.mjs",
|
|
25
|
+
"es2015": "./fesm2015/incremental-compiler.mjs",
|
|
26
|
+
"node": "./fesm2015/incremental-compiler.mjs",
|
|
27
|
+
"default": "./fesm2020/incremental-compiler.mjs"
|
|
28
|
+
}
|
|
16
29
|
},
|
|
17
|
-
"
|
|
18
|
-
"lastBuildTagHash": "fbf81d9bb1acc21817acc71ab7271316a438b936"
|
|
30
|
+
"sideEffects": false
|
|
19
31
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './lib';
|
package/index.d.ts
CHANGED
|
@@ -1,48 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export * from './compiler-manager.backend';
|
|
3
|
-
export * from './base-client-compiler.backend';
|
|
4
|
-
export * from './change-of-file.backend';
|
|
5
|
-
import * as incBase from './base-client-compiler.backend';
|
|
6
|
-
import * as change from './change-of-file.backend';
|
|
7
|
-
import * as deco from './decorators.backend';
|
|
8
|
-
export interface HelpersToOverride {
|
|
9
|
-
info: Function;
|
|
10
|
-
warn: Function;
|
|
11
|
-
error: Function;
|
|
12
|
-
log: Function;
|
|
13
|
-
runSyncOrAsync: Function;
|
|
14
|
-
compilationWrapper: Function;
|
|
15
|
-
}
|
|
16
|
-
/**
|
|
17
|
-
* Template for watcher client:
|
|
18
|
-
*
|
|
19
|
-
* import { IncCompiler } from 'firedev'
|
|
20
|
-
*
|
|
21
|
-
* IncCompiler.init( asyncChangeOfFile => {
|
|
22
|
-
*
|
|
23
|
-
* })
|
|
24
|
-
*
|
|
25
|
-
* @IncCompiler.Class({ className: 'TestWatcher' })
|
|
26
|
-
* export class TestWatcher extends IncCompiler.Base {
|
|
27
|
-
*
|
|
28
|
-
* syncAction(files = []) { }
|
|
29
|
-
* preAsyncAction() { }
|
|
30
|
-
* asyncAction(change: IncCompiler.Change, additionalData:any ) { }
|
|
31
|
-
* }
|
|
32
|
-
*/
|
|
33
|
-
export declare namespace IncCompiler {
|
|
34
|
-
export import Models = models.Models;
|
|
35
|
-
/**
|
|
36
|
-
* 1. Only one task at the time
|
|
37
|
-
* 2. Only files changes not directories
|
|
38
|
-
*/
|
|
39
|
-
const init: (onAsyncChangeOfFile?: (event: change.ChangeOfFile) => Promise<any>, helperOverride?: HelpersToOverride) => void;
|
|
40
|
-
function allClients<T>(clientNameOrClass?: string | Function, condition?: (c: T) => boolean): Base<any, any, any>[] | T[];
|
|
41
|
-
export import Base = incBase.BaseClientCompiler;
|
|
42
|
-
export import Class = deco.IncCompilerClass;
|
|
43
|
-
namespace methods {
|
|
44
|
-
export import AsyncAction = deco.AsyncAction;
|
|
45
|
-
}
|
|
46
|
-
export import Change = change.ChangeOfFile;
|
|
47
|
-
function getInstance<CLASS_TYPE>(compilerClassName: string): CLASS_TYPE;
|
|
48
|
-
}
|
|
1
|
+
export * from './lib';
|
package/index.js
CHANGED
|
@@ -1,73 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.IncCompiler = void 0;
|
|
4
3
|
var tslib_1 = require("tslib");
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
tslib_1.__exportStar(require("./change-of-file.backend"), exports);
|
|
9
|
-
var incCompiler = require("./compiler-manager.backend");
|
|
10
|
-
var incBase = require("./base-client-compiler.backend");
|
|
11
|
-
var change = require("./change-of-file.backend");
|
|
12
|
-
var deco = require("./decorators.backend");
|
|
13
|
-
var tnp_core_1 = require("tnp-core");
|
|
14
|
-
var tnp_core_2 = require("tnp-core");
|
|
15
|
-
var typescript_class_helpers_1 = require("typescript-class-helpers");
|
|
16
|
-
/**
|
|
17
|
-
* Template for watcher client:
|
|
18
|
-
*
|
|
19
|
-
* import { IncCompiler } from 'firedev'
|
|
20
|
-
*
|
|
21
|
-
* IncCompiler.init( asyncChangeOfFile => {
|
|
22
|
-
*
|
|
23
|
-
* })
|
|
24
|
-
*
|
|
25
|
-
* @IncCompiler.Class({ className: 'TestWatcher' })
|
|
26
|
-
* export class TestWatcher extends IncCompiler.Base {
|
|
27
|
-
*
|
|
28
|
-
* syncAction(files = []) { }
|
|
29
|
-
* preAsyncAction() { }
|
|
30
|
-
* asyncAction(change: IncCompiler.Change, additionalData:any ) { }
|
|
31
|
-
* }
|
|
32
|
-
*/
|
|
33
|
-
var IncCompiler;
|
|
34
|
-
(function (IncCompiler) {
|
|
35
|
-
/**
|
|
36
|
-
* 1. Only one task at the time
|
|
37
|
-
* 2. Only files changes not directories
|
|
38
|
-
*/
|
|
39
|
-
IncCompiler.init = function (onAsyncChangeOfFile, helperOverride) {
|
|
40
|
-
incCompiler.CompilerManager.Instance.initScenario(onAsyncChangeOfFile);
|
|
41
|
-
if (tnp_core_2._.isObject(helperOverride) && !tnp_core_2._.isArray(helperOverride)) {
|
|
42
|
-
Object.keys(helperOverride).forEach(function (fnName) {
|
|
43
|
-
// console.log('override name',fnName)
|
|
44
|
-
if (tnp_core_2._.isFunction(helperOverride[fnName])) {
|
|
45
|
-
tnp_core_1.Helpers[fnName] = helperOverride[fnName];
|
|
46
|
-
}
|
|
47
|
-
});
|
|
48
|
-
}
|
|
49
|
-
};
|
|
50
|
-
function allClients(clientNameOrClass, condition) {
|
|
51
|
-
return incCompiler.CompilerManager.Instance.allClients.get(clientNameOrClass, condition);
|
|
52
|
-
}
|
|
53
|
-
IncCompiler.allClients = allClients;
|
|
54
|
-
IncCompiler.Base = incBase.BaseClientCompiler;
|
|
55
|
-
IncCompiler.Class = deco.IncCompilerClass;
|
|
56
|
-
var methods;
|
|
57
|
-
(function (methods) {
|
|
58
|
-
methods.AsyncAction = deco.AsyncAction;
|
|
59
|
-
})(methods = IncCompiler.methods || (IncCompiler.methods = {}));
|
|
60
|
-
IncCompiler.Change = change.ChangeOfFile;
|
|
61
|
-
function getInstance(compilerClassName) {
|
|
62
|
-
if (tnp_core_2._.isString(compilerClassName)) {
|
|
63
|
-
var cl = typescript_class_helpers_1.CLASS.getBy(compilerClassName);
|
|
64
|
-
}
|
|
65
|
-
if (!cl) {
|
|
66
|
-
tnp_core_1.Helpers.error("Compiler instance not found... incorrect class name \"" + compilerClassName + "\" ");
|
|
67
|
-
}
|
|
68
|
-
return cl;
|
|
69
|
-
}
|
|
70
|
-
IncCompiler.getInstance = getInstance;
|
|
71
|
-
})(IncCompiler = exports.IncCompiler || (exports.IncCompiler = {}));
|
|
72
|
-
//#endregion
|
|
73
|
-
//# sourceMappingURL=index.js.map
|
|
4
|
+
(0, tslib_1.__exportStar)(require("./lib"), exports);
|
|
5
|
+
//# sourceMappingURL=index.js.map
|
|
6
|
+
// @fixed
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAA,qDAAsB"}
|
|
File without changes
|
|
@@ -52,10 +52,10 @@ var BaseClientCompiler = /** @class */ (function () {
|
|
|
52
52
|
this.pathResolve = true;
|
|
53
53
|
this.__folderPath.map(function (p) {
|
|
54
54
|
if (tnp_core_1.fse.existsSync(p)) {
|
|
55
|
-
return tnp_core_1.crossPlatformPath(tnp_core_1.path.resolve(p));
|
|
55
|
+
return (0, tnp_core_1.crossPlatformPath)(tnp_core_1.path.resolve(p));
|
|
56
56
|
}
|
|
57
57
|
else {
|
|
58
|
-
tnp_core_2.Helpers.warn("[BaseClientCompiler] client \""
|
|
58
|
+
tnp_core_2.Helpers.warn("[BaseClientCompiler] client \"".concat(typescript_class_helpers_1.CLASS.getNameFromObject(_this), "\" folderPath doesn't not exist ").concat(_this.folderPath));
|
|
59
59
|
return void 0;
|
|
60
60
|
}
|
|
61
61
|
}).filter(function (f) { return !!f; });
|
|
@@ -70,7 +70,7 @@ var BaseClientCompiler = /** @class */ (function () {
|
|
|
70
70
|
});
|
|
71
71
|
BaseClientCompiler.prototype.fixTaskName = function (taskName) {
|
|
72
72
|
if (!tnp_core_1._.isString(taskName)) {
|
|
73
|
-
taskName = "task of client \""
|
|
73
|
+
taskName = "task of client \"".concat(typescript_class_helpers_1.CLASS.getNameFromObject(this), "\"");
|
|
74
74
|
}
|
|
75
75
|
return taskName;
|
|
76
76
|
};
|
|
@@ -79,16 +79,16 @@ var BaseClientCompiler = /** @class */ (function () {
|
|
|
79
79
|
* Do not override this
|
|
80
80
|
*/
|
|
81
81
|
BaseClientCompiler.prototype.start = function (taskName, afterInitCallBack) {
|
|
82
|
-
return tslib_1.__awaiter(this, void 0, void 0, function () {
|
|
82
|
+
return (0, tslib_1.__awaiter)(this, void 0, void 0, function () {
|
|
83
83
|
var _this = this;
|
|
84
|
-
return tslib_1.__generator(this, function (_a) {
|
|
84
|
+
return (0, tslib_1.__generator)(this, function (_a) {
|
|
85
85
|
switch (_a.label) {
|
|
86
86
|
case 0:
|
|
87
87
|
compiler_manager_backend_1.CompilerManager.Instance.addClient(this);
|
|
88
88
|
taskName = this.fixTaskName(taskName);
|
|
89
89
|
if (!(this.folderPath.length > 0)) return [3 /*break*/, 2];
|
|
90
|
-
return [4 /*yield*/, this.compilationWrapper(function () { return tslib_1.__awaiter(_this, void 0, void 0, function () {
|
|
91
|
-
return tslib_1.__generator(this, function (_a) {
|
|
90
|
+
return [4 /*yield*/, this.compilationWrapper(function () { return (0, tslib_1.__awaiter)(_this, void 0, void 0, function () {
|
|
91
|
+
return (0, tslib_1.__generator)(this, function (_a) {
|
|
92
92
|
switch (_a.label) {
|
|
93
93
|
case 0: return [4 /*yield*/, compiler_manager_backend_1.CompilerManager.Instance.syncInit(this)];
|
|
94
94
|
case 1:
|
|
@@ -96,12 +96,12 @@ var BaseClientCompiler = /** @class */ (function () {
|
|
|
96
96
|
return [2 /*return*/];
|
|
97
97
|
}
|
|
98
98
|
});
|
|
99
|
-
}); }, tnp_cli_1.CLI.chalk.green('sync action')
|
|
99
|
+
}); }, "".concat(tnp_cli_1.CLI.chalk.green('sync action'), " for ").concat(taskName), 'Event:')];
|
|
100
100
|
case 1:
|
|
101
101
|
_a.sent();
|
|
102
102
|
return [3 /*break*/, 3];
|
|
103
103
|
case 2:
|
|
104
|
-
tnp_core_2.Helpers.log("No action for task: "
|
|
104
|
+
tnp_core_2.Helpers.log("No action for task: ".concat(taskName));
|
|
105
105
|
_a.label = 3;
|
|
106
106
|
case 3:
|
|
107
107
|
if (!tnp_core_1._.isFunction(afterInitCallBack)) return [3 /*break*/, 5];
|
|
@@ -120,17 +120,17 @@ var BaseClientCompiler = /** @class */ (function () {
|
|
|
120
120
|
* Do not override this
|
|
121
121
|
*/
|
|
122
122
|
BaseClientCompiler.prototype.startAndWatch = function (taskName, options) {
|
|
123
|
-
return tslib_1.__awaiter(this, void 0, void 0, function () {
|
|
123
|
+
return (0, tslib_1.__awaiter)(this, void 0, void 0, function () {
|
|
124
124
|
var _a, watchOnly, afterInitCallBack;
|
|
125
125
|
var _this = this;
|
|
126
|
-
return tslib_1.__generator(this, function (_b) {
|
|
126
|
+
return (0, tslib_1.__generator)(this, function (_b) {
|
|
127
127
|
switch (_b.label) {
|
|
128
128
|
case 0:
|
|
129
129
|
_a = options || {}, watchOnly = _a.watchOnly, afterInitCallBack = _a.afterInitCallBack;
|
|
130
130
|
taskName = this.fixTaskName(taskName);
|
|
131
131
|
if (!(this.folderPath.length > 0)) return [3 /*break*/, 7];
|
|
132
132
|
if (!watchOnly) return [3 /*break*/, 1];
|
|
133
|
-
console.log(tnp_cli_1.CLI.chalk.gray("[incremental-compiler] Watch mode only for \""
|
|
133
|
+
console.log(tnp_cli_1.CLI.chalk.gray("[incremental-compiler] Watch mode only for \"".concat(taskName, "\"")));
|
|
134
134
|
return [3 /*break*/, 3];
|
|
135
135
|
case 1: return [4 /*yield*/, this.start(taskName, afterInitCallBack)];
|
|
136
136
|
case 2:
|
|
@@ -138,8 +138,8 @@ var BaseClientCompiler = /** @class */ (function () {
|
|
|
138
138
|
_b.label = 3;
|
|
139
139
|
case 3:
|
|
140
140
|
if (!tnp_core_1._.isFunction(this.preAsyncAction)) return [3 /*break*/, 5];
|
|
141
|
-
return [4 /*yield*/, this.compilationWrapper(function () { return tslib_1.__awaiter(_this, void 0, void 0, function () {
|
|
142
|
-
return tslib_1.__generator(this, function (_a) {
|
|
141
|
+
return [4 /*yield*/, this.compilationWrapper(function () { return (0, tslib_1.__awaiter)(_this, void 0, void 0, function () {
|
|
142
|
+
return (0, tslib_1.__generator)(this, function (_a) {
|
|
143
143
|
switch (_a.label) {
|
|
144
144
|
case 0: return [4 /*yield*/, this.preAsyncAction()];
|
|
145
145
|
case 1:
|
|
@@ -147,7 +147,7 @@ var BaseClientCompiler = /** @class */ (function () {
|
|
|
147
147
|
return [2 /*return*/];
|
|
148
148
|
}
|
|
149
149
|
});
|
|
150
|
-
}); }, tnp_cli_1.CLI.chalk.green('pre-async action')
|
|
150
|
+
}); }, "".concat(tnp_cli_1.CLI.chalk.green('pre-async action'), " for ").concat(taskName), 'Event:')];
|
|
151
151
|
case 4:
|
|
152
152
|
_b.sent();
|
|
153
153
|
_b.label = 5;
|
|
@@ -156,7 +156,7 @@ var BaseClientCompiler = /** @class */ (function () {
|
|
|
156
156
|
_b.sent();
|
|
157
157
|
return [3 /*break*/, 8];
|
|
158
158
|
case 7:
|
|
159
|
-
tnp_core_2.Helpers.log("No action for task: "
|
|
159
|
+
tnp_core_2.Helpers.log("No action for task: ".concat(taskName));
|
|
160
160
|
_b.label = 8;
|
|
161
161
|
case 8: return [2 /*return*/, this];
|
|
162
162
|
}
|
|
@@ -169,7 +169,7 @@ var BaseClientCompiler = /** @class */ (function () {
|
|
|
169
169
|
return void 0;
|
|
170
170
|
};
|
|
171
171
|
BaseClientCompiler.prototype.preAsyncAction = function () {
|
|
172
|
-
return tslib_1.__awaiter(this, void 0, void 0, function () { return tslib_1.__generator(this, function (_a) {
|
|
172
|
+
return (0, tslib_1.__awaiter)(this, void 0, void 0, function () { return (0, tslib_1.__generator)(this, function (_a) {
|
|
173
173
|
return [2 /*return*/];
|
|
174
174
|
}); });
|
|
175
175
|
};
|
|
@@ -179,4 +179,5 @@ var BaseClientCompiler = /** @class */ (function () {
|
|
|
179
179
|
return BaseClientCompiler;
|
|
180
180
|
}());
|
|
181
181
|
exports.BaseClientCompiler = BaseClientCompiler;
|
|
182
|
-
//# sourceMappingURL=base-client-compiler.backend.js.map
|
|
182
|
+
//# sourceMappingURL=base-client-compiler.backend.js.map
|
|
183
|
+
// @fixed
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"base-client-compiler.backend.js","sourceRoot":"","sources":["../../src/lib/base-client-compiler.backend.ts"],"names":[],"mappings":";;;;AAAA,qCAA2D;AAC3D,qEAAiD;AAGjD,uEAA6D;AAE7D,qCAAmC;AACnC,mCAA8B;AAG9B;IAYE,4BAAY,OAA0C;QARtC,qBAAgB,GAAiC,EAAE,CAAA;QAI5D,uBAAkB,GAAG,kBAAO,CAAC,kBAAkB,CAAC;QAC/C,gBAAW,GAAG,KAAK,CAAC;QACpB,iBAAY,GAAa,EAAE,CAAC;QAGlC,IAAI,YAAC,CAAC,WAAW,CAAC,OAAO,CAAC,EAAE;YAC1B,OAAO,GAAG,EAAS,CAAC;SACrB;QACD,IAAI,YAAC,CAAC,WAAW,CAAC,OAAO,CAAC,sBAAsB,CAAC,EAAE;YACjD,OAAO,CAAC,sBAAsB,GAAG,IAAI,CAAC;SACvC;QACD,IAAI,CAAC,YAAC,CAAC,OAAO,CAAC,OAAO,CAAC,gBAAgB,CAAC,EAAE;YACxC,OAAO,CAAC,gBAAgB,GAAG,EAAE,CAAA;SAC9B;QACD,IAAI,YAAC,CAAC,WAAW,CAAC,OAAO,CAAC,UAAU,CAAC,EAAE;YACrC,OAAO,CAAC,UAAU,GAAG,EAAE,CAAC;SACzB;QACD,IAAI,YAAC,CAAC,QAAQ,CAAC,OAAO,CAAC,UAAU,CAAC,EAAE;YAClC,OAAO,CAAC,UAAU,GAAG,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC;SAC3C;QACD,IAAI,CAAC,YAAC,CAAC,QAAQ,CAAC,OAAO,CAAC,UAAU,CAAC,IAAI,CAAC,YAAC,CAAC,OAAO,CAAC,OAAO,CAAC,UAAU,CAAC,EAAE;YACrE,kBAAO,CAAC,KAAK,CAAC,uCAAuC,EAAE,KAAK,EAAE,IAAI,CAAC,CAAC;SACrE;QACD,IAAI,YAAC,CAAC,WAAW,CAAC,OAAO,CAAC,UAAU,CAAC,EAAE;YACrC,OAAO,CAAC,UAAU,GAAG,MAAM,CAAC,iBAAiB,CAAC;SAC/C;QACD,IAAI,YAAC,CAAC,QAAQ,CAAC,OAAO,CAAC,UAAU,CAAC,EAAE;YAClC,OAAO,CAAC,UAAU,GAAG,IAAI,CAAC,GAAG,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC;SACnD;QACD,IAAI,YAAC,CAAC,WAAW,CAAC,OAAO,CAAC,cAAc,CAAC,EAAE;YACzC,OAAO,CAAC,cAAc,GAAG,IAAI,CAAC;SAC/B;QACD,IAAI,YAAC,CAAC,WAAW,CAAC,OAAO,CAAC,kBAAkB,CAAC,EAAE;YAC7C,OAAO,CAAC,kBAAkB,GAAG,KAAK,CAAC;SACpC;QACD,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;IAC/B,CAAC;IAED,sBAAW,0CAAU;aAGrB;YAAA,iBAaC;YAZC,IAAI,CAAC,IAAI,CAAC,WAAW,EAAE;gBACrB,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;gBACxB,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,UAAA,CAAC;oBACrB,IAAI,cAAG,CAAC,UAAU,CAAC,CAAC,CAAC,EAAE;wBACrB,OAAO,IAAA,4BAAiB,EAAC,eAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC;qBAC3C;yBAAM;wBACL,kBAAO,CAAC,IAAI,CAAC,wCAAgC,gCAAK,CAAC,iBAAiB,CAAC,KAAI,CAAC,6CAAkC,KAAI,CAAC,UAAU,CAAE,CAAC,CAAA;wBAC9H,OAAO,KAAK,CAAC,CAAC;qBACf;gBACH,CAAC,CAAC,CAAC,MAAM,CAAC,UAAA,CAAC,IAAI,OAAA,CAAC,CAAC,CAAC,EAAH,CAAG,CAAC,CAAC;aACrB;YACD,OAAO,IAAI,CAAC,YAAY,CAAC;QAC3B,CAAC;aAhBD,UAAsB,CAAC;YACrB,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC;QACxB,CAAC;;;OAAA;IAgBO,wCAAW,GAAnB,UAAoB,QAAgB;QAClC,IAAI,CAAC,YAAC,CAAC,QAAQ,CAAC,QAAQ,CAAC,EAAE;YACzB,QAAQ,GAAG,2BAAmB,gCAAK,CAAC,iBAAiB,CAAC,IAAI,CAAC,OAAG,CAAC;SAChE;QACD,OAAO,QAAQ,CAAC;IAClB,CAAC;IAGD,eAAe;IACf;;OAEG;IACU,kCAAK,GAAlB,UAAmB,QAAiB,EAAE,iBAA8B;;;;;;wBAElE,0CAAe,CAAC,QAAQ,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC;wBACzC,QAAQ,GAAG,IAAI,CAAC,WAAW,CAAC,QAAQ,CAAC,CAAA;6BACjC,CAAA,IAAI,CAAC,UAAU,CAAC,MAAM,GAAG,CAAC,CAAA,EAA1B,wBAA0B;wBAC5B,qBAAM,IAAI,CAAC,kBAAkB,CAAC;;;gDAC5B,qBAAM,0CAAe,CAAC,QAAQ,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAA;;4CAA7C,SAA6C,CAAC;;;;iCAC/C,EAAE,UAAG,aAAG,CAAC,KAAK,CAAC,KAAK,CAAC,aAAa,CAAC,kBAAQ,QAAQ,CAAE,EAAE,QAAQ,CAAC,EAAA;;wBAFjE,SAEiE,CAAC;;;wBAElE,kBAAO,CAAC,GAAG,CAAC,8BAAuB,QAAQ,CAAE,CAAC,CAAA;;;6BAE5C,YAAC,CAAC,UAAU,CAAC,iBAAiB,CAAC,EAA/B,wBAA+B;wBACjC,qBAAM,kBAAO,CAAC,cAAc,CAAC,iBAAiB,CAAC,EAAA;;wBAA/C,SAA+C,CAAC;;4BAElD,sBAAO,IAAI,EAAC;;;;KACb;IACD,YAAY;IAEZ,yBAAyB;IACzB;;OAEG;IACU,0CAAa,GAA1B,UAA2B,QAAiB,EAAE,OAAqC;;;;;;;wBAE3E,KAAmC,OAAO,IAAI,EAAE,EAA9C,SAAS,eAAA,EAAE,iBAAiB,uBAAA,CAAmB;wBAEvD,QAAQ,GAAG,IAAI,CAAC,WAAW,CAAC,QAAQ,CAAC,CAAA;6BACjC,CAAA,IAAI,CAAC,UAAU,CAAC,MAAM,GAAG,CAAC,CAAA,EAA1B,wBAA0B;6BACxB,SAAS,EAAT,wBAAS;wBACX,OAAO,CAAC,GAAG,CAAC,aAAG,CAAC,KAAK,CAAC,IAAI,CAAC,uDAA+C,QAAQ,OAAG,CAAC,CAAC,CAAC;;4BAExF,qBAAM,IAAI,CAAC,KAAK,CAAC,QAAQ,EAAE,iBAAiB,CAAC,EAAA;;wBAA7C,SAA6C,CAAC;;;6BAE5C,YAAC,CAAC,UAAU,CAAC,IAAI,CAAC,cAAc,CAAC,EAAjC,wBAAiC;wBACnC,qBAAM,IAAI,CAAC,kBAAkB,CAAC;;;gDAC5B,qBAAM,IAAI,CAAC,cAAc,EAAE,EAAA;;4CAA3B,SAA2B,CAAA;;;;iCAC5B,EACC,UAAG,aAAG,CAAC,KAAK,CAAC,KAAK,CAAC,kBAAkB,CAAC,kBAAQ,QAAQ,CAAE,EAAE,QAAQ,CAAC,EAAA;;wBAHrE,SAGqE,CAAC;;4BAExE,qBAAM,0CAAe,CAAC,QAAQ,CAAC,SAAS,CAAC,IAAI,CAAC,EAAA;;wBAA9C,SAA8C,CAAC;;;wBAE/C,kBAAO,CAAC,GAAG,CAAC,8BAAuB,QAAQ,CAAE,CAAC,CAAA;;4BAEhD,sBAAO,IAAI,EAAC;;;;KACb;IACD,YAAY;IAEZ,iBAAiB;IACV,uCAAU,GAAjB,UAAkB,kBAA6B;QAC7C,OAAO,KAAK,CAAC,CAAC;IAChB,CAAC;IACY,2CAAc,GAA3B;;;;KAAiC;IAG1B,wCAAW,GAAlB,UAAmB,WAAyB,EAAE,cAAgC;QAC5E,OAAO,KAAK,CAAC,CAAC;IAChB,CAAC;IAGH,yBAAC;AAAD,CAAC,AAvID,IAuIC;AAvIY,gDAAkB"}
|
|
File without changes
|
|
@@ -46,9 +46,10 @@ var ChangeOfFile = /** @class */ (function () {
|
|
|
46
46
|
configurable: true
|
|
47
47
|
});
|
|
48
48
|
ChangeOfFile.prototype.clientsBy = function (clientNameOrClass, condition) {
|
|
49
|
-
return helpers_backend_1.clientsBy(clientNameOrClass, condition, this.clientsForChange);
|
|
49
|
+
return (0, helpers_backend_1.clientsBy)(clientNameOrClass, condition, this.clientsForChange);
|
|
50
50
|
};
|
|
51
51
|
return ChangeOfFile;
|
|
52
52
|
}());
|
|
53
53
|
exports.ChangeOfFile = ChangeOfFile;
|
|
54
|
-
//# sourceMappingURL=change-of-file.backend.js.map
|
|
54
|
+
//# sourceMappingURL=change-of-file.backend.js.map
|
|
55
|
+
// @fixed
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"change-of-file.backend.js","sourceRoot":"","sources":["../../src/lib/change-of-file.backend.ts"],"names":[],"mappings":";;;AAAA,iBAAiB;AACjB,qCAAmC;AACnC,qDAA8C;AAG9C,YAAY;AAEZ;IAKE,sBACE,gBAA2C,EACpC,gBAAiC,EACxB,SAA+C;QAF/D,iCAAA,EAAA,qBAA2C;QACpC,iCAAA,EAAA,wBAAgC,CAAC;QACxB,0BAAA,EAAA,iBAA8C,CAAC;QADxD,qBAAgB,GAAhB,gBAAgB,CAAiB;QACxB,cAAS,GAAT,SAAS,CAAsC;QAP1D,gBAAW,GAAyB,EAAE,CAAC;QAC7B,sBAAiB,GAAyB,EAAE,CAAC;QAQ5D,IAAI,CAAC,iBAAiB,GAAG,gBAAgB,CAAC;QAC1C,IAAI,CAAC,QAAQ,GAAG,IAAI,IAAI,EAAE,CAAC;IAC7B,CAAC;IAED,sBAAW,0CAAgB;aAA3B;YAAA,iBAEC;YADC,OAAO,IAAI,CAAC,iBAAiB,CAAC,MAAM,CAAC,UAAA,CAAC,IAAI,OAAA,CAAC,KAAI,CAAC,WAAW,CAAC,QAAQ,CAAC,CAAC,CAAC,EAA7B,CAA6B,CAAC,CAAC;QAC3E,CAAC;;;OAAA;IAED,sBAAW,mDAAyB;aAApC;YAAA,iBAOC;YANC,OAAO,IAAI,CAAC,gBAAgB,CAAC,MAAM,CAAC,UAAA,CAAC;gBACnC,IAAI,CAAC,YAAC,CAAC,OAAO,CAAC,CAAC,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC,gBAAgB,CAAC,MAAM,KAAK,CAAC,EAAE;oBACrE,OAAO,IAAI,CAAC;iBACb;gBACD,OAAO,CAAC,CAAC,gBAAgB,CAAC,QAAQ,CAAC,KAAI,CAAC,OAAO,CAAC,CAAC;YACnD,CAAC,CAAC,CAAC;QACL,CAAC;;;OAAA;IACD,sBAAW,iCAAO;aAAlB;YACE,OAAO,eAAI,CAAC,OAAO,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC,OAAO,CAAC,GAAG,EAAE,EAAE,CAA+B,CAAC;QAC5F,CAAC;;;OAAA;IAED,gCAAS,GAAT,UAAkC,iBAAoC,EACpE,SAA6B;QAC7B,OAAO,IAAA,2BAAS,EAAC,iBAAiB,EAAE,SAAS,EAAE,IAAI,CAAC,gBAAgB,CAAC,CAAC;IACxE,CAAC;IAEH,mBAAC;AAAD,CAAC,AAnCD,IAmCC;AAnCY,oCAAY"}
|
|
File without changes
|