incremental-compiler 13.1.25 → 16.0.28
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/assets/shared/shared_folder_info.txt +1 -1
- package/browser/{esm2020 → esm2022}/incremental-compiler.mjs +4 -4
- package/{client/esm2020 → browser/esm2022}/lib/index.mjs +74 -74
- package/browser/{esm2020 → esm2022}/lib/models.mjs +5 -5
- package/{client/esm2020 → browser/esm2022}/public-api.mjs +1 -1
- package/{client/fesm2015 → browser/fesm2022}/incremental-compiler.mjs +74 -74
- package/browser/{incremental-compiler.d.ts → index.d.ts} +4 -4
- package/browser/lib/models.d.ts +33 -33
- package/browser/package.json +6 -12
- package/client/{esm2020 → esm2022}/incremental-compiler.mjs +4 -4
- package/{browser/esm2020 → client/esm2022}/lib/index.mjs +74 -74
- package/client/{esm2020 → esm2022}/lib/models.mjs +5 -5
- package/{browser/esm2020 → client/esm2022}/public-api.mjs +1 -1
- package/{browser/fesm2015 → client/fesm2022}/incremental-compiler.mjs +74 -74
- package/client/{incremental-compiler.d.ts → index.d.ts} +4 -4
- package/client/lib/models.d.ts +33 -33
- package/client/package.json +89 -85
- package/index.d.ts +1 -1
- package/lib/base-client-compiler.backend.d.ts +56 -56
- package/lib/change-of-file.backend.d.ts +14 -14
- package/lib/compiler-manager.backend.d.ts +26 -26
- package/lib/compiler-manager.backend.js +1 -0
- package/lib/compiler-manager.backend.js.map +1 -1
- package/lib/decorators.backend.d.ts +5 -5
- package/lib/helpers.backend.d.ts +3 -3
- package/lib/index.d.ts +40 -40
- package/lib/models.d.ts +34 -34
- package/package.json +4 -4
- package/package.json_tnp.json5 +1 -1
- package/tmp-environment.json +94 -90
- package/websql/{esm2020 → esm2022}/incremental-compiler.mjs +4 -4
- package/websql/{esm2020 → esm2022}/lib/index.mjs +74 -74
- package/websql/{esm2020 → esm2022}/lib/models.mjs +5 -5
- package/websql/{esm2020 → esm2022}/public-api.mjs +1 -1
- package/{browser/fesm2020 → websql/fesm2022}/incremental-compiler.mjs +74 -74
- package/websql/{incremental-compiler.d.ts → index.d.ts} +4 -4
- package/websql/lib/models.d.ts +33 -33
- package/websql/package.json +6 -12
- package/client/fesm2015/incremental-compiler.mjs.map +0 -1
- package/client/fesm2020/incremental-compiler.mjs +0 -78
- package/client/fesm2020/incremental-compiler.mjs.map +0 -1
- package/websql/fesm2015/incremental-compiler.mjs +0 -78
- package/websql/fesm2020/incremental-compiler.mjs +0 -78
- package/websql/fesm2020/incremental-compiler.mjs.map +0 -1
- /package/browser/{fesm2015 → fesm2022}/incremental-compiler.mjs.map +0 -0
- /package/{browser/fesm2020 → client/fesm2022}/incremental-compiler.mjs.map +0 -0
- /package/websql/{fesm2015 → fesm2022}/incremental-compiler.mjs.map +0 -0
@@ -1,26 +1,26 @@
|
|
1
|
-
import { ChangeOfFile } from './change-of-file.backend';
|
2
|
-
import { BaseClientCompiler } from './base-client-compiler.backend';
|
3
|
-
export declare class CompilerManager {
|
4
|
-
private static _instance;
|
5
|
-
static get Instance(): CompilerManager;
|
6
|
-
private watchers;
|
7
|
-
private currentObservedFolder;
|
8
|
-
private clients;
|
9
|
-
private asyncEventScenario;
|
10
|
-
private inited;
|
11
|
-
private filesContentCache;
|
12
|
-
get allClients(): {
|
13
|
-
get<T = BaseClientCompiler<any, any, any>>(clientNameOrClass: string | Function, condition: (c: T) => boolean): BaseClientCompiler<any, any, any>[] | T[];
|
14
|
-
};
|
15
|
-
private constructor();
|
16
|
-
syncInit(client: BaseClientCompiler): Promise<void>;
|
17
|
-
asyncInit(client: BaseClientCompiler): Promise<void>;
|
18
|
-
private actionForAsyncEvent;
|
19
|
-
addClient(client: BaseClientCompiler): void;
|
20
|
-
/**
|
21
|
-
* @deprecated
|
22
|
-
*/
|
23
|
-
initScenario(onAsyncFileChange?: (event: ChangeOfFile) => Promise<any>): Promise<void>;
|
24
|
-
private preventAlreadyInited;
|
25
|
-
private fileShouldBeChecked;
|
26
|
-
}
|
1
|
+
import { ChangeOfFile } from './change-of-file.backend';
|
2
|
+
import { BaseClientCompiler } from './base-client-compiler.backend';
|
3
|
+
export declare class CompilerManager {
|
4
|
+
private static _instance;
|
5
|
+
static get Instance(): CompilerManager;
|
6
|
+
private watchers;
|
7
|
+
private currentObservedFolder;
|
8
|
+
private clients;
|
9
|
+
private asyncEventScenario;
|
10
|
+
private inited;
|
11
|
+
private filesContentCache;
|
12
|
+
get allClients(): {
|
13
|
+
get<T = BaseClientCompiler<any, any, any>>(clientNameOrClass: string | Function, condition: (c: T) => boolean): BaseClientCompiler<any, any, any>[] | T[];
|
14
|
+
};
|
15
|
+
private constructor();
|
16
|
+
syncInit(client: BaseClientCompiler): Promise<void>;
|
17
|
+
asyncInit(client: BaseClientCompiler): Promise<void>;
|
18
|
+
private actionForAsyncEvent;
|
19
|
+
addClient(client: BaseClientCompiler): void;
|
20
|
+
/**
|
21
|
+
* @deprecated
|
22
|
+
*/
|
23
|
+
initScenario(onAsyncFileChange?: (event: ChangeOfFile) => Promise<any>): Promise<void>;
|
24
|
+
private preventAlreadyInited;
|
25
|
+
private fileShouldBeChecked;
|
26
|
+
}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"compiler-manager.backend.js","sourceRoot":"","sources":["C:/Users/darek/projects/npm/firedev-io/incremental-compiler/tmp-bundle-release/bundle/project/incremental-compiler/src/lib/compiler-manager.backend.ts"],"names":[],"mappings":";;;;AAAA,iBAAiB;AACjB,qCAA2E;AAC3E,qEAAiD;AACjD,qDAA8D;AAC9D,qCAAmC;AACnC,mEAAwD;AAGxD,kCAAkC;AAClC,qBAAqB;AACrB,gCAAgC;AAChC,YAAY;AACZ,YAAY;AAEZ;IAkCE,YAAY;IAEZ,qBAAqB;IACrB;QA3BA,YAAY;QACZ,YAAY;QAEZ,0BAA0B;QAClB,aAAQ,GAAG,EAAoD,CAAC;QAEhE,0BAAqB,GAAG,EAAyC,CAAC;QAClE,YAAO,GAAyB,EAAE,CAAC;QAEnC,WAAM,GAAG,KAAK,CAAC;QACf,sBAAiB,GAAG,EAAE,CAAC;IAiBP,CAAC;IAjCzB,sBAAkB,2BAAQ;aAA1B;YACE,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE;gBACnB,IAAI,CAAC,SAAS,GAAG,IAAI,eAAe,EAAE,CAAC;aACxC;YACD,OAAO,IAAI,CAAC,SAAS,CAAC;QACxB,CAAC;;;OAAA;IAaD,sBAAW,uCAAU;aAArB;YACE,IAAM,IAAI,GAAG,IAAI,CAAC;YAClB,OAAO;gBACL,GAAG,
|
1
|
+
{"version":3,"file":"compiler-manager.backend.js","sourceRoot":"","sources":["C:/Users/darek/projects/npm/firedev-io/incremental-compiler/tmp-bundle-release/bundle/project/incremental-compiler/src/lib/compiler-manager.backend.ts"],"names":[],"mappings":"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"}
|
@@ -1,5 +1,5 @@
|
|
1
|
-
export declare function AsyncAction(): (target: object, propertyKey: string, propertyDescriptor: PropertyDescriptor) => void;
|
2
|
-
export interface IncCompilerClassOptions {
|
3
|
-
className: string;
|
4
|
-
}
|
5
|
-
export declare function IncCompilerClass(options: IncCompilerClassOptions): (target: any) => void;
|
1
|
+
export declare function AsyncAction(): (target: object, propertyKey: string, propertyDescriptor: PropertyDescriptor) => void;
|
2
|
+
export interface IncCompilerClassOptions {
|
3
|
+
className: string;
|
4
|
+
}
|
5
|
+
export declare function IncCompilerClass(options: IncCompilerClassOptions): (target: any) => void;
|
package/lib/helpers.backend.d.ts
CHANGED
@@ -1,3 +1,3 @@
|
|
1
|
-
import { BaseClientCompiler } from './base-client-compiler.backend';
|
2
|
-
export declare function mapForWatching(c: string): string[];
|
3
|
-
export declare function clientsBy<T = BaseClientCompiler>(clientNameOrClass: string | Function, condition: (c: T) => boolean, clients: BaseClientCompiler[]): T[];
|
1
|
+
import { BaseClientCompiler } from './base-client-compiler.backend';
|
2
|
+
export declare function mapForWatching(c: string): string[];
|
3
|
+
export declare function clientsBy<T = BaseClientCompiler>(clientNameOrClass: string | Function, condition: (c: T) => boolean, clients: BaseClientCompiler[]): T[];
|
package/lib/index.d.ts
CHANGED
@@ -1,40 +1,40 @@
|
|
1
|
-
import * as models from './models';
|
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
|
-
/**
|
9
|
-
* Template for watcher client:
|
10
|
-
*
|
11
|
-
* import { IncCompiler } from 'firedev'
|
12
|
-
*
|
13
|
-
* IncCompiler.init( asyncChangeOfFile => {
|
14
|
-
*
|
15
|
-
* })
|
16
|
-
*
|
17
|
-
* @IncCompiler.Class({ className: 'TestWatcher' })
|
18
|
-
* export class TestWatcher extends IncCompiler.Base {
|
19
|
-
*
|
20
|
-
* syncAction(files = []) { }
|
21
|
-
* preAsyncAction() { }
|
22
|
-
* asyncAction(change: IncCompiler.Change, additionalData:any ) { }
|
23
|
-
* }
|
24
|
-
*/
|
25
|
-
export declare namespace IncCompiler {
|
26
|
-
export import Models = models.Models;
|
27
|
-
/**
|
28
|
-
* 1. Only one task at the time
|
29
|
-
* 2. Only files changes not directories
|
30
|
-
* @deprecated
|
31
|
-
*/
|
32
|
-
function allClients<T>(clientNameOrClass?: string | Function, condition?: (c: T) => boolean): Base<any, any, any>[] | T[];
|
33
|
-
export import Base = incBase.BaseClientCompiler;
|
34
|
-
export import Class = deco.IncCompilerClass;
|
35
|
-
namespace methods {
|
36
|
-
export import AsyncAction = deco.AsyncAction;
|
37
|
-
}
|
38
|
-
export import Change = change.ChangeOfFile;
|
39
|
-
function getInstance<CLASS_TYPE>(compilerClassName: string): CLASS_TYPE;
|
40
|
-
}
|
1
|
+
import * as models from './models';
|
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
|
+
/**
|
9
|
+
* Template for watcher client:
|
10
|
+
*
|
11
|
+
* import { IncCompiler } from 'firedev'
|
12
|
+
*
|
13
|
+
* IncCompiler.init( asyncChangeOfFile => {
|
14
|
+
*
|
15
|
+
* })
|
16
|
+
*
|
17
|
+
* @IncCompiler.Class({ className: 'TestWatcher' })
|
18
|
+
* export class TestWatcher extends IncCompiler.Base {
|
19
|
+
*
|
20
|
+
* syncAction(files = []) { }
|
21
|
+
* preAsyncAction() { }
|
22
|
+
* asyncAction(change: IncCompiler.Change, additionalData:any ) { }
|
23
|
+
* }
|
24
|
+
*/
|
25
|
+
export declare namespace IncCompiler {
|
26
|
+
export import Models = models.Models;
|
27
|
+
/**
|
28
|
+
* 1. Only one task at the time
|
29
|
+
* 2. Only files changes not directories
|
30
|
+
* @deprecated
|
31
|
+
*/
|
32
|
+
function allClients<T>(clientNameOrClass?: string | Function, condition?: (c: T) => boolean): Base<any, any, any>[] | T[];
|
33
|
+
export import Base = incBase.BaseClientCompiler;
|
34
|
+
export import Class = deco.IncCompilerClass;
|
35
|
+
namespace methods {
|
36
|
+
export import AsyncAction = deco.AsyncAction;
|
37
|
+
}
|
38
|
+
export import Change = change.ChangeOfFile;
|
39
|
+
function getInstance<CLASS_TYPE>(compilerClassName: string): CLASS_TYPE;
|
40
|
+
}
|
package/lib/models.d.ts
CHANGED
@@ -1,34 +1,34 @@
|
|
1
|
-
import { ConfigModels } from 'tnp-config';
|
2
|
-
export declare namespace Models {
|
3
|
-
interface StartAndWatchOptions {
|
4
|
-
afterInitCallBack?: () => void;
|
5
|
-
watchOnly?: boolean;
|
6
|
-
}
|
7
|
-
interface BaseClientCompilerOptions {
|
8
|
-
folderPath?: string | string[];
|
9
|
-
/**
|
10
|
-
* It will cache in memory previouse files
|
11
|
-
* to limit async actions calls
|
12
|
-
* and prevent not changed files emiting change event
|
13
|
-
*/
|
14
|
-
folderPathContentCheck?: string | string[];
|
15
|
-
watchDepth?: Number;
|
16
|
-
/**
|
17
|
-
* default true
|
18
|
-
*/
|
19
|
-
followSymlinks?: boolean;
|
20
|
-
/**
|
21
|
-
* Notify compiler if file is unlinked
|
22
|
-
* default: false
|
23
|
-
*/
|
24
|
-
notifyOnFileUnlink?: boolean;
|
25
|
-
ignoreFolderPatter?: string[];
|
26
|
-
allowedOnlyFileExt?: string[];
|
27
|
-
/**
|
28
|
-
* useful when using **allowedOnlyFileExt**
|
29
|
-
*/
|
30
|
-
additionallyAllowedFilesWithNames?: string[];
|
31
|
-
executeOutsideScenario?: boolean;
|
32
|
-
subscribeOnlyFor?: ConfigModels.FileExtension[];
|
33
|
-
}
|
34
|
-
}
|
1
|
+
import { ConfigModels } from 'tnp-config';
|
2
|
+
export declare namespace Models {
|
3
|
+
interface StartAndWatchOptions {
|
4
|
+
afterInitCallBack?: () => void;
|
5
|
+
watchOnly?: boolean;
|
6
|
+
}
|
7
|
+
interface BaseClientCompilerOptions {
|
8
|
+
folderPath?: string | string[];
|
9
|
+
/**
|
10
|
+
* It will cache in memory previouse files
|
11
|
+
* to limit async actions calls
|
12
|
+
* and prevent not changed files emiting change event
|
13
|
+
*/
|
14
|
+
folderPathContentCheck?: string | string[];
|
15
|
+
watchDepth?: Number;
|
16
|
+
/**
|
17
|
+
* default true
|
18
|
+
*/
|
19
|
+
followSymlinks?: boolean;
|
20
|
+
/**
|
21
|
+
* Notify compiler if file is unlinked
|
22
|
+
* default: false
|
23
|
+
*/
|
24
|
+
notifyOnFileUnlink?: boolean;
|
25
|
+
ignoreFolderPatter?: string[];
|
26
|
+
allowedOnlyFileExt?: string[];
|
27
|
+
/**
|
28
|
+
* useful when using **allowedOnlyFileExt**
|
29
|
+
*/
|
30
|
+
additionallyAllowedFilesWithNames?: string[];
|
31
|
+
executeOutsideScenario?: boolean;
|
32
|
+
subscribeOnlyFor?: ConfigModels.FileExtension[];
|
33
|
+
}
|
34
|
+
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "incremental-compiler",
|
3
|
-
"version": "
|
3
|
+
"version": "16.0.28",
|
4
4
|
"license": "MIT",
|
5
5
|
"dependencies": {
|
6
6
|
"@types/chokidar": "2.1.3",
|
@@ -11,11 +11,11 @@
|
|
11
11
|
"dateformat": "3.0.3",
|
12
12
|
"fs-extra": "8.1.0",
|
13
13
|
"glob": "7.1.2",
|
14
|
-
"tnp-cli": "~
|
15
|
-
"typescript-class-helpers": "~
|
14
|
+
"tnp-cli": "~16.0.3",
|
15
|
+
"typescript-class-helpers": "~16.0.14"
|
16
16
|
},
|
17
17
|
"private": false,
|
18
|
-
"lastBuildTagHash": "
|
18
|
+
"lastBuildTagHash": "5e282ba92bf62b670e23a87b47e58894c37dff1a",
|
19
19
|
"main": "index.js",
|
20
20
|
"devDependencies": {}
|
21
21
|
}
|
package/package.json_tnp.json5
CHANGED
package/tmp-environment.json
CHANGED
@@ -39,7 +39,7 @@
|
|
39
39
|
"type": "isomorphic-lib",
|
40
40
|
"isCoreProject": false,
|
41
41
|
"useFramework": false,
|
42
|
-
"version": "
|
42
|
+
"version": "v4",
|
43
43
|
"isGenerated": false,
|
44
44
|
"license": "MIT",
|
45
45
|
"private": false,
|
@@ -50,7 +50,7 @@
|
|
50
50
|
]
|
51
51
|
},
|
52
52
|
"name": "incremental-compiler",
|
53
|
-
"version": "
|
53
|
+
"version": "16.0.28",
|
54
54
|
"license": "MIT",
|
55
55
|
"dependencies": {
|
56
56
|
"@types/chokidar": "2.1.3",
|
@@ -61,52 +61,55 @@
|
|
61
61
|
"dateformat": "3.0.3",
|
62
62
|
"fs-extra": "8.1.0",
|
63
63
|
"glob": "7.1.2",
|
64
|
-
"tnp-cli": "~
|
65
|
-
"typescript-class-helpers": "~
|
64
|
+
"tnp-cli": "~16.0.3",
|
65
|
+
"typescript-class-helpers": "~16.0.14"
|
66
66
|
},
|
67
67
|
"private": false,
|
68
|
-
"lastBuildTagHash": "
|
68
|
+
"lastBuildTagHash": "5e282ba92bf62b670e23a87b47e58894c37dff1a",
|
69
69
|
"main": "index.js",
|
70
70
|
"devDependencies": {
|
71
|
-
"@angular-devkit/build-angular": "~
|
72
|
-
"@angular-devkit/core": "~
|
71
|
+
"@angular-devkit/build-angular": "~16.0.5",
|
72
|
+
"@angular-devkit/core": "~16.0.5",
|
73
73
|
"@angular-material-extensions/fab-menu": "~6.1.0",
|
74
|
-
"@angular/animations": "~
|
75
|
-
"@angular/cdk": "~
|
76
|
-
"@angular/cli": "~
|
77
|
-
"@angular/common": "~
|
78
|
-
"@angular/compiler": "~
|
79
|
-
"@angular/compiler-cli": "~
|
80
|
-
"@angular/core": "~
|
81
|
-
"@angular/
|
82
|
-
"@angular/forms": "~
|
83
|
-
"@angular/material": "~
|
84
|
-
"@angular/platform-browser": "~
|
85
|
-
"@angular/platform-browser-dynamic": "~
|
86
|
-
"@angular/pwa": "~
|
87
|
-
"@angular/router": "~
|
88
|
-
"@angular/service-worker": "~
|
74
|
+
"@angular/animations": "~16.0.0",
|
75
|
+
"@angular/cdk": "~16.0.3",
|
76
|
+
"@angular/cli": "~16.0.5",
|
77
|
+
"@angular/common": "~16.0.0",
|
78
|
+
"@angular/compiler": "~16.0.0",
|
79
|
+
"@angular/compiler-cli": "~16.0.4",
|
80
|
+
"@angular/core": "~16.0.0",
|
81
|
+
"@angular/elements": "~16.0.4",
|
82
|
+
"@angular/forms": "~16.0.0",
|
83
|
+
"@angular/material": "~16.0.3",
|
84
|
+
"@angular/platform-browser": "~16.0.4",
|
85
|
+
"@angular/platform-browser-dynamic": "~16.0.4",
|
86
|
+
"@angular/pwa": "~16.0.5",
|
87
|
+
"@angular/router": "~16.0.0",
|
88
|
+
"@angular/service-worker": "~16.0.4",
|
89
89
|
"@babel/cli": "7.18.6",
|
90
90
|
"@iconify/icons-fa-solid": "1.2.2",
|
91
91
|
"@iconify/icons-mdi": "1.2.1",
|
92
|
-
"@mdi/js": "
|
93
|
-
"@ng-matero/extensions": "
|
92
|
+
"@mdi/js": "7.2.96",
|
93
|
+
"@ng-matero/extensions": "16.0.0",
|
94
94
|
"@ngneat/falso": "6.4.0",
|
95
|
-
"@ngneat/hot-toast": "
|
96
|
-
"@ngneat/overview": "
|
97
|
-
"@ngneat/
|
98
|
-
"@ngrx/component-store": "~
|
99
|
-
"@ngrx/data": "~
|
100
|
-
"@ngrx/effects": "~
|
101
|
-
"@ngrx/entity": "~
|
102
|
-
"@ngrx/router-store": "~
|
103
|
-
"@ngrx/schematics": "~
|
104
|
-
"@ngrx/store": "~
|
105
|
-
"@ngrx/store-devtools": "~
|
106
|
-
"@ngx-formly/core": "6.
|
107
|
-
"@ngx-formly/material": "6.
|
108
|
-
"@ngx-translate/core": "
|
109
|
-
"@ngx-translate/http-loader": "
|
95
|
+
"@ngneat/hot-toast": "5.0.1",
|
96
|
+
"@ngneat/overview": "5.0.0",
|
97
|
+
"@ngneat/spectator": "15.0.0",
|
98
|
+
"@ngrx/component-store": "~16.0.1",
|
99
|
+
"@ngrx/data": "~16.0.1",
|
100
|
+
"@ngrx/effects": "~16.0.1",
|
101
|
+
"@ngrx/entity": "~16.0.1",
|
102
|
+
"@ngrx/router-store": "~16.0.1",
|
103
|
+
"@ngrx/schematics": "~16.0.1",
|
104
|
+
"@ngrx/store": "~16.0.1",
|
105
|
+
"@ngrx/store-devtools": "~16.0.1",
|
106
|
+
"@ngx-formly/core": "6.1.7",
|
107
|
+
"@ngx-formly/material": "6.1.7",
|
108
|
+
"@ngx-translate/core": "15.0.0",
|
109
|
+
"@ngx-translate/http-loader": "8.0.0",
|
110
|
+
"@testdeck/jasmine": "0.3.3",
|
111
|
+
"@testdeck/jest": "0.3.3",
|
112
|
+
"@testdeck/mocha": "0.3.3",
|
110
113
|
"@types/chai": "4.1.2",
|
111
114
|
"@types/diff": "3.2.2",
|
112
115
|
"@types/express": "4.11.0",
|
@@ -114,7 +117,7 @@
|
|
114
117
|
"@types/http-proxy": "1.16.0",
|
115
118
|
"@types/http-proxy-middleware": "0.19.2",
|
116
119
|
"@types/inquirer": "7.3.1",
|
117
|
-
"@types/jasmine": "3.
|
120
|
+
"@types/jasmine": "4.3.0",
|
118
121
|
"@types/json-stringify-safe": "5.0.0",
|
119
122
|
"@types/json5": "0.0.29",
|
120
123
|
"@types/lockfile": "1.0.0",
|
@@ -133,10 +136,10 @@
|
|
133
136
|
"@types/vinyl": "2.0.2",
|
134
137
|
"@types/watch": "1.0.0",
|
135
138
|
"accepts": "1.3.4",
|
136
|
-
"angular-material-css-vars": "5.0.
|
137
|
-
"any-project-cli": "~13.1.
|
139
|
+
"angular-material-css-vars": "5.0.2",
|
140
|
+
"any-project-cli": "~13.1.28",
|
138
141
|
"axios": "1.3.5",
|
139
|
-
"background-worker-process": "~13.1.
|
142
|
+
"background-worker-process": "~13.1.45",
|
140
143
|
"base32": "0.0.7",
|
141
144
|
"bcryptjs": "2.4.3",
|
142
145
|
"better-sqlite3": "7.6.2",
|
@@ -156,7 +159,7 @@
|
|
156
159
|
"concurrently": "3.5.1",
|
157
160
|
"content-type": "1.0.4",
|
158
161
|
"cookie-parser": "1.4.3",
|
159
|
-
"copy-paste": "1.3
|
162
|
+
"copy-paste": "1.5.3",
|
160
163
|
"cors": "2.8.4",
|
161
164
|
"cpr": "3.0.1",
|
162
165
|
"cross-spawn": "7.0.3",
|
@@ -175,13 +178,13 @@
|
|
175
178
|
"express-session": "1.17.3",
|
176
179
|
"file-loader": "1.1.5",
|
177
180
|
"file-saver": "2.0.5",
|
178
|
-
"firedev": "^
|
179
|
-
"firedev-crud": "~13.1.
|
180
|
-
"firedev-crud-deamon": "~13.1.
|
181
|
-
"firedev-ports": "~13.1.
|
182
|
-
"firedev-storage": "~13.2.
|
183
|
-
"firedev-typeorm": "~13.1.
|
184
|
-
"firedev-ui": "~
|
181
|
+
"firedev": "^16",
|
182
|
+
"firedev-crud": "~13.1.50",
|
183
|
+
"firedev-crud-deamon": "~13.1.40",
|
184
|
+
"firedev-ports": "~13.1.45",
|
185
|
+
"firedev-storage": "~13.2.37",
|
186
|
+
"firedev-typeorm": "~13.1.32",
|
187
|
+
"firedev-ui": "~16.0.1",
|
185
188
|
"fkill": "6.1.0",
|
186
189
|
"font-awesome": "4.7.0",
|
187
190
|
"form-data": "4.0.0",
|
@@ -193,52 +196,52 @@
|
|
193
196
|
"http-proxy-middleware": "0.19.1",
|
194
197
|
"http-server": "0.11.1",
|
195
198
|
"immutable": "4.3.0",
|
196
|
-
"incremental-compiler": "~13.1.
|
199
|
+
"incremental-compiler": "~13.1.26",
|
197
200
|
"inquirer": "7.3.3",
|
198
201
|
"inquirer-autocomplete-prompt": "1.3.0",
|
199
202
|
"is-elevated": "3.0.0",
|
200
|
-
"isomorphic-region-loader": "~13.1.
|
203
|
+
"isomorphic-region-loader": "~13.1.38",
|
201
204
|
"istanbul-instrumenter-loader": "2.0.0",
|
202
|
-
"jasmine-core": "4.
|
205
|
+
"jasmine-core": "4.6.0",
|
203
206
|
"jscodeshift": "0.6.3",
|
204
207
|
"json-stringify-safe": "5.0.1",
|
205
|
-
"json10": "~13.1.
|
206
|
-
"json10-writer": "~13.1.
|
207
|
-
"json5": "2.1
|
208
|
+
"json10": "~13.1.45",
|
209
|
+
"json10-writer": "~13.1.41",
|
210
|
+
"json5": "2.2.1",
|
208
211
|
"json5-writer": "0.2.0",
|
209
212
|
"jszip": "3.10.1",
|
210
|
-
"karma": "6.
|
211
|
-
"karma-chrome-launcher": "3.
|
213
|
+
"karma": "6.4.0",
|
214
|
+
"karma-chrome-launcher": "3.2.0",
|
212
215
|
"karma-cli": "1.0.1",
|
213
|
-
"karma-coverage": "2.
|
214
|
-
"karma-jasmine": "
|
215
|
-
"karma-jasmine-html-reporter": "
|
216
|
+
"karma-coverage": "2.2.0",
|
217
|
+
"karma-jasmine": "5.1.0",
|
218
|
+
"karma-jasmine-html-reporter": "2.0.0",
|
216
219
|
"lnk": "1.0.1",
|
217
220
|
"localforage": "1.10.0",
|
218
221
|
"lockfile": "1.0.4",
|
219
|
-
"lodash": "4.17.
|
220
|
-
"lodash-walk-object": "~
|
222
|
+
"lodash": "4.17.20",
|
223
|
+
"lodash-walk-object": "~16.0.46",
|
221
224
|
"lowdb": "1.0.0",
|
222
|
-
"magic-renamer": "~13.1.
|
225
|
+
"magic-renamer": "~13.1.42",
|
223
226
|
"material-design-icons": "3.0.1",
|
224
227
|
"method-override": "2.3.10",
|
225
228
|
"minimist": "1.2.0",
|
226
229
|
"mkdirp": "0.5.1",
|
227
230
|
"mocha": "5.2.0",
|
228
|
-
"moment": "2.
|
229
|
-
"morphi": "~
|
230
|
-
"ng-in-viewport": "
|
231
|
-
"ng-packagr": "
|
231
|
+
"moment": "2.29.3",
|
232
|
+
"morphi": "~16.0.2",
|
233
|
+
"ng-in-viewport": "15.0.2",
|
234
|
+
"ng-packagr": "16.0.1",
|
232
235
|
"ng-talkback": "~13.1.19",
|
233
|
-
"ng2-logger": "~
|
234
|
-
"ng2-rest": "~13.2.
|
235
|
-
"ngx-ace-wrapper": "
|
236
|
-
"ngx-editor": "
|
237
|
-
"ngx-highlightjs": "
|
236
|
+
"ng2-logger": "~16.0.2",
|
237
|
+
"ng2-rest": "~13.2.9",
|
238
|
+
"ngx-ace-wrapper": "14.0.0",
|
239
|
+
"ngx-editor": "15.3.0",
|
240
|
+
"ngx-highlightjs": "9.0.0",
|
238
241
|
"ngx-moment": "6.0.2",
|
239
242
|
"ngx-pipes": "3.0.0",
|
240
|
-
"ngx-progressbar": "
|
241
|
-
"ngx-scrollbar": "
|
243
|
+
"ngx-progressbar": "11.0.0",
|
244
|
+
"ngx-scrollbar": "12.0.0",
|
242
245
|
"ngx-store": "3.1.1",
|
243
246
|
"ngx-typed-js": "2.1.1",
|
244
247
|
"node-cli-tester": "~13.1.19",
|
@@ -265,30 +268,31 @@
|
|
265
268
|
"record-replay-req-res-scenario": "~13.1.20",
|
266
269
|
"reflect-metadata": "0.1.10",
|
267
270
|
"rimraf": "2.6.2",
|
268
|
-
"rxjs": "~7.
|
271
|
+
"rxjs": "~7.8.0",
|
269
272
|
"semver": "6.3.0",
|
270
273
|
"simple-git": "1.96.0",
|
271
274
|
"sloc": "0.2.0",
|
272
275
|
"socket.io": "2.4.1",
|
273
276
|
"sort-package-json": "1.11.0",
|
274
277
|
"sql.js": "1.8.0",
|
275
|
-
"static-columns": "~
|
278
|
+
"static-columns": "~16.0.1",
|
276
279
|
"string-similarity": "4.0.2",
|
277
280
|
"sudo-block": "3.0.0",
|
278
281
|
"systeminformation": "3.45.7",
|
279
282
|
"task.js": "0.1.5",
|
280
283
|
"threads": "1.7.0",
|
281
|
-
"tnp-config": "~
|
282
|
-
"tnp-core": "~
|
283
|
-
"tnp-db": "~13.1.
|
284
|
-
"tnp-helpers": "~13.1.
|
285
|
-
"tnp-models": "~13.1.
|
284
|
+
"tnp-config": "~16.0.3",
|
285
|
+
"tnp-core": "~16.0.6",
|
286
|
+
"tnp-db": "~13.1.22",
|
287
|
+
"tnp-helpers": "~13.1.39",
|
288
|
+
"tnp-models": "~13.1.28",
|
286
289
|
"ts-debug": "1.3.0",
|
287
290
|
"ts-loader": "2.3.1",
|
288
|
-
"ts-node": "10.
|
291
|
+
"ts-node": "10.9.1",
|
289
292
|
"tslib": "~2.3.0",
|
293
|
+
"turndown": "7.1.2",
|
290
294
|
"typeorm": "~0.3.10",
|
291
|
-
"typescript": "~
|
295
|
+
"typescript": "~5.0.2",
|
292
296
|
"typescript-formatter": "~7.2.2",
|
293
297
|
"underscore": "1.9.1",
|
294
298
|
"uuid": "8.3.2",
|
@@ -297,13 +301,13 @@
|
|
297
301
|
"vpn-split": "~13.1.23",
|
298
302
|
"watch": "1.0.2",
|
299
303
|
"yup": "1.1.1",
|
300
|
-
"zone.js": "~0.
|
304
|
+
"zone.js": "~0.13.0"
|
301
305
|
}
|
302
306
|
},
|
303
307
|
"build": {
|
304
|
-
"number":
|
305
|
-
"date": "2023-06-
|
306
|
-
"hash": "
|
308
|
+
"number": 340,
|
309
|
+
"date": "2023-06-08T21:22:32.000Z",
|
310
|
+
"hash": "7f420d55c2fe2a56cc9fa2c533ab706d34ce1708",
|
307
311
|
"options": {}
|
308
312
|
},
|
309
313
|
"currentProjectName": "incremental-compiler",
|
@@ -311,7 +315,7 @@
|
|
311
315
|
"currentProjectLaunchConfiguration": "{\"version\":\"0.2.0\",\"configurations\":[{\"type\":\"node\",\"request\":\"launch\",\"name\":\"Launch Server standalone\",\"program\":\"${workspaceFolder}/run.js\",\"args\":[\"--ENVoverride=%7B%0A%20%20%20%20%22clientProjectName%22%3A%20%22incremental-compiler%22%0A%7D\"],\"runtimeArgs\":[\"--nolazy\",\"-r\",\"ts-node/register\",\"--experimental-worker\"]},{\"name\":\"Debugger with ng serve\",\"type\":\"chrome\",\"request\":\"launch\",\"preLaunchTask\":\"Ng Serve\",\"postDebugTask\":\"terminateall\",\"sourceMaps\":true,\"webRoot\":\"${workspaceFolder}\",\"sourceMapPathOverrides\":{\"webpack:/*\":\"${webRoot}/*\",\"/./*\":\"${webRoot}/*\",\"/tmp-src/*\":\"${webRoot}/*\",\"/*\":\"*\",\"/./~/*\":\"${webRoot}/node_modules/*\"}},{\"type\":\"node\",\"request\":\"attach\",\"name\":\"Attach to global cli tool\",\"port\":9229,\"skipFiles\":[\"<node_internals>/**\"]}],\"compounds\":[{\"name\":\"Debug backend/frontend\",\"configurations\":[\"Launch Server standalone\",\"Debugger with ng serve\"]}]}",
|
312
316
|
"currentProjectTasksConfiguration": "{\"version\":\"2.0.0\",\"tasks\":[{\"label\":\"terminateall\",\"command\":\"echo ${input:terminate}\",\"type\":\"shell\",\"problemMatcher\":[]},{\"label\":\"Ng Serve\",\"type\":\"shell\",\"command\":\"tnp build\",\"isBackground\":true,\"presentation\":{\"reveal\":\"always\"},\"group\":{\"kind\":\"build\",\"isDefault\":true},\"problemMatcher\":{\"owner\":\"typescript\",\"source\":\"ts\",\"applyTo\":\"closedDocuments\",\"fileLocation\":[\"relative\",\"${cwd}\"],\"pattern\":\"$tsc\",\"background\":{\"activeOnStart\":true,\"beginsPattern\":{\"regexp\":\"(.*?)\"},\"endsPattern\":{\"regexp\":\"Compiled |Failed to compile.\"}}}}],\"inputs\":[{\"id\":\"terminate\",\"type\":\"command\",\"command\":\"workbench.action.tasks.terminate\",\"args\":\"terminateAll\"}]}",
|
313
317
|
"currentProjectType": "isomorphic-lib",
|
314
|
-
"currentFrameworkVersion": "
|
318
|
+
"currentFrameworkVersion": "16.0.0",
|
315
319
|
"currentProjectIsStrictSite": false,
|
316
320
|
"currentProjectIsDependencySite": false,
|
317
321
|
"currentProjectIsStatic": false,
|
@@ -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,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5jcmVtZW50YWwtY29tcGlsZXIuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi90bXAtbGlicy1mb3ItYnVuZGxlLXdlYnNxbC9pbmNyZW1lbnRhbC1jb21waWxlci9wcm9qZWN0cy9pbmNyZW1lbnRhbC1jb21waWxlci9zcmMvaW5jcmVtZW50YWwtY29tcGlsZXIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFFSCxjQUFjLGNBQWMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogR2VuZXJhdGVkIGJ1bmRsZSBpbmRleC4gRG8gbm90IGVkaXQuXG4gKi9cblxuZXhwb3J0ICogZnJvbSAnLi9wdWJsaWMtYXBpJztcbiJdfQ==
|