isomorphic-region-loader 13.1.37 → 16.0.39
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}/isomorphic-region-loader.mjs +4 -4
- package/{client/esm2020 → browser/esm2022}/lib/index.mjs +21 -21
- package/browser/{esm2020 → esm2022}/public-api.mjs +1 -1
- package/{client/fesm2015 → browser/fesm2022}/isomorphic-region-loader.mjs +17 -17
- package/browser/{isomorphic-region-loader.d.ts → index.d.ts} +4 -4
- package/browser/lib/index.d.ts +2 -2
- package/browser/package.json +6 -12
- package/client/{esm2020 → esm2022}/isomorphic-region-loader.mjs +4 -4
- package/{browser/esm2020 → client/esm2022}/lib/index.mjs +21 -21
- package/client/{esm2020 → esm2022}/public-api.mjs +1 -1
- package/{browser/fesm2020 → client/fesm2022}/isomorphic-region-loader.mjs +17 -17
- package/client/{isomorphic-region-loader.d.ts → index.d.ts} +4 -4
- package/client/lib/index.d.ts +2 -2
- package/client/package.json +89 -85
- package/index.d.ts +3 -3
- package/lib/index.d.ts +5 -5
- package/lib/region-remover.backend.d.ts +15 -15
- package/lib/region.backend.d.ts +29 -29
- package/package.json +3 -3
- package/package.json_tnp.json5 +1 -1
- package/tmp-environment.json +94 -90
- package/websql/{esm2020 → esm2022}/isomorphic-region-loader.mjs +4 -4
- package/websql/{esm2020 → esm2022}/lib/index.mjs +21 -21
- package/websql/{esm2020 → esm2022}/public-api.mjs +1 -1
- package/{client/fesm2020 → websql/fesm2022}/isomorphic-region-loader.mjs +17 -17
- package/websql/{isomorphic-region-loader.d.ts → index.d.ts} +4 -4
- package/websql/lib/index.d.ts +2 -2
- package/websql/package.json +6 -12
- package/browser/fesm2015/isomorphic-region-loader.mjs +0 -23
- package/client/fesm2015/isomorphic-region-loader.mjs.map +0 -1
- package/client/fesm2020/isomorphic-region-loader.mjs.map +0 -1
- package/websql/fesm2015/isomorphic-region-loader.mjs +0 -23
- package/websql/fesm2020/isomorphic-region-loader.mjs +0 -23
- package/websql/fesm2020/isomorphic-region-loader.mjs.map +0 -1
- /package/browser/{fesm2015 → fesm2022}/isomorphic-region-loader.mjs.map +0 -0
- /package/{browser/fesm2020 → client/fesm2022}/isomorphic-region-loader.mjs.map +0 -0
- /package/websql/{fesm2015 → fesm2022}/isomorphic-region-loader.mjs.map +0 -0
package/lib/region.backend.d.ts
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
import { Models } from 'tnp-models';
|
|
2
|
-
import type { RegionRemover } from './region-remover.backend';
|
|
3
|
-
export declare class Region {
|
|
4
|
-
private context;
|
|
5
|
-
replacementss: Models.dev.Replacement[];
|
|
6
|
-
parent: Region;
|
|
7
|
-
startIndex: number;
|
|
8
|
-
endIndex: number;
|
|
9
|
-
lineStart: string;
|
|
10
|
-
lineEnd: string;
|
|
11
|
-
contentLines: string[];
|
|
12
|
-
constructor(context: RegionRemover, replacementss: Models.dev.Replacement[], parent: Region, startIndex: number, endIndex: number, lineStart: string, lineEnd: string, contentLines?: string[]);
|
|
13
|
-
private tmpOutput;
|
|
14
|
-
get hasEnd(): boolean;
|
|
15
|
-
get lastRegionWithoutEnd(): Region;
|
|
16
|
-
private regionsOrStrings;
|
|
17
|
-
get regions(): (string | Region)[];
|
|
18
|
-
private setEnd;
|
|
19
|
-
get isRoot(): boolean;
|
|
20
|
-
addNormalLine(l: string, lineIndex: number): void;
|
|
21
|
-
addNormalLineToLastRegion(l: string, lineIndex: number): void;
|
|
22
|
-
addRegion(context: RegionRemover, parent: Region, startIndex: number, lineStart: string): void;
|
|
23
|
-
endLastRegion(endIndex: number, lineEnd: string): void;
|
|
24
|
-
private containsTitle;
|
|
25
|
-
private get titleString();
|
|
26
|
-
toString(): string;
|
|
27
|
-
private get project();
|
|
28
|
-
private get realtiveOrAbsFilePAth();
|
|
29
|
-
}
|
|
1
|
+
import { Models } from 'tnp-models';
|
|
2
|
+
import type { RegionRemover } from './region-remover.backend';
|
|
3
|
+
export declare class Region {
|
|
4
|
+
private context;
|
|
5
|
+
replacementss: Models.dev.Replacement[];
|
|
6
|
+
parent: Region;
|
|
7
|
+
startIndex: number;
|
|
8
|
+
endIndex: number;
|
|
9
|
+
lineStart: string;
|
|
10
|
+
lineEnd: string;
|
|
11
|
+
contentLines: string[];
|
|
12
|
+
constructor(context: RegionRemover, replacementss: Models.dev.Replacement[], parent: Region, startIndex: number, endIndex: number, lineStart: string, lineEnd: string, contentLines?: string[]);
|
|
13
|
+
private tmpOutput;
|
|
14
|
+
get hasEnd(): boolean;
|
|
15
|
+
get lastRegionWithoutEnd(): Region;
|
|
16
|
+
private regionsOrStrings;
|
|
17
|
+
get regions(): (string | Region)[];
|
|
18
|
+
private setEnd;
|
|
19
|
+
get isRoot(): boolean;
|
|
20
|
+
addNormalLine(l: string, lineIndex: number): void;
|
|
21
|
+
addNormalLineToLastRegion(l: string, lineIndex: number): void;
|
|
22
|
+
addRegion(context: RegionRemover, parent: Region, startIndex: number, lineStart: string): void;
|
|
23
|
+
endLastRegion(endIndex: number, lineEnd: string): void;
|
|
24
|
+
private containsTitle;
|
|
25
|
+
private get titleString();
|
|
26
|
+
toString(): string;
|
|
27
|
+
private get project();
|
|
28
|
+
private get realtiveOrAbsFilePAth();
|
|
29
|
+
}
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "isomorphic-region-loader",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "16.0.39",
|
|
4
4
|
"author": "Dariusz Filipiak @darekf77",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"devDependencies": {},
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"tnp-models": "~
|
|
8
|
+
"tnp-models": "~16.0.29"
|
|
9
9
|
},
|
|
10
10
|
"private": false,
|
|
11
|
-
"lastBuildTagHash": "
|
|
11
|
+
"lastBuildTagHash": "b3ed67ac1f6e9a0267e9035126d557ac73c2ea3a"
|
|
12
12
|
}
|
package/package.json_tnp.json5
CHANGED
package/tmp-environment.json
CHANGED
|
@@ -30,53 +30,56 @@
|
|
|
30
30
|
"license": "MIT",
|
|
31
31
|
"author": "Dariusz Filipiak @darekf77",
|
|
32
32
|
"type": "isomorphic-lib",
|
|
33
|
-
"version": "
|
|
33
|
+
"version": "v4",
|
|
34
34
|
"private": false
|
|
35
35
|
},
|
|
36
36
|
"name": "isomorphic-region-loader",
|
|
37
|
-
"version": "
|
|
37
|
+
"version": "16.0.39",
|
|
38
38
|
"author": "Dariusz Filipiak @darekf77",
|
|
39
39
|
"license": "MIT",
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@angular-devkit/build-angular": "~
|
|
42
|
-
"@angular-devkit/core": "~
|
|
41
|
+
"@angular-devkit/build-angular": "~16.0.5",
|
|
42
|
+
"@angular-devkit/core": "~16.0.5",
|
|
43
43
|
"@angular-material-extensions/fab-menu": "~6.1.0",
|
|
44
|
-
"@angular/animations": "~
|
|
45
|
-
"@angular/cdk": "~
|
|
46
|
-
"@angular/cli": "~
|
|
47
|
-
"@angular/common": "~
|
|
48
|
-
"@angular/compiler": "~
|
|
49
|
-
"@angular/compiler-cli": "~
|
|
50
|
-
"@angular/core": "~
|
|
51
|
-
"@angular/
|
|
52
|
-
"@angular/forms": "~
|
|
53
|
-
"@angular/material": "~
|
|
54
|
-
"@angular/platform-browser": "~
|
|
55
|
-
"@angular/platform-browser-dynamic": "~
|
|
56
|
-
"@angular/pwa": "~
|
|
57
|
-
"@angular/router": "~
|
|
58
|
-
"@angular/service-worker": "~
|
|
44
|
+
"@angular/animations": "~16.0.0",
|
|
45
|
+
"@angular/cdk": "~16.0.3",
|
|
46
|
+
"@angular/cli": "~16.0.5",
|
|
47
|
+
"@angular/common": "~16.0.0",
|
|
48
|
+
"@angular/compiler": "~16.0.0",
|
|
49
|
+
"@angular/compiler-cli": "~16.0.4",
|
|
50
|
+
"@angular/core": "~16.0.0",
|
|
51
|
+
"@angular/elements": "~16.0.4",
|
|
52
|
+
"@angular/forms": "~16.0.0",
|
|
53
|
+
"@angular/material": "~16.0.3",
|
|
54
|
+
"@angular/platform-browser": "~16.0.4",
|
|
55
|
+
"@angular/platform-browser-dynamic": "~16.0.4",
|
|
56
|
+
"@angular/pwa": "~16.0.5",
|
|
57
|
+
"@angular/router": "~16.0.0",
|
|
58
|
+
"@angular/service-worker": "~16.0.4",
|
|
59
59
|
"@babel/cli": "7.18.6",
|
|
60
60
|
"@iconify/icons-fa-solid": "1.2.2",
|
|
61
61
|
"@iconify/icons-mdi": "1.2.1",
|
|
62
|
-
"@mdi/js": "
|
|
63
|
-
"@ng-matero/extensions": "
|
|
62
|
+
"@mdi/js": "7.2.96",
|
|
63
|
+
"@ng-matero/extensions": "16.0.0",
|
|
64
64
|
"@ngneat/falso": "6.4.0",
|
|
65
|
-
"@ngneat/hot-toast": "
|
|
66
|
-
"@ngneat/overview": "
|
|
67
|
-
"@ngneat/
|
|
68
|
-
"@ngrx/component-store": "~
|
|
69
|
-
"@ngrx/data": "~
|
|
70
|
-
"@ngrx/effects": "~
|
|
71
|
-
"@ngrx/entity": "~
|
|
72
|
-
"@ngrx/router-store": "~
|
|
73
|
-
"@ngrx/schematics": "~
|
|
74
|
-
"@ngrx/store": "~
|
|
75
|
-
"@ngrx/store-devtools": "~
|
|
76
|
-
"@ngx-formly/core": "6.
|
|
77
|
-
"@ngx-formly/material": "6.
|
|
78
|
-
"@ngx-translate/core": "
|
|
79
|
-
"@ngx-translate/http-loader": "
|
|
65
|
+
"@ngneat/hot-toast": "5.0.1",
|
|
66
|
+
"@ngneat/overview": "5.0.0",
|
|
67
|
+
"@ngneat/spectator": "15.0.0",
|
|
68
|
+
"@ngrx/component-store": "~16.0.1",
|
|
69
|
+
"@ngrx/data": "~16.0.1",
|
|
70
|
+
"@ngrx/effects": "~16.0.1",
|
|
71
|
+
"@ngrx/entity": "~16.0.1",
|
|
72
|
+
"@ngrx/router-store": "~16.0.1",
|
|
73
|
+
"@ngrx/schematics": "~16.0.1",
|
|
74
|
+
"@ngrx/store": "~16.0.1",
|
|
75
|
+
"@ngrx/store-devtools": "~16.0.1",
|
|
76
|
+
"@ngx-formly/core": "6.1.7",
|
|
77
|
+
"@ngx-formly/material": "6.1.7",
|
|
78
|
+
"@ngx-translate/core": "15.0.0",
|
|
79
|
+
"@ngx-translate/http-loader": "8.0.0",
|
|
80
|
+
"@testdeck/jasmine": "0.3.3",
|
|
81
|
+
"@testdeck/jest": "0.3.3",
|
|
82
|
+
"@testdeck/mocha": "0.3.3",
|
|
80
83
|
"@types/chai": "4.1.2",
|
|
81
84
|
"@types/chokidar": "2.1.3",
|
|
82
85
|
"@types/dateformat": "1.0.1",
|
|
@@ -88,7 +91,7 @@
|
|
|
88
91
|
"@types/http-proxy": "1.16.0",
|
|
89
92
|
"@types/http-proxy-middleware": "0.19.2",
|
|
90
93
|
"@types/inquirer": "7.3.1",
|
|
91
|
-
"@types/jasmine": "3.
|
|
94
|
+
"@types/jasmine": "4.3.0",
|
|
92
95
|
"@types/json-stringify-safe": "5.0.0",
|
|
93
96
|
"@types/json5": "0.0.29",
|
|
94
97
|
"@types/lockfile": "1.0.0",
|
|
@@ -107,10 +110,10 @@
|
|
|
107
110
|
"@types/vinyl": "2.0.2",
|
|
108
111
|
"@types/watch": "1.0.0",
|
|
109
112
|
"accepts": "1.3.4",
|
|
110
|
-
"angular-material-css-vars": "5.0.
|
|
111
|
-
"any-project-cli": "~13.1.
|
|
113
|
+
"angular-material-css-vars": "5.0.2",
|
|
114
|
+
"any-project-cli": "~13.1.28",
|
|
112
115
|
"axios": "1.3.5",
|
|
113
|
-
"background-worker-process": "~
|
|
116
|
+
"background-worker-process": "~16.0.46",
|
|
114
117
|
"base32": "0.0.7",
|
|
115
118
|
"bcryptjs": "2.4.3",
|
|
116
119
|
"better-sqlite3": "7.6.2",
|
|
@@ -131,7 +134,7 @@
|
|
|
131
134
|
"concurrently": "3.5.1",
|
|
132
135
|
"content-type": "1.0.4",
|
|
133
136
|
"cookie-parser": "1.4.3",
|
|
134
|
-
"copy-paste": "1.3
|
|
137
|
+
"copy-paste": "1.5.3",
|
|
135
138
|
"cors": "2.8.4",
|
|
136
139
|
"cpr": "3.0.1",
|
|
137
140
|
"cross-spawn": "7.0.3",
|
|
@@ -151,13 +154,13 @@
|
|
|
151
154
|
"express-session": "1.17.3",
|
|
152
155
|
"file-loader": "1.1.5",
|
|
153
156
|
"file-saver": "2.0.5",
|
|
154
|
-
"firedev": "^
|
|
155
|
-
"firedev-crud": "~
|
|
156
|
-
"firedev-crud-deamon": "~13.1.
|
|
157
|
-
"firedev-ports": "~
|
|
158
|
-
"firedev-storage": "~13.2.
|
|
159
|
-
"firedev-typeorm": "~
|
|
160
|
-
"firedev-ui": "~
|
|
157
|
+
"firedev": "^16",
|
|
158
|
+
"firedev-crud": "~16.0.51",
|
|
159
|
+
"firedev-crud-deamon": "~13.1.40",
|
|
160
|
+
"firedev-ports": "~16.0.46",
|
|
161
|
+
"firedev-storage": "~13.2.37",
|
|
162
|
+
"firedev-typeorm": "~16.0.34",
|
|
163
|
+
"firedev-ui": "~16.0.1",
|
|
161
164
|
"fkill": "6.1.0",
|
|
162
165
|
"font-awesome": "4.7.0",
|
|
163
166
|
"form-data": "4.0.0",
|
|
@@ -171,52 +174,52 @@
|
|
|
171
174
|
"http-proxy-middleware": "0.19.1",
|
|
172
175
|
"http-server": "0.11.1",
|
|
173
176
|
"immutable": "4.3.0",
|
|
174
|
-
"incremental-compiler": "~
|
|
177
|
+
"incremental-compiler": "~16.0.28",
|
|
175
178
|
"inquirer": "7.3.3",
|
|
176
179
|
"inquirer-autocomplete-prompt": "1.3.0",
|
|
177
180
|
"is-elevated": "3.0.0",
|
|
178
|
-
"isomorphic-region-loader": "~13.1.
|
|
181
|
+
"isomorphic-region-loader": "~13.1.38",
|
|
179
182
|
"istanbul-instrumenter-loader": "2.0.0",
|
|
180
|
-
"jasmine-core": "4.
|
|
183
|
+
"jasmine-core": "4.6.0",
|
|
181
184
|
"jscodeshift": "0.6.3",
|
|
182
185
|
"json-stringify-safe": "5.0.1",
|
|
183
|
-
"json10": "~
|
|
184
|
-
"json10-writer": "~
|
|
185
|
-
"json5": "2.1
|
|
186
|
+
"json10": "~16.0.46",
|
|
187
|
+
"json10-writer": "~16.0.42",
|
|
188
|
+
"json5": "2.2.1",
|
|
186
189
|
"json5-writer": "0.2.0",
|
|
187
190
|
"jszip": "3.10.1",
|
|
188
|
-
"karma": "6.
|
|
189
|
-
"karma-chrome-launcher": "3.
|
|
191
|
+
"karma": "6.4.0",
|
|
192
|
+
"karma-chrome-launcher": "3.2.0",
|
|
190
193
|
"karma-cli": "1.0.1",
|
|
191
|
-
"karma-coverage": "2.
|
|
192
|
-
"karma-jasmine": "
|
|
193
|
-
"karma-jasmine-html-reporter": "
|
|
194
|
+
"karma-coverage": "2.2.0",
|
|
195
|
+
"karma-jasmine": "5.1.0",
|
|
196
|
+
"karma-jasmine-html-reporter": "2.0.0",
|
|
194
197
|
"lnk": "1.0.1",
|
|
195
198
|
"localforage": "1.10.0",
|
|
196
199
|
"lockfile": "1.0.4",
|
|
197
|
-
"lodash": "4.17.
|
|
198
|
-
"lodash-walk-object": "~
|
|
200
|
+
"lodash": "4.17.20",
|
|
201
|
+
"lodash-walk-object": "~16.0.46",
|
|
199
202
|
"lowdb": "1.0.0",
|
|
200
|
-
"magic-renamer": "~13.1.
|
|
203
|
+
"magic-renamer": "~13.1.42",
|
|
201
204
|
"material-design-icons": "3.0.1",
|
|
202
205
|
"method-override": "2.3.10",
|
|
203
206
|
"minimist": "1.2.0",
|
|
204
207
|
"mkdirp": "0.5.1",
|
|
205
208
|
"mocha": "5.2.0",
|
|
206
|
-
"moment": "2.
|
|
207
|
-
"morphi": "~
|
|
208
|
-
"ng-in-viewport": "
|
|
209
|
-
"ng-packagr": "
|
|
209
|
+
"moment": "2.29.3",
|
|
210
|
+
"morphi": "~16.0.3",
|
|
211
|
+
"ng-in-viewport": "15.0.2",
|
|
212
|
+
"ng-packagr": "16.0.1",
|
|
210
213
|
"ng-talkback": "~13.1.19",
|
|
211
|
-
"ng2-logger": "~
|
|
212
|
-
"ng2-rest": "~
|
|
213
|
-
"ngx-ace-wrapper": "
|
|
214
|
-
"ngx-editor": "
|
|
215
|
-
"ngx-highlightjs": "
|
|
214
|
+
"ng2-logger": "~16.0.2",
|
|
215
|
+
"ng2-rest": "~16.0.10",
|
|
216
|
+
"ngx-ace-wrapper": "14.0.0",
|
|
217
|
+
"ngx-editor": "15.3.0",
|
|
218
|
+
"ngx-highlightjs": "9.0.0",
|
|
216
219
|
"ngx-moment": "6.0.2",
|
|
217
220
|
"ngx-pipes": "3.0.0",
|
|
218
|
-
"ngx-progressbar": "
|
|
219
|
-
"ngx-scrollbar": "
|
|
221
|
+
"ngx-progressbar": "11.0.0",
|
|
222
|
+
"ngx-scrollbar": "12.0.0",
|
|
220
223
|
"ngx-store": "3.1.1",
|
|
221
224
|
"ngx-typed-js": "2.1.1",
|
|
222
225
|
"node-cli-tester": "~13.1.19",
|
|
@@ -243,31 +246,32 @@
|
|
|
243
246
|
"record-replay-req-res-scenario": "~13.1.20",
|
|
244
247
|
"reflect-metadata": "0.1.10",
|
|
245
248
|
"rimraf": "2.6.2",
|
|
246
|
-
"rxjs": "~7.
|
|
249
|
+
"rxjs": "~7.8.0",
|
|
247
250
|
"semver": "6.3.0",
|
|
248
251
|
"simple-git": "1.96.0",
|
|
249
252
|
"sloc": "0.2.0",
|
|
250
253
|
"socket.io": "2.4.1",
|
|
251
254
|
"sort-package-json": "1.11.0",
|
|
252
255
|
"sql.js": "1.8.0",
|
|
253
|
-
"static-columns": "~
|
|
256
|
+
"static-columns": "~16.0.1",
|
|
254
257
|
"string-similarity": "4.0.2",
|
|
255
258
|
"sudo-block": "3.0.0",
|
|
256
259
|
"systeminformation": "3.45.7",
|
|
257
260
|
"task.js": "0.1.5",
|
|
258
261
|
"threads": "1.7.0",
|
|
259
|
-
"tnp-cli": "~
|
|
260
|
-
"tnp-config": "~
|
|
261
|
-
"tnp-core": "~
|
|
262
|
-
"tnp-db": "~13.1.
|
|
263
|
-
"tnp-helpers": "~
|
|
262
|
+
"tnp-cli": "~16.0.3",
|
|
263
|
+
"tnp-config": "~16.0.3",
|
|
264
|
+
"tnp-core": "~16.0.6",
|
|
265
|
+
"tnp-db": "~13.1.22",
|
|
266
|
+
"tnp-helpers": "~16.0.1",
|
|
264
267
|
"ts-debug": "1.3.0",
|
|
265
268
|
"ts-loader": "2.3.1",
|
|
266
|
-
"ts-node": "10.
|
|
269
|
+
"ts-node": "10.9.1",
|
|
267
270
|
"tslib": "~2.3.0",
|
|
271
|
+
"turndown": "7.1.2",
|
|
268
272
|
"typeorm": "~0.3.10",
|
|
269
|
-
"typescript": "~
|
|
270
|
-
"typescript-class-helpers": "~
|
|
273
|
+
"typescript": "~5.0.2",
|
|
274
|
+
"typescript-class-helpers": "~16.0.14",
|
|
271
275
|
"typescript-formatter": "~7.2.2",
|
|
272
276
|
"underscore": "1.9.1",
|
|
273
277
|
"uuid": "8.3.2",
|
|
@@ -276,18 +280,18 @@
|
|
|
276
280
|
"vpn-split": "~13.1.23",
|
|
277
281
|
"watch": "1.0.2",
|
|
278
282
|
"yup": "1.1.1",
|
|
279
|
-
"zone.js": "~0.
|
|
283
|
+
"zone.js": "~0.13.0"
|
|
280
284
|
},
|
|
281
285
|
"dependencies": {
|
|
282
|
-
"tnp-models": "~
|
|
286
|
+
"tnp-models": "~16.0.29"
|
|
283
287
|
},
|
|
284
288
|
"private": false,
|
|
285
|
-
"lastBuildTagHash": "
|
|
289
|
+
"lastBuildTagHash": "b3ed67ac1f6e9a0267e9035126d557ac73c2ea3a"
|
|
286
290
|
},
|
|
287
291
|
"build": {
|
|
288
|
-
"number":
|
|
289
|
-
"date": "2023-06-
|
|
290
|
-
"hash": "
|
|
292
|
+
"number": 134,
|
|
293
|
+
"date": "2023-06-08T21:40:33.000Z",
|
|
294
|
+
"hash": "ee3216ccdbbb3acfa4476d779003fc72068f199e",
|
|
291
295
|
"options": {}
|
|
292
296
|
},
|
|
293
297
|
"currentProjectName": "isomorphic-region-loader",
|
|
@@ -295,7 +299,7 @@
|
|
|
295
299
|
"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%22isomorphic-region-loader%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\"]}]}",
|
|
296
300
|
"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\"}]}",
|
|
297
301
|
"currentProjectType": "isomorphic-lib",
|
|
298
|
-
"currentFrameworkVersion": "
|
|
302
|
+
"currentFrameworkVersion": "16.0.0",
|
|
299
303
|
"currentProjectIsStrictSite": false,
|
|
300
304
|
"currentProjectIsDependencySite": false,
|
|
301
305
|
"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,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaXNvbW9ycGhpYy1yZWdpb24tbG9hZGVyLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vdG1wLWxpYnMtZm9yLWJ1bmRsZS13ZWJzcWwvaXNvbW9ycGhpYy1yZWdpb24tbG9hZGVyL3Byb2plY3RzL2lzb21vcnBoaWMtcmVnaW9uLWxvYWRlci9zcmMvaXNvbW9ycGhpYy1yZWdpb24tbG9hZGVyLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBRUgsY0FBYyxjQUFjLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIEdlbmVyYXRlZCBidW5kbGUgaW5kZXguIERvIG5vdCBlZGl0LlxuICovXG5cbmV4cG9ydCAqIGZyb20gJy4vcHVibGljLWFwaSc7XG4iXX0=
|
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
/* */
|
|
2
|
-
/* */
|
|
3
|
-
function StripBrowserCode(content) {
|
|
4
|
-
/* */
|
|
5
|
-
/* */
|
|
6
|
-
/* */
|
|
7
|
-
/* */
|
|
8
|
-
/* */
|
|
9
|
-
/* */
|
|
10
|
-
/* */
|
|
11
|
-
/* */
|
|
12
|
-
/* */
|
|
13
|
-
/* */
|
|
14
|
-
}
|
|
15
|
-
export { StripBrowserCode as StripBlockLoader };
|
|
16
|
-
/* */
|
|
17
|
-
/* */
|
|
18
|
-
/* */
|
|
19
|
-
export default StripBrowserCode;
|
|
20
|
-
;
|
|
21
|
-
({}); // @--end-of-file-for-module=isomorphic-region-loader lib/index.ts
|
|
1
|
+
/* */
|
|
2
|
+
/* */
|
|
3
|
+
function StripBrowserCode(content) {
|
|
4
|
+
/* */
|
|
5
|
+
/* */
|
|
6
|
+
/* */
|
|
7
|
+
/* */
|
|
8
|
+
/* */
|
|
9
|
+
/* */
|
|
10
|
+
/* */
|
|
11
|
+
/* */
|
|
12
|
+
/* */
|
|
13
|
+
/* */
|
|
14
|
+
}
|
|
15
|
+
export { StripBrowserCode as StripBlockLoader };
|
|
16
|
+
/* */
|
|
17
|
+
/* */
|
|
18
|
+
/* */
|
|
19
|
+
export default StripBrowserCode;
|
|
20
|
+
;
|
|
21
|
+
({}); // @--end-of-file-for-module=isomorphic-region-loader lib/index.ts
|
|
22
22
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi90bXAtbGlicy1mb3ItYnVuZGxlLXdlYnNxbC9pc29tb3JwaGljLXJlZ2lvbi1sb2FkZXIvcHJvamVjdHMvaXNvbW9ycGhpYy1yZWdpb24tbG9hZGVyL3NyYy9saWIvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsS0FBSztBQUNMLEtBQUs7QUFHTCxTQUFTLGdCQUFnQixDQUFDLE9BQU87SUFDakMsS0FBSztJQUNMLEtBQUs7SUFDTCxLQUFLO0lBQ0wsS0FBSztJQUNMLEtBQUs7SUFDTCxLQUFLO0lBQ0wsS0FBSztJQUNMLEtBQUs7SUFDTCxLQUFLO0lBQ0wsS0FBSztBQUVMLENBQUM7QUFFRCxPQUFPLEVBQUUsZ0JBQWdCLElBQUksZ0JBQWdCLEVBQUUsQ0FBQztBQUNoRCxLQUFLO0FBQ0wsS0FBSztBQUNMLEtBQUs7QUFFTCxlQUFlLGdCQUFnQixDQUFDO0FBRS9CLENBQUM7QUFBQSxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUMsa0VBQWtFIiwic291cmNlc0NvbnRlbnQiOlsiLyogKi9cbi8qICovXG4gIFxuXG5mdW5jdGlvbiBTdHJpcEJyb3dzZXJDb2RlKGNvbnRlbnQpIHtcbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4gIFxufVxuXG5leHBvcnQgeyBTdHJpcEJyb3dzZXJDb2RlIGFzIFN0cmlwQmxvY2tMb2FkZXIgfTtcbi8qICovXG4vKiAqL1xuLyogKi9cbiAgXG5leHBvcnQgZGVmYXVsdCBTdHJpcEJyb3dzZXJDb2RlO1xuXG4gOyh7fSk7IC8vIEAtLWVuZC1vZi1maWxlLWZvci1tb2R1bGU9aXNvbW9ycGhpYy1yZWdpb24tbG9hZGVyIGxpYi9pbmRleC50cyJdfQ==
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './lib';
|
|
1
|
+
export * from './lib';
|
|
2
2
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3RtcC1saWJzLWZvci1idW5kbGUtd2Vic3FsL2lzb21vcnBoaWMtcmVnaW9uLWxvYWRlci9wcm9qZWN0cy9pc29tb3JwaGljLXJlZ2lvbi1sb2FkZXIvc3JjL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxPQUFPLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2xpYic7XG4iXX0=
|
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
/* */
|
|
2
|
-
/* */
|
|
3
|
-
function StripBrowserCode(content) {
|
|
4
|
-
/* */
|
|
5
|
-
/* */
|
|
6
|
-
/* */
|
|
7
|
-
/* */
|
|
8
|
-
/* */
|
|
9
|
-
/* */
|
|
10
|
-
/* */
|
|
11
|
-
/* */
|
|
12
|
-
/* */
|
|
13
|
-
/* */
|
|
14
|
-
}
|
|
15
|
-
;
|
|
1
|
+
/* */
|
|
2
|
+
/* */
|
|
3
|
+
function StripBrowserCode(content) {
|
|
4
|
+
/* */
|
|
5
|
+
/* */
|
|
6
|
+
/* */
|
|
7
|
+
/* */
|
|
8
|
+
/* */
|
|
9
|
+
/* */
|
|
10
|
+
/* */
|
|
11
|
+
/* */
|
|
12
|
+
/* */
|
|
13
|
+
/* */
|
|
14
|
+
}
|
|
15
|
+
;
|
|
16
16
|
({}); // @--end-of-file-for-module=isomorphic-region-loader lib/index.ts
|
|
17
17
|
|
|
18
|
-
/**
|
|
19
|
-
* Generated bundle index. Do not edit.
|
|
18
|
+
/**
|
|
19
|
+
* Generated bundle index. Do not edit.
|
|
20
20
|
*/
|
|
21
21
|
|
|
22
22
|
export { StripBrowserCode as StripBlockLoader };
|
package/websql/lib/index.d.ts
CHANGED
package/websql/package.json
CHANGED
|
@@ -8,23 +8,17 @@
|
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"tslib": "^2.3.0"
|
|
10
10
|
},
|
|
11
|
-
"module": "
|
|
12
|
-
"
|
|
13
|
-
"esm2020": "esm2020/isomorphic-region-loader.mjs",
|
|
14
|
-
"fesm2020": "fesm2020/isomorphic-region-loader.mjs",
|
|
15
|
-
"fesm2015": "fesm2015/isomorphic-region-loader.mjs",
|
|
16
|
-
"typings": "isomorphic-region-loader.d.ts",
|
|
11
|
+
"module": "fesm2022/isomorphic-region-loader.mjs",
|
|
12
|
+
"typings": "index.d.ts",
|
|
17
13
|
"exports": {
|
|
18
14
|
"./package.json": {
|
|
19
15
|
"default": "./package.json"
|
|
20
16
|
},
|
|
21
17
|
".": {
|
|
22
|
-
"types": "./
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"node": "./fesm2015/isomorphic-region-loader.mjs",
|
|
27
|
-
"default": "./fesm2020/isomorphic-region-loader.mjs"
|
|
18
|
+
"types": "./index.d.ts",
|
|
19
|
+
"esm2022": "./esm2022/isomorphic-region-loader.mjs",
|
|
20
|
+
"esm": "./esm2022/isomorphic-region-loader.mjs",
|
|
21
|
+
"default": "./fesm2022/isomorphic-region-loader.mjs"
|
|
28
22
|
}
|
|
29
23
|
},
|
|
30
24
|
"sideEffects": false
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
/* */
|
|
2
|
-
/* */
|
|
3
|
-
function StripBrowserCode(content) {
|
|
4
|
-
/* */
|
|
5
|
-
/* */
|
|
6
|
-
/* */
|
|
7
|
-
/* */
|
|
8
|
-
/* */
|
|
9
|
-
/* */
|
|
10
|
-
/* */
|
|
11
|
-
/* */
|
|
12
|
-
/* */
|
|
13
|
-
/* */
|
|
14
|
-
}
|
|
15
|
-
;
|
|
16
|
-
({}); // @--end-of-file-for-module=isomorphic-region-loader lib/index.ts
|
|
17
|
-
|
|
18
|
-
/**
|
|
19
|
-
* Generated bundle index. Do not edit.
|
|
20
|
-
*/
|
|
21
|
-
|
|
22
|
-
export { StripBrowserCode as StripBlockLoader };
|
|
23
|
-
//# sourceMappingURL=isomorphic-region-loader.mjs.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"isomorphic-region-loader.mjs","sources":["../../../tmp-libs-for-bundle/isomorphic-region-loader/projects/isomorphic-region-loader/src/lib/index.ts","../../../tmp-libs-for-bundle/isomorphic-region-loader/projects/isomorphic-region-loader/src/isomorphic-region-loader.ts"],"sourcesContent":["/* */\n/* */\n \n\nfunction StripBrowserCode(content) {\n/* */\n/* */\n/* */\n/* */\n/* */\n/* */\n/* */\n/* */\n/* */\n/* */\n \n}\n\nexport { StripBrowserCode as StripBlockLoader };\n/* */\n/* */\n/* */\n \nexport default StripBrowserCode;\n\n ;({}); // @--end-of-file-for-module=isomorphic-region-loader lib/index.ts","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"AAAA;AACA;AAGA,SAAS,gBAAgB,CAAC,OAAO,EAAA;;;;;;;;;;;AAYjC,CAAC;AASA,CAAC;AAAA,CAAC,EAAE,EAAE;;ACzBP;;AAEG;;;;"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"isomorphic-region-loader.mjs","sources":["../../../tmp-libs-for-bundle/isomorphic-region-loader/projects/isomorphic-region-loader/src/lib/index.ts","../../../tmp-libs-for-bundle/isomorphic-region-loader/projects/isomorphic-region-loader/src/isomorphic-region-loader.ts"],"sourcesContent":["/* */\n/* */\n \n\nfunction StripBrowserCode(content) {\n/* */\n/* */\n/* */\n/* */\n/* */\n/* */\n/* */\n/* */\n/* */\n/* */\n \n}\n\nexport { StripBrowserCode as StripBlockLoader };\n/* */\n/* */\n/* */\n \nexport default StripBrowserCode;\n\n ;({}); // @--end-of-file-for-module=isomorphic-region-loader lib/index.ts","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"AAAA;AACA;AAGA,SAAS,gBAAgB,CAAC,OAAO,EAAA;;;;;;;;;;;AAYjC,CAAC;AASA,CAAC;AAAA,CAAC,EAAE,EAAE;;ACzBP;;AAEG;;;;"}
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
/* */
|
|
2
|
-
/* */
|
|
3
|
-
function StripBrowserCode(content) {
|
|
4
|
-
/* */
|
|
5
|
-
/* */
|
|
6
|
-
/* */
|
|
7
|
-
/* */
|
|
8
|
-
/* */
|
|
9
|
-
/* */
|
|
10
|
-
/* */
|
|
11
|
-
/* */
|
|
12
|
-
/* */
|
|
13
|
-
/* */
|
|
14
|
-
}
|
|
15
|
-
;
|
|
16
|
-
({}); // @--end-of-file-for-module=isomorphic-region-loader lib/index.ts
|
|
17
|
-
|
|
18
|
-
/**
|
|
19
|
-
* Generated bundle index. Do not edit.
|
|
20
|
-
*/
|
|
21
|
-
|
|
22
|
-
export { StripBrowserCode as StripBlockLoader };
|
|
23
|
-
//# sourceMappingURL=isomorphic-region-loader.mjs.map
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
/* */
|
|
2
|
-
/* */
|
|
3
|
-
function StripBrowserCode(content) {
|
|
4
|
-
/* */
|
|
5
|
-
/* */
|
|
6
|
-
/* */
|
|
7
|
-
/* */
|
|
8
|
-
/* */
|
|
9
|
-
/* */
|
|
10
|
-
/* */
|
|
11
|
-
/* */
|
|
12
|
-
/* */
|
|
13
|
-
/* */
|
|
14
|
-
}
|
|
15
|
-
;
|
|
16
|
-
({}); // @--end-of-file-for-module=isomorphic-region-loader lib/index.ts
|
|
17
|
-
|
|
18
|
-
/**
|
|
19
|
-
* Generated bundle index. Do not edit.
|
|
20
|
-
*/
|
|
21
|
-
|
|
22
|
-
export { StripBrowserCode as StripBlockLoader };
|
|
23
|
-
//# sourceMappingURL=isomorphic-region-loader.mjs.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"isomorphic-region-loader.mjs","sources":["../../../tmp-libs-for-bundle-websql/isomorphic-region-loader/projects/isomorphic-region-loader/src/lib/index.ts","../../../tmp-libs-for-bundle-websql/isomorphic-region-loader/projects/isomorphic-region-loader/src/isomorphic-region-loader.ts"],"sourcesContent":["/* */\n/* */\n \n\nfunction StripBrowserCode(content) {\n/* */\n/* */\n/* */\n/* */\n/* */\n/* */\n/* */\n/* */\n/* */\n/* */\n \n}\n\nexport { StripBrowserCode as StripBlockLoader };\n/* */\n/* */\n/* */\n \nexport default StripBrowserCode;\n\n ;({}); // @--end-of-file-for-module=isomorphic-region-loader lib/index.ts","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"AAAA;AACA;AAGA,SAAS,gBAAgB,CAAC,OAAO,EAAA;;;;;;;;;;;AAYjC,CAAC;AASA,CAAC;AAAA,CAAC,EAAE,EAAE;;ACzBP;;AAEG;;;;"}
|
|
File without changes
|
|
File without changes
|