tnp-core 1.0.33 → 1.0.36
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/lib/core-config.mjs +6 -0
- package/browser/esm2020/lib/core-imports.mjs +14 -0
- package/browser/esm2020/lib/core-models.mjs +2 -0
- package/browser/esm2020/lib/helpers-isomorphic.mjs +28 -0
- package/browser/esm2020/lib/helpers-messages.mjs +67 -0
- package/browser/esm2020/lib/helpers.mjs +66 -0
- package/browser/esm2020/lib/index.mjs +8 -0
- package/browser/esm2020/lib/progress-data.mjs +46 -0
- package/browser/esm2020/public-api.mjs +2 -0
- package/browser/esm2020/tnp-core.mjs +5 -0
- package/browser/fesm2015/tnp-core.mjs +224 -0
- package/browser/fesm2015/tnp-core.mjs.map +1 -0
- package/browser/fesm2020/tnp-core.mjs +221 -0
- package/browser/fesm2020/tnp-core.mjs.map +1 -0
- package/browser/{core-config.d.ts → lib/core-config.d.ts} +0 -0
- package/browser/lib/core-imports.d.ts +4 -0
- package/browser/{core-models.d.ts → lib/core-models.d.ts} +0 -0
- package/browser/{helpers-isomorphic.d.ts → lib/helpers-isomorphic.d.ts} +0 -0
- package/browser/{helpers-messages.d.ts → lib/helpers-messages.d.ts} +0 -0
- package/{client → browser/lib}/helpers.d.ts +1 -0
- package/browser/{index.d.ts → lib/index.d.ts} +0 -0
- package/{progress-data.d.ts → browser/lib/progress-data.d.ts} +3 -3
- package/browser/package.json +31 -0
- package/browser/public-api.d.ts +1 -7
- package/browser/tnp-core.d.ts +5 -0
- package/client/README.md +24 -0
- package/client/esm2020/lib/core-config.mjs +6 -0
- package/client/esm2020/lib/core-imports.mjs +14 -0
- package/client/esm2020/lib/core-models.mjs +2 -0
- package/client/esm2020/lib/helpers-isomorphic.mjs +28 -0
- package/client/esm2020/lib/helpers-messages.mjs +67 -0
- package/client/esm2020/lib/helpers.mjs +66 -0
- package/client/esm2020/lib/index.mjs +8 -0
- package/client/esm2020/lib/progress-data.mjs +46 -0
- package/client/esm2020/public-api.mjs +2 -0
- package/client/esm2020/tnp-core.mjs +5 -0
- package/client/fesm2015/tnp-core.mjs +224 -0
- package/client/fesm2015/tnp-core.mjs.map +1 -0
- package/client/fesm2020/tnp-core.mjs +221 -0
- package/client/fesm2020/tnp-core.mjs.map +1 -0
- package/client/{core-config.d.ts → lib/core-config.d.ts} +0 -0
- package/client/lib/core-imports.d.ts +4 -0
- package/client/{core-models.d.ts → lib/core-models.d.ts} +0 -0
- package/client/{helpers-isomorphic.d.ts → lib/helpers-isomorphic.d.ts} +0 -0
- package/client/{helpers-messages.d.ts → lib/helpers-messages.d.ts} +0 -0
- package/{browser → client/lib}/helpers.d.ts +1 -0
- package/client/{index.d.ts → lib/index.d.ts} +0 -0
- package/{browser → client/lib}/progress-data.d.ts +3 -3
- package/client/package.json +26 -21
- package/client/public-api.d.ts +1 -7
- package/client/tnp-core.d.ts +5 -0
- package/index.d.ts +1 -7
- package/index.js +3 -10
- package/index.js.map +1 -1
- package/{core-config.d.ts → lib/core-config.d.ts} +0 -0
- package/{core-config.js → lib/core-config.js} +2 -1
- package/lib/core-config.js.map +1 -0
- package/{core-imports.d.ts → lib/core-imports.d.ts} +2 -1
- package/{core-imports.js → lib/core-imports.js} +6 -3
- package/lib/core-imports.js.map +1 -0
- package/{core-models.d.ts → lib/core-models.d.ts} +0 -0
- package/{core-models.js → lib/core-models.js} +2 -1
- package/{core-models.js.map → lib/core-models.js.map} +1 -1
- package/{helpers-isomorphic.d.ts → lib/helpers-isomorphic.d.ts} +0 -0
- package/{helpers-isomorphic.js → lib/helpers-isomorphic.js} +2 -1
- package/lib/helpers-isomorphic.js.map +1 -0
- package/{helpers-messages.d.ts → lib/helpers-messages.d.ts} +0 -0
- package/{helpers-messages.js → lib/helpers-messages.js} +3 -2
- package/lib/helpers-messages.js.map +1 -0
- package/{helpers.d.ts → lib/helpers.d.ts} +3 -3
- package/{helpers.js → lib/helpers.js} +100 -60
- package/lib/helpers.js.map +1 -0
- package/{public-api.d.ts → lib/index.d.ts} +0 -0
- package/{public-api.js → lib/index.js} +6 -5
- package/lib/index.js.map +1 -0
- package/{client → lib}/progress-data.d.ts +3 -3
- package/{progress-data.js → lib/progress-data.js} +4 -3
- package/lib/progress-data.js.map +1 -0
- package/{client/index.js → lib/public-api.d.ts} +1 -2
- package/lib/public-api.js +14 -0
- package/lib/public-api.js.map +1 -0
- package/package.json +18 -18
- package/package.json_devDependencies.json +66 -85
- package/package.json_tnp.json +10 -6
- package/package.json_tnp.json5 +50 -0
- package/tmp-environment.json +72 -119
- package/browser/core-config.js +0 -6
- package/browser/core-config.js.map +0 -1
- package/browser/core-imports.d.ts +0 -3
- package/browser/core-imports.js +0 -13
- package/browser/core-imports.js.map +0 -1
- package/browser/core-models.js +0 -2
- package/browser/core-models.js.map +0 -1
- package/browser/helpers-isomorphic.js +0 -28
- package/browser/helpers-isomorphic.js.map +0 -1
- package/browser/helpers-messages.js +0 -67
- package/browser/helpers-messages.js.map +0 -1
- package/browser/helpers.js +0 -65
- package/browser/helpers.js.map +0 -1
- package/browser/index.js +0 -8
- package/browser/index.js.map +0 -1
- package/browser/progress-data.js +0 -46
- package/browser/progress-data.js.map +0 -1
- package/browser/public-api.js +0 -8
- package/browser/public-api.js.map +0 -1
- package/client/core-config.js +0 -6
- package/client/core-config.js.map +0 -1
- package/client/core-imports.d.ts +0 -3
- package/client/core-imports.js +0 -13
- package/client/core-imports.js.map +0 -1
- package/client/core-models.js +0 -2
- package/client/core-models.js.map +0 -1
- package/client/helpers-isomorphic.js +0 -28
- package/client/helpers-isomorphic.js.map +0 -1
- package/client/helpers-messages.js +0 -67
- package/client/helpers-messages.js.map +0 -1
- package/client/helpers.js +0 -65
- package/client/helpers.js.map +0 -1
- package/client/index.js.map +0 -1
- package/client/progress-data.js +0 -46
- package/client/progress-data.js.map +0 -1
- package/client/public-api.js +0 -8
- package/client/public-api.js.map +0 -1
- package/core-config.js.map +0 -1
- package/core-imports.js.map +0 -1
- package/helpers-isomorphic.js.map +0 -1
- package/helpers-messages.js.map +0 -1
- package/helpers.js.map +0 -1
- package/progress-data.js.map +0 -1
- package/public-api.js.map +0 -1
package/tmp-environment.json
CHANGED
@@ -8,11 +8,6 @@
|
|
8
8
|
"resources": [
|
9
9
|
"README.md"
|
10
10
|
],
|
11
|
-
"isCoreProject": false,
|
12
|
-
"useFramework": false,
|
13
|
-
"type": "isomorphic-lib",
|
14
|
-
"required": [],
|
15
|
-
"version": "v3",
|
16
11
|
"overrided": {
|
17
12
|
"ignoreDepsPattern": [],
|
18
13
|
"includeAsDev": "*",
|
@@ -44,15 +39,24 @@
|
|
44
39
|
"obscure": false,
|
45
40
|
"ugly": false
|
46
41
|
},
|
42
|
+
"isCoreProject": false,
|
43
|
+
"useFramework": false,
|
44
|
+
"type": "isomorphic-lib",
|
45
|
+
"required": [],
|
46
|
+
"version": "v3",
|
47
|
+
"additionalNpmNames": [
|
48
|
+
"firedev-core"
|
49
|
+
],
|
47
50
|
"isGenerated": false,
|
48
51
|
"requiredServers": [],
|
49
52
|
"license": "MIT",
|
50
53
|
"private": false,
|
51
|
-
"main": "index.js"
|
54
|
+
"main": "index.js",
|
55
|
+
"workerPlugins": {}
|
52
56
|
},
|
53
|
-
"lastBuildTagHash": "
|
57
|
+
"lastBuildTagHash": "77d9e51538a4927c81da38675a465a65c6d98bfa",
|
54
58
|
"name": "tnp-core",
|
55
|
-
"version": "1.0.
|
59
|
+
"version": "1.0.36",
|
56
60
|
"license": "MIT",
|
57
61
|
"main": "index.js",
|
58
62
|
"dependencies": {
|
@@ -74,43 +78,30 @@
|
|
74
78
|
"rimraf": "2.6.2"
|
75
79
|
},
|
76
80
|
"devDependencies": {
|
77
|
-
"@angular-devkit/build-angular": "
|
78
|
-
"@angular
|
79
|
-
"@angular
|
80
|
-
"@angular/
|
81
|
-
"@angular/
|
82
|
-
"@angular/
|
83
|
-
"@angular/
|
84
|
-
"@angular/
|
85
|
-
"@angular/
|
86
|
-
"@angular/
|
87
|
-
"@angular/
|
88
|
-
"@angular/
|
89
|
-
"@angular/
|
90
|
-
"@angular/
|
91
|
-
"@angular/
|
92
|
-
"@angular/platform-browser-dynamic": "12.2.8",
|
93
|
-
"@angular/pwa": "12.2.8",
|
94
|
-
"@angular/router": "12.2.8",
|
95
|
-
"@angular/service-worker": "12.2.8",
|
81
|
+
"@angular-devkit/build-angular": "~13.2.5",
|
82
|
+
"@angular/animations": "~13.2.0",
|
83
|
+
"@angular/cdk": "~13.2.4",
|
84
|
+
"@angular/cli": "~13.2.5",
|
85
|
+
"@angular/common": "~13.2.0",
|
86
|
+
"@angular/compiler": "~13.2.0",
|
87
|
+
"@angular/compiler-cli": "~13.2.0",
|
88
|
+
"@angular/core": "~13.2.0",
|
89
|
+
"@angular/forms": "~13.2.0",
|
90
|
+
"@angular/material": "~13.2.4",
|
91
|
+
"@angular/platform-browser": "~13.2.0",
|
92
|
+
"@angular/platform-browser-dynamic": "~13.2.0",
|
93
|
+
"@angular/pwa": "~13.2.5",
|
94
|
+
"@angular/router": "~13.2.0",
|
95
|
+
"@angular/service-worker": "~13.2.0",
|
96
96
|
"@mdi/js": "5.8.55",
|
97
|
-
"@
|
98
|
-
"@ngrx/
|
99
|
-
"@ngrx/
|
100
|
-
"@ngrx/
|
101
|
-
"@ngrx/
|
102
|
-
"@ngrx/
|
103
|
-
"@ngrx/store
|
104
|
-
"@
|
105
|
-
"@ngx-formly/core": "5.5.6",
|
106
|
-
"@ngx-formly/ionic": "5.5.6",
|
107
|
-
"@ngx-formly/material": "5.5.6",
|
108
|
-
"@ngx-loading-bar/core": "4.2.0",
|
109
|
-
"@ngx-loading-bar/http": "4.2.0",
|
110
|
-
"@ngx-loading-bar/router": "4.2.0",
|
111
|
-
"@ngx-translate/core": "11.0.1",
|
112
|
-
"@ngx-translate/http-loader": "4.0.0",
|
113
|
-
"@swimlane/ngx-datatable": "16.0.2",
|
97
|
+
"@ngrx/component-store": "~13.0.2",
|
98
|
+
"@ngrx/data": "~13.0.2",
|
99
|
+
"@ngrx/effects": "~13.0.2",
|
100
|
+
"@ngrx/entity": "~13.0.2",
|
101
|
+
"@ngrx/router-store": "~13.0.2",
|
102
|
+
"@ngrx/schematics": "~13.0.2",
|
103
|
+
"@ngrx/store": "~13.0.2",
|
104
|
+
"@ngrx/store-devtools": "~13.0.2",
|
114
105
|
"@types/chai": "4.1.2",
|
115
106
|
"@types/chokidar": "2.1.3",
|
116
107
|
"@types/dateformat": "1.0.1",
|
@@ -122,8 +113,7 @@
|
|
122
113
|
"@types/http-proxy": "1.16.0",
|
123
114
|
"@types/http-proxy-middleware": "0.19.2",
|
124
115
|
"@types/inquirer": "7.3.1",
|
125
|
-
"@types/jasmine": "3.
|
126
|
-
"@types/jasminewd2": "2.0.3",
|
116
|
+
"@types/jasmine": "3.10.0",
|
127
117
|
"@types/json-stringify-safe": "5.0.0",
|
128
118
|
"@types/json5": "0.0.29",
|
129
119
|
"@types/lockfile": "1.0.0",
|
@@ -139,30 +129,23 @@
|
|
139
129
|
"@types/vinyl": "2.0.2",
|
140
130
|
"@types/watch": "1.0.0",
|
141
131
|
"accepts": "1.3.4",
|
142
|
-
"angular-tree-component": "7.0.0",
|
143
132
|
"axios": "0.17.1",
|
144
|
-
"
|
145
|
-
"babel-preset-env": "1.7.0",
|
146
|
-
"background-worker-process": "~0.0.33",
|
133
|
+
"background-worker-process": "~0.0.35",
|
147
134
|
"bcryptjs": "2.4.3",
|
148
135
|
"body-parser": "1.18.2",
|
149
|
-
"bootstrap": "
|
150
|
-
"bs4-breakpoint": "~2.0.38",
|
136
|
+
"bootstrap": "5.1.3",
|
151
137
|
"buffer-shims": "1.0.0",
|
152
|
-
"button-dropdown": "~1.0.43",
|
153
138
|
"callsite-record": "4.1.3",
|
154
139
|
"chai": "4.2.0",
|
155
140
|
"chalk": "2.3.2",
|
156
141
|
"check-node-version": "3.2.0",
|
157
142
|
"cheerio": "1.0.0-rc.3",
|
158
143
|
"circular-json": "0.5.1",
|
159
|
-
"codelyzer": "6.0.0",
|
160
144
|
"command-exists": "1.2.2",
|
161
145
|
"compression": "1.7.4",
|
162
146
|
"concurrently": "3.5.1",
|
163
147
|
"content-type": "1.0.4",
|
164
148
|
"cookie-parser": "1.4.3",
|
165
|
-
"core-js-compat": "3.4.0",
|
166
149
|
"cors": "2.8.4",
|
167
150
|
"cpr": "3.0.1",
|
168
151
|
"cross-spawn": "7.0.3",
|
@@ -184,61 +167,41 @@
|
|
184
167
|
"font-awesome": "4.7.0",
|
185
168
|
"fuzzy": "0.1.3",
|
186
169
|
"gulp": "3.9.1",
|
187
|
-
"hammerjs": "2.0.8",
|
188
170
|
"hostile": "1.3.3",
|
189
|
-
"html-webpack-plugin": "4.3.0",
|
190
171
|
"http-proxy": "1.16.2",
|
191
172
|
"http-proxy-middleware": "0.19.1",
|
192
173
|
"http-server": "0.11.1",
|
193
|
-
"incremental-compiler": "~1.1.
|
174
|
+
"incremental-compiler": "~1.1.53",
|
194
175
|
"inquirer": "7.3.3",
|
195
176
|
"inquirer-autocomplete-prompt": "1.3.0",
|
196
177
|
"istanbul-instrumenter-loader": "2.0.0",
|
197
|
-
"jasmine-core": "
|
198
|
-
"jasmine-spec-reporter": "5.0.0",
|
199
|
-
"jest": "27.0.6",
|
200
|
-
"jest-date-mock": "1.0.8",
|
201
|
-
"jest-junit": "12.2.0",
|
202
|
-
"jest-preset-angular": "9.0.7",
|
178
|
+
"jasmine-core": "4.0.0",
|
203
179
|
"json-stringify-safe": "5.0.1",
|
204
|
-
"json10": "~1.0.
|
180
|
+
"json10": "~1.0.34",
|
205
181
|
"json5-writer": "0.2.0",
|
206
|
-
"karma": "6.
|
182
|
+
"karma": "6.3.0",
|
207
183
|
"karma-chrome-launcher": "3.1.0",
|
208
184
|
"karma-cli": "1.0.1",
|
209
|
-
"karma-coverage": "2.0
|
210
|
-
"karma-coverage-istanbul-reporter": "2.1.0",
|
185
|
+
"karma-coverage": "2.1.0",
|
211
186
|
"karma-jasmine": "4.0.0",
|
212
|
-
"karma-jasmine-html-reporter": "1.
|
187
|
+
"karma-jasmine-html-reporter": "1.7.0",
|
213
188
|
"lnk": "1.0.1",
|
214
189
|
"lockfile": "1.0.4",
|
215
|
-
"lodash-walk-object": "~1.0.
|
190
|
+
"lodash-walk-object": "~1.0.35",
|
216
191
|
"lowdb": "1.0.0",
|
217
|
-
"magic-renamer": "~0.0.
|
192
|
+
"magic-renamer": "~0.0.20",
|
218
193
|
"material-design-icons": "3.0.1",
|
219
194
|
"method-override": "2.3.10",
|
220
195
|
"minimist": "1.2.0",
|
221
196
|
"mocha": "5.2.0",
|
222
197
|
"moment": "2.22.2",
|
223
|
-
"morphi": "~4.0.
|
224
|
-
"ng-
|
225
|
-
"ng-
|
226
|
-
"
|
227
|
-
"ng2-
|
228
|
-
"ng2-logger": "~8.0.18",
|
229
|
-
"ng2-rest": "~11.0.40",
|
230
|
-
"ng4-icons": "~0.0.28",
|
231
|
-
"ng4-modal": "~0.0.28",
|
232
|
-
"ngx-bootstrap": "5.2.0",
|
233
|
-
"ngx-breadcrumbs": "0.0.3",
|
234
|
-
"ngx-editor": "4.1.0",
|
235
|
-
"ngx-moment": "3.5.0",
|
236
|
-
"ngx-pipes": "2.6.0",
|
237
|
-
"ngx-store": "2.1.0",
|
238
|
-
"ngx-toastr": "11.2.1",
|
239
|
-
"ngx-wig": "8.0.0",
|
198
|
+
"morphi": "~4.0.54",
|
199
|
+
"ng-packagr": "13.0.0",
|
200
|
+
"ng-talkback": "~2.4.25",
|
201
|
+
"ng2-logger": "~8.0.20",
|
202
|
+
"ng2-rest": "~11.0.42",
|
240
203
|
"node-cli-test": "0.0.2",
|
241
|
-
"node-cli-tester": "~0.0.
|
204
|
+
"node-cli-tester": "~0.0.22",
|
242
205
|
"node-localstorage": "2.1.6",
|
243
206
|
"node-notifier": "6.0.0",
|
244
207
|
"nodemon": "1.14.11",
|
@@ -250,56 +213,46 @@
|
|
250
213
|
"passport": "0.3.2",
|
251
214
|
"passport-http-bearer": "1.0.1",
|
252
215
|
"password-hash": "1.2.2",
|
253
|
-
"prettier": "2.3.2",
|
254
216
|
"progress": "2.0.3",
|
255
217
|
"prompts": "0.1.8",
|
256
|
-
"protractor": "7.0.0",
|
257
218
|
"randomcolor": "0.5.3",
|
258
|
-
"record-replay-req-res-scenario": "~0.0.
|
219
|
+
"record-replay-req-res-scenario": "~0.0.26",
|
259
220
|
"reflect-metadata": "0.1.10",
|
260
|
-
"rxjs": "
|
261
|
-
"rxjs-compat": "6.5.3",
|
221
|
+
"rxjs": "~7.5.0",
|
262
222
|
"simple-git": "1.96.0",
|
263
223
|
"sloc": "0.2.0",
|
264
224
|
"socket.io": "2.4.1",
|
265
225
|
"sort-package-json": "1.11.0",
|
266
|
-
"static-columns": "~2.0.6",
|
267
226
|
"string-similarity": "4.0.2",
|
268
227
|
"sudo-block": "3.0.0",
|
269
228
|
"systeminformation": "3.45.7",
|
270
229
|
"task.js": "0.1.5",
|
271
|
-
"tnp-cli": "~2.0.
|
272
|
-
"tnp-config": "~1.0.
|
273
|
-
"tnp-core": "~1.0.
|
274
|
-
"tnp-db": "~0.0.
|
275
|
-
"tnp-helpers": "~0.0.
|
276
|
-
"tnp-models": "~0.0.
|
277
|
-
"tnp-tools": "~0.0.
|
278
|
-
"tnp-ui": "~0.0.
|
279
|
-
"
|
280
|
-
"ts-node": "8.3.0",
|
281
|
-
"tsickle": "0.26.0",
|
282
|
-
"tslib": "2.3.0",
|
283
|
-
"tslint": "6.1.0",
|
230
|
+
"tnp-cli": "~2.0.20",
|
231
|
+
"tnp-config": "~1.0.20",
|
232
|
+
"tnp-core": "~1.0.35",
|
233
|
+
"tnp-db": "~0.0.44",
|
234
|
+
"tnp-helpers": "~0.0.73",
|
235
|
+
"tnp-models": "~0.0.37",
|
236
|
+
"tnp-tools": "~0.0.46",
|
237
|
+
"tnp-ui": "~0.0.33",
|
238
|
+
"tslib": "~2.3.0",
|
284
239
|
"typeorm": "~0.2.7",
|
285
|
-
"typescript": "4.
|
286
|
-
"typescript-class-helpers": "~1.0.
|
287
|
-
"typescript-formatter": "7.2.2",
|
288
|
-
"uglifyjs-webpack-plugin": "2.2.0",
|
240
|
+
"typescript": "~4.5.2",
|
241
|
+
"typescript-class-helpers": "~1.0.42",
|
242
|
+
"typescript-formatter": "~7.2.2",
|
289
243
|
"underscore": "1.9.1",
|
290
244
|
"uuid": "8.3.2",
|
291
245
|
"validator": "9.2.0",
|
292
|
-
"vpn-split": "~0.0.
|
246
|
+
"vpn-split": "~0.0.18",
|
293
247
|
"watch": "1.0.2",
|
294
|
-
"
|
295
|
-
"zone.js": "0.11.3"
|
248
|
+
"zone.js": "~0.11.4"
|
296
249
|
},
|
297
250
|
"private": false
|
298
251
|
},
|
299
252
|
"build": {
|
300
|
-
"number":
|
301
|
-
"date": "
|
302
|
-
"hash": "
|
253
|
+
"number": 271,
|
254
|
+
"date": "2022-03-05T23:26:05.000Z",
|
255
|
+
"hash": "85c075d0c9db4005f20977521862aad1bdefee13",
|
303
256
|
"options": {}
|
304
257
|
},
|
305
258
|
"currentProjectName": "tnp-core",
|
@@ -307,7 +260,7 @@
|
|
307
260
|
"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%22tnp-core%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\"]}]}",
|
308
261
|
"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\"}]}",
|
309
262
|
"currentProjectType": "isomorphic-lib",
|
310
|
-
"currentFrameworkVersion": "0.0.
|
263
|
+
"currentFrameworkVersion": "0.0.159",
|
311
264
|
"currentProjectIsStrictSite": false,
|
312
265
|
"currentProjectIsDependencySite": false,
|
313
266
|
"currentProjectIsStatic": false,
|
package/browser/core-config.js
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"core-config.js","sourceRoot":"","sources":["../../tmp-src-bundle/core-config.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,UAAU,GAAG;IACxB,OAAO,EAAE;QACP,oBAAoB,EAAE,sBAAsB;KAC7C;CACF,CAAA"}
|
package/browser/core-imports.js
DELETED
@@ -1,13 +0,0 @@
|
|
1
|
-
import * as _ from 'lodash';
|
2
|
-
import * as q from 'q';
|
3
|
-
// export { Helpers as CoreHelpers } from './core-helpers';
|
4
|
-
export { _, q, }; /* import { _, path, fse, rimraf, crossPlatformPath, os, child_process, http, https, rimraf, net, } from 'tnp-core';
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
import { _ } from 'tnp-core';
|
9
|
-
|
10
|
-
import { } from 'tnp-core';
|
11
|
-
|
12
|
-
*/
|
13
|
-
//# sourceMappingURL=core-imports.js.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"core-imports.js","sourceRoot":"","sources":["../../tmp-src-bundle/core-imports.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,CAAC,MAAM,QAAQ,CAAC;AAC5B,OAAO,KAAK,CAAC,MAAM,GAAG,CAAC;AAIvB,4DAA4D;AAE5D,OAAO,EAAI,CAAC,EAAI,CAAC,GAAI,CAAC,CAAE;;;;;;;;EAQtB"}
|
package/browser/core-models.js
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"core-models.js","sourceRoot":"","sources":["../../tmp-src-bundle/core-models.ts"],"names":[],"mappings":""}
|
@@ -1,28 +0,0 @@
|
|
1
|
-
import { Helpers } from './index';
|
2
|
-
export class HelpersIsomorphic {
|
3
|
-
constructor() {
|
4
|
-
this.simulateBrowser = false;
|
5
|
-
}
|
6
|
-
get isBrowser() {
|
7
|
-
return Helpers.simulateBrowser || !!(typeof window !== 'undefined' && window.document);
|
8
|
-
}
|
9
|
-
get isNode() {
|
10
|
-
return Helpers.simulateBrowser || !Helpers.isBrowser;
|
11
|
-
}
|
12
|
-
contain(arr, item) {
|
13
|
-
return arr.filter(l => {
|
14
|
-
if (l instanceof RegExp) {
|
15
|
-
return l.test(item);
|
16
|
-
}
|
17
|
-
if (l === item) {
|
18
|
-
return true;
|
19
|
-
}
|
20
|
-
if ((item.match && typeof item.match === 'function') ? item.match(l) : false) {
|
21
|
-
return true;
|
22
|
-
}
|
23
|
-
return false;
|
24
|
-
}).length > 0;
|
25
|
-
}
|
26
|
-
}
|
27
|
-
//#endregion
|
28
|
-
//# sourceMappingURL=helpers-isomorphic.js.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"helpers-isomorphic.js","sourceRoot":"","sources":["../../tmp-src-bundle/helpers-isomorphic.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAElC,MAAM,OAAO,iBAAiB;IAA9B;QACS,oBAAe,GAAG,KAAK,CAAC;IAyBjC,CAAC;IAvBC,IAAI,SAAS;QAEX,OAAO,OAAO,CAAC,eAAe,IAAI,CAAC,CAAC,CAAC,OAAO,MAAM,KAAK,WAAW,IAAI,MAAM,CAAC,QAAQ,CAAC,CAAC;IACzF,CAAC;IACD,IAAI,MAAM;QAER,OAAO,OAAO,CAAC,eAAe,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC;IACvD,CAAC;IACD,OAAO,CAAC,GAAU,EAAE,IAAS;QAC3B,OAAO,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE;YACpB,IAAI,CAAC,YAAY,MAAM,EAAE;gBACvB,OAAO,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAA;aACpB;YACD,IAAI,CAAC,KAAK,IAAI,EAAE;gBACd,OAAO,IAAI,CAAC;aACb;YACD,IAAI,CAAC,IAAI,CAAC,KAAK,IAAI,OAAO,IAAI,CAAC,KAAK,KAAK,UAAU,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,EAAE;gBAC5E,OAAO,IAAI,CAAA;aACZ;YACD,OAAO,KAAK,CAAC;QACf,CAAC,CAAC,CAAC,MAAM,GAAG,CAAC,CAAC;IAChB,CAAC;CAEF;AACD,YAAY"}
|
@@ -1,67 +0,0 @@
|
|
1
|
-
// import { config } from 'tnp-config/browser';
|
2
|
-
// import { PROGRESS_DATA } from 'tnp-models/browser';
|
3
|
-
import { Helpers } from './index';
|
4
|
-
import { HelpersIsomorphic } from './helpers-isomorphic';
|
5
|
-
const KEY = {
|
6
|
-
LAST_ERROR: Symbol(),
|
7
|
-
LAST_INFO: Symbol(),
|
8
|
-
LAST_WARN: Symbol(),
|
9
|
-
LAST_LOG: Symbol(),
|
10
|
-
};
|
11
|
-
// export class Log {
|
12
|
-
// private static _instance: Log;
|
13
|
-
// public Instance() {
|
14
|
-
// if (!Log._instance) {
|
15
|
-
// Log._instance = new Log();
|
16
|
-
// }
|
17
|
-
// return Log._instance;
|
18
|
-
// }
|
19
|
-
// create(name: string, level?: Level) {
|
20
|
-
// if (level === void 0) {
|
21
|
-
// level = Level.DATA;
|
22
|
-
// }
|
23
|
-
// return {
|
24
|
-
// d(details: string, debugLevel?: number) {
|
25
|
-
// return Helpers.log(`[${name}] ${details}`, debugLevel)
|
26
|
-
// },
|
27
|
-
// i(details: string) {
|
28
|
-
// return Helpers.info(`[${name}] ${details}`)
|
29
|
-
// },
|
30
|
-
// w(details: string, noExit = false, noTrace = false) {
|
31
|
-
// return Helpers.error(`[${name}] ${details}`, noExit, noTrace);
|
32
|
-
// },
|
33
|
-
// er(details: string, ) {
|
34
|
-
// return Helpers.info(`[${name}] ${details}`)
|
35
|
-
// },
|
36
|
-
// }
|
37
|
-
// }
|
38
|
-
// }
|
39
|
-
export class HelpersMessages extends HelpersIsomorphic {
|
40
|
-
msgCacheClear() {
|
41
|
-
}
|
42
|
-
error(details, noExit = false, noTrace = false) {
|
43
|
-
if (Helpers.isBrowser) {
|
44
|
-
console.error(details);
|
45
|
-
return;
|
46
|
-
}
|
47
|
-
}
|
48
|
-
info(details, repeatable = false) {
|
49
|
-
if (Helpers.isBrowser) {
|
50
|
-
console.info(details);
|
51
|
-
return;
|
52
|
-
}
|
53
|
-
}
|
54
|
-
log(details, debugLevel = 0) {
|
55
|
-
if (Helpers.isBrowser) {
|
56
|
-
console.log(details);
|
57
|
-
return;
|
58
|
-
}
|
59
|
-
}
|
60
|
-
warn(details, trace = false) {
|
61
|
-
if (Helpers.isBrowser) {
|
62
|
-
console.warn(details);
|
63
|
-
return;
|
64
|
-
}
|
65
|
-
}
|
66
|
-
}
|
67
|
-
//# sourceMappingURL=helpers-messages.js.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"helpers-messages.js","sourceRoot":"","sources":["../../tmp-src-bundle/helpers-messages.ts"],"names":[],"mappings":"AAEA,+CAA+C;AAC/C,sDAAsD;AACtD,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAClC,OAAO,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AAIzD,MAAM,GAAG,GAAG;IACV,UAAU,EAAE,MAAM,EAAE;IACpB,SAAS,EAAE,MAAM,EAAE;IACnB,SAAS,EAAE,MAAM,EAAE;IACnB,QAAQ,EAAE,MAAM,EAAE;CACnB,CAAA;AAED,qBAAqB;AACrB,mCAAmC;AACnC,wBAAwB;AACxB,4BAA4B;AAC5B,mCAAmC;AACnC,QAAQ;AACR,4BAA4B;AAC5B,MAAM;AAEN,0CAA0C;AAC1C,8BAA8B;AAC9B,4BAA4B;AAC5B,QAAQ;AACR,eAAe;AACf,kDAAkD;AAClD,iEAAiE;AACjE,WAAW;AACX,6BAA6B;AAC7B,sDAAsD;AACtD,WAAW;AAEX,8DAA8D;AAC9D,yEAAyE;AACzE,WAAW;AACX,gCAAgC;AAChC,sDAAsD;AACtD,WAAW;AACX,QAAQ;AACR,MAAM;AAEN,IAAI;AAEJ,MAAM,OAAO,eAAgB,SAAQ,iBAAiB;IAEpD,aAAa;IAEb,CAAC;IAED,KAAK,CAAC,OAAY,EAAE,MAAM,GAAG,KAAK,EAAE,OAAO,GAAG,KAAK;QACjD,IAAI,OAAO,CAAC,SAAS,EAAE;YACrB,OAAO,CAAC,KAAK,CAAC,OAAO,CAAC,CAAA;YACtB,OAAO;SACR;IAEH,CAAC;IAED,IAAI,CAAC,OAAe,EAAE,UAAU,GAAG,KAAK;QACtC,IAAI,OAAO,CAAC,SAAS,EAAE;YACrB,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;YACtB,OAAO;SACR;IAEH,CAAC;IAED,GAAG,CAAC,OAAe,EAAE,UAAU,GAAG,CAAC;QACjC,IAAI,OAAO,CAAC,SAAS,EAAE;YACrB,OAAO,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC;YACrB,OAAO;SACR;IAEH,CAAC;IAED,IAAI,CAAC,OAAe,EAAE,KAAK,GAAG,KAAK;QACjC,IAAI,OAAO,CAAC,SAAS,EAAE;YACrB,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;YACtB,OAAO;SACR;IAEH,CAAC;CACF"}
|
package/browser/helpers.js
DELETED
@@ -1,65 +0,0 @@
|
|
1
|
-
import { __awaiter } from "tslib";
|
2
|
-
import { _, } from './core-imports';
|
3
|
-
import { HelpersMessages } from './helpers-messages';
|
4
|
-
const encoding = 'utf8';
|
5
|
-
export class HelpersCore extends HelpersMessages {
|
6
|
-
constructor() {
|
7
|
-
super();
|
8
|
-
//#endregion
|
9
|
-
this.bigMaxBuffer = 2024 * 500;
|
10
|
-
}
|
11
|
-
static get InstanceCore() {
|
12
|
-
if (!HelpersCore._instanceCore) {
|
13
|
-
HelpersCore._instanceCore = new HelpersCore();
|
14
|
-
}
|
15
|
-
return HelpersCore._instanceCore;
|
16
|
-
}
|
17
|
-
removeSlashAtEnd(s) {
|
18
|
-
s = (s === null || s === void 0 ? void 0 : s.endsWith(`/`)) ? s.slice(0, s.length - 1) : s;
|
19
|
-
return s;
|
20
|
-
}
|
21
|
-
stringify(inputObject) {
|
22
|
-
// if (_.isString(inputObject)) {
|
23
|
-
// return inputObject;
|
24
|
-
// }
|
25
|
-
// if (_.isObject(inputObject)) {
|
26
|
-
// config.log(inputObject)
|
27
|
-
// Helpers.error(`[tnp-helpers] trying to stringify not a object`, false, true);
|
28
|
-
// }
|
29
|
-
return JSON.stringify(inputObject, null, 2);
|
30
|
-
}
|
31
|
-
runSyncOrAsync(fn, ...firstArg) {
|
32
|
-
return __awaiter(this, void 0, void 0, function* () {
|
33
|
-
if (_.isUndefined(fn)) {
|
34
|
-
return;
|
35
|
-
}
|
36
|
-
// let wasPromise = false;
|
37
|
-
let promisOrValue = _.isArray(fn) ? fn[1][fn[0]](...firstArg) : fn(...firstArg);
|
38
|
-
if (promisOrValue instanceof Promise) {
|
39
|
-
// wasPromise = true;
|
40
|
-
promisOrValue = Promise.resolve(promisOrValue);
|
41
|
-
}
|
42
|
-
// console.log('was promis ', wasPromise)
|
43
|
-
return promisOrValue;
|
44
|
-
});
|
45
|
-
}
|
46
|
-
run(command, options) {
|
47
|
-
return {};
|
48
|
-
}
|
49
|
-
/**
|
50
|
-
* Quick fix for object values
|
51
|
-
*/
|
52
|
-
values(obj) {
|
53
|
-
if (_.isObject(obj) && !Array.isArray(obj)) {
|
54
|
-
const values = [];
|
55
|
-
for (const key in obj) {
|
56
|
-
if (Object.prototype.hasOwnProperty.call(obj, key)) {
|
57
|
-
values.push(obj[key]);
|
58
|
-
}
|
59
|
-
}
|
60
|
-
return values;
|
61
|
-
}
|
62
|
-
return [];
|
63
|
-
}
|
64
|
-
}
|
65
|
-
//# sourceMappingURL=helpers.js.map
|
package/browser/helpers.js.map
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"helpers.js","sourceRoot":"","sources":["../../tmp-src-bundle/helpers.ts"],"names":[],"mappings":";AAEA,OAAO,EAAI,CAAC,GAAI,MAAM,gBAAgB,CAAC;AAGvC,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AAIrD,MAAM,QAAQ,GAAG,MAAM,CAAC;AAExB,MAAM,OAAO,WAAY,SAAQ,eAAe;IAe9C;QACE,KAAK,EAAE,CAAC;QANV,YAAY;QAIH,iBAAY,GAAG,IAAI,GAAG,GAAG,CAAC;IAInC,CAAC;IAdM,MAAM,KAAK,YAAY;QAC5B,IAAI,CAAC,WAAW,CAAC,aAAa,EAAE;YAC9B,WAAW,CAAC,aAAa,GAAG,IAAI,WAAW,EAAE,CAAC;SAC/C;QACD,OAAO,WAAW,CAAC,aAAa,CAAC;IACnC,CAAC;IAWD,gBAAgB,CAAC,CAAS;QACxB,CAAC,GAAG,CAAA,CAAC,aAAD,CAAC,uBAAD,CAAC,CAAE,QAAQ,CAAC,GAAG,CAAC,EAAC,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QACpD,OAAO,CAAC,CAAC;IACX,CAAC;IAED,SAAS,CAAC,WAAgB;QACxB,iCAAiC;QACjC,wBAAwB;QACxB,IAAI;QACJ,iCAAiC;QACjC,4BAA4B;QAC5B,kFAAkF;QAClF,IAAI;QACJ,OAAO,IAAI,CAAC,SAAS,CAAC,WAAW,EAAE,IAAI,EAAE,CAAC,CAAC,CAAC;IAC9C,CAAC;IAEK,cAAc,CAAC,EAA+B,EAAE,GAAG,QAAe;;YACtE,IAAI,CAAC,CAAC,WAAW,CAAC,EAAE,CAAC,EAAE;gBACrB,OAAO;aACR;YACD,0BAA0B;YAC1B,IAAI,aAAa,GAAG,CAAC,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,QAAQ,CAAC,CAAC;YAChF,IAAI,aAAa,YAAY,OAAO,EAAE;gBACpC,qBAAqB;gBACrB,aAAa,GAAG,OAAO,CAAC,OAAO,CAAC,aAAa,CAAC,CAAA;aAC/C;YACD,yCAAyC;YACzC,OAAO,aAAa,CAAC;QACvB,CAAC;KAAA;IAcD,GAAG,CAAC,OAAe,EACjB,OAAoB;QAGpB,OAAO,EAEN,CAAA;IACH,CAAC;IAiBD;;OAEG;IACH,MAAM,CAAC,GAAQ;QACb,IAAI,CAAC,CAAC,QAAQ,CAAC,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE;YAC1C,MAAM,MAAM,GAAG,EAAE,CAAC;YAClB,KAAK,MAAM,GAAG,IAAI,GAAG,EAAE;gBACrB,IAAI,MAAM,CAAC,SAAS,CAAC,cAAc,CAAC,IAAI,CAAC,GAAG,EAAE,GAAG,CAAC,EAAE;oBAClD,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC;iBACvB;aACF;YACD,OAAO,MAAM,CAAC;SACf;QACD,OAAO,EAAE,CAAC;IACZ,CAAC;CAwBF"}
|
package/browser/index.js
DELETED
@@ -1,8 +0,0 @@
|
|
1
|
-
export * from './core-imports';
|
2
|
-
export * from './core-models';
|
3
|
-
import { HelpersCore as Base } from './helpers';
|
4
|
-
export * from './core-config';
|
5
|
-
export * from './progress-data';
|
6
|
-
export { HelpersCore as CoreHelpers } from './helpers';
|
7
|
-
export let Helpers = Base.InstanceCore;
|
8
|
-
//# sourceMappingURL=index.js.map
|
package/browser/index.js.map
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../tmp-src-bundle/index.ts"],"names":[],"mappings":"AAEA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,eAAe,CAAC;AAC9B,OAAO,EAAE,WAAW,IAAI,IAAI,EAAE,MAAM,WAAW,CAAC;AAChD,cAAc,eAAe,CAAC;AAC9B,cAAc,iBAAiB,CAAC;AAChC,OAAO,EAAE,WAAW,IAAI,WAAW,EAAE,MAAM,WAAW,CAAC;AACvD,MAAM,CAAC,IAAI,OAAO,GAAG,IAAI,CAAC,YAAY,CAAC"}
|
package/browser/progress-data.js
DELETED
@@ -1,46 +0,0 @@
|
|
1
|
-
import { _ } from './core-imports';
|
2
|
-
export class PROGRESS_DATA {
|
3
|
-
constructor() {
|
4
|
-
this.type = 'event';
|
5
|
-
}
|
6
|
-
static log(log) {
|
7
|
-
}
|
8
|
-
static resolveFrom(chunk, callbackOnFounded, checkSplit = true) {
|
9
|
-
let progress;
|
10
|
-
let res = [];
|
11
|
-
if (!_.isString(chunk)) {
|
12
|
-
return [];
|
13
|
-
}
|
14
|
-
chunk = chunk.trim();
|
15
|
-
if (checkSplit) {
|
16
|
-
const split = chunk.split(/\r\n|\n|\r/);
|
17
|
-
if (split.length > 1) {
|
18
|
-
// console.log('split founded', split)
|
19
|
-
split.forEach(s => {
|
20
|
-
res = res.concat(this.resolveFrom(s, callbackOnFounded, false));
|
21
|
-
});
|
22
|
-
return res;
|
23
|
-
}
|
24
|
-
}
|
25
|
-
if (/\[\[\[.*\]\]\]/g.test(chunk)) {
|
26
|
-
chunk = chunk.replace(/^\[\[\[/g, '').replace(/\]\]\]$/g, '');
|
27
|
-
progress = chunk;
|
28
|
-
}
|
29
|
-
if (!_.isUndefined(progress)) {
|
30
|
-
try {
|
31
|
-
const p = JSON.parse(progress);
|
32
|
-
const single = _.merge(new PROGRESS_DATA(), p);
|
33
|
-
res = res.concat([single]);
|
34
|
-
if (_.isFunction(callbackOnFounded)) {
|
35
|
-
callbackOnFounded(single);
|
36
|
-
}
|
37
|
-
}
|
38
|
-
catch (err) {
|
39
|
-
console.log(err);
|
40
|
-
console.error(`ProgresssBarData: fail to parse "${progress}"`);
|
41
|
-
}
|
42
|
-
}
|
43
|
-
return res;
|
44
|
-
}
|
45
|
-
}
|
46
|
-
//# sourceMappingURL=progress-data.js.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"progress-data.js","sourceRoot":"","sources":["../../tmp-src-bundle/progress-data.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,CAAC,EAAE,MAAM,gBAAgB,CAAC;AAenC,MAAM,OAAO,aAAa;IAA1B;QAmDS,SAAI,GAAuB,OAAO,CAAA;IAK3C,CAAC;IAtDQ,MAAM,CAAC,GAAG,CAAC,GAAmB;IAErC,CAAC;IAGM,MAAM,CAAC,WAAW,CAAC,KAAa,EACrC,iBAAgD,EAAE,UAAU,GAAG,IAAI;QAEnE,IAAI,QAAQ,CAAC;QACb,IAAI,GAAG,GAAoB,EAAE,CAAC;QAC9B,IAAI,CAAC,CAAC,CAAC,QAAQ,CAAC,KAAK,CAAC,EAAE;YACtB,OAAO,EAAE,CAAC;SACX;QACD,KAAK,GAAG,KAAK,CAAC,IAAI,EAAE,CAAC;QAErB,IAAI,UAAU,EAAE;YACd,MAAM,KAAK,GAAG,KAAK,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC;YACxC,IAAI,KAAK,CAAC,MAAM,GAAG,CAAC,EAAE;gBACpB,sCAAsC;gBACtC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE;oBAChB,GAAG,GAAG,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,EAAE,iBAAiB,EAAE,KAAK,CAAC,CAAC,CAAC;gBAClE,CAAC,CAAC,CAAC;gBACH,OAAO,GAAG,CAAC;aACZ;SACF;QAED,IAAI,iBAAiB,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE;YACjC,KAAK,GAAG,KAAK,CAAC,OAAO,CAAC,UAAU,EAAE,EAAE,CAAC,CAAC,OAAO,CAAC,UAAU,EAAE,EAAE,CAAC,CAAC;YAC9D,QAAQ,GAAG,KAAK,CAAC;SAClB;QACD,IAAI,CAAC,CAAC,CAAC,WAAW,CAAC,QAAQ,CAAC,EAAE;YAC5B,IAAI;gBACF,MAAM,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC;gBAC/B,MAAM,MAAM,GAAG,CAAC,CAAC,KAAK,CAAC,IAAI,aAAa,EAAE,EAAE,CAAC,CAAC,CAAC;gBAC/C,GAAG,GAAG,GAAG,CAAC,MAAM,CAAC,CAAC,MAAM,CAAC,CAAC,CAAA;gBAC1B,IAAI,CAAC,CAAC,UAAU,CAAC,iBAAiB,CAAC,EAAE;oBACnC,iBAAiB,CAAC,MAAM,CAAC,CAAC;iBAC3B;aACF;YAAC,OAAO,GAAG,EAAE;gBACZ,OAAO,CAAC,GAAG,CAAC,GAAG,CAAC,CAAA;gBAChB,OAAO,CAAC,KAAK,CAAC,oCAAoC,QAAQ,GAAG,CAAC,CAAA;aAC/D;SACF;QACD,OAAO,GAAG,CAAC;IACb,CAAC;CAUF"}
|
package/browser/public-api.js
DELETED
@@ -1,8 +0,0 @@
|
|
1
|
-
export * from './core-imports';
|
2
|
-
export * from './core-models';
|
3
|
-
import { HelpersCore as Base } from './helpers';
|
4
|
-
export * from './core-config';
|
5
|
-
export * from './progress-data';
|
6
|
-
export { HelpersCore as CoreHelpers } from './helpers';
|
7
|
-
export let Helpers = Base.InstanceCore;
|
8
|
-
//# sourceMappingURL=public-api.js.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"public-api.js","sourceRoot":"","sources":["../../tmp-src-bundle/public-api.ts"],"names":[],"mappings":"AAEA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,eAAe,CAAC;AAC9B,OAAO,EAAE,WAAW,IAAI,IAAI,EAAE,MAAM,WAAW,CAAC;AAChD,cAAc,eAAe,CAAC;AAC9B,cAAc,iBAAiB,CAAC;AAChC,OAAO,EAAE,WAAW,IAAI,WAAW,EAAE,MAAM,WAAW,CAAC;AACvD,MAAM,CAAC,IAAI,OAAO,GAAG,IAAI,CAAC,YAAY,CAAC"}
|
package/client/core-config.js
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"core-config.js","sourceRoot":"","sources":["../../tmp-src-bundle/core-config.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,UAAU,GAAG;IACxB,OAAO,EAAE;QACP,oBAAoB,EAAE,sBAAsB;KAC7C;CACF,CAAA"}
|
package/client/core-imports.d.ts
DELETED
package/client/core-imports.js
DELETED
@@ -1,13 +0,0 @@
|
|
1
|
-
import * as _ from 'lodash';
|
2
|
-
import * as q from 'q';
|
3
|
-
// export { Helpers as CoreHelpers } from './core-helpers';
|
4
|
-
export { _, q, }; /* import { _, path, fse, rimraf, crossPlatformPath, os, child_process, http, https, rimraf, net, } from 'tnp-core';
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
import { _ } from 'tnp-core';
|
9
|
-
|
10
|
-
import { } from 'tnp-core';
|
11
|
-
|
12
|
-
*/
|
13
|
-
//# sourceMappingURL=core-imports.js.map
|