tnp-config 13.1.46 → 13.1.48
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/browser/esm2020/lib/config.mjs +13 -75
- package/browser/esm2020/lib/index.mjs +3 -1
- package/browser/fesm2015/tnp-config.mjs +16 -76
- package/browser/fesm2020/tnp-config.mjs +15 -74
- package/browser/lib/config.d.ts +2 -1
- package/browser/lib/index.d.ts +2 -1
- package/browser/public-api.d.ts +2 -1
- package/browser/tnp-config.d.ts +2 -1
- package/client/esm2020/lib/config.mjs +13 -75
- package/client/esm2020/lib/index.mjs +3 -1
- package/client/fesm2015/tnp-config.mjs +16 -76
- package/client/fesm2020/tnp-config.mjs +15 -74
- package/client/lib/config.d.ts +2 -1
- package/client/lib/index.d.ts +2 -1
- package/client/public-api.d.ts +2 -1
- package/client/tnp-config.d.ts +2 -1
- package/lib/config.d.ts +4 -32
- package/lib/config.js +25 -17
- package/package.json +2 -3
- package/tmp-environment.json +162 -161
- package/websql/esm2020/lib/config.mjs +13 -75
- package/websql/esm2020/lib/index.mjs +3 -1
- package/websql/fesm2015/tnp-config.mjs +16 -76
- package/websql/fesm2020/tnp-config.mjs +15 -74
- package/websql/lib/config.d.ts +2 -1
- package/websql/lib/index.d.ts +2 -1
- package/websql/public-api.d.ts +2 -1
- package/websql/tnp-config.d.ts +2 -1
- package/app.js.map +0 -1
- package/browser/fesm2015/tnp-config.mjs.map +0 -1
- package/browser/fesm2020/tnp-config.mjs.map +0 -1
- package/client/fesm2015/tnp-config.mjs.map +0 -1
- package/client/fesm2020/tnp-config.mjs.map +0 -1
- package/index.js.map +0 -1
- package/lib/config.js.map +0 -1
- package/lib/index.js.map +0 -1
- package/websql/fesm2015/tnp-config.mjs.map +0 -1
- package/websql/fesm2020/tnp-config.mjs.map +0 -1
@@ -46,7 +46,6 @@ const CoreLibCategoryArr = [
|
|
46
46
|
GlobalLibTypeName.docker,
|
47
47
|
'common'
|
48
48
|
];
|
49
|
-
//#endregion
|
50
49
|
const allowedEnvironments = ['static', 'dev', 'prod', 'stage', 'online', 'test', 'qa', 'custom'];
|
51
50
|
const allowedEnvironmentsObj = {};
|
52
51
|
allowedEnvironments.forEach(s => {
|
@@ -103,21 +102,16 @@ const stylesFilesExtension = [
|
|
103
102
|
'scss',
|
104
103
|
'less',
|
105
104
|
];
|
106
|
-
const folder = Object.assign({ scripts: 'scripts', scenarios: 'scenarios', bower: 'bower', src: 'src', out: 'out', app: 'app', lib: 'lib', libs: 'libs', source: 'source', custom: 'custom', components: 'components', assets: 'assets', apps: 'apps',
|
107
|
-
// entities: 'entities',
|
108
|
-
// controllers: 'controllers',
|
109
|
-
// projects: 'projects',
|
110
|
-
workspace: 'workspace', container: 'container', bin: 'bin', _bin: '.bin', _vscode: '.vscode', project: 'project', external: 'external', tmpDist: 'tmp-dist', tmpFor(d) {
|
105
|
+
const folder = Object.assign({ scripts: 'scripts', scenarios: 'scenarios', bower: 'bower', src: 'src', out: 'out', app: 'app', lib: 'lib', libs: 'libs', source: 'source', custom: 'custom', components: 'components', assets: 'assets', apps: 'apps', workspace: 'workspace', container: 'container', bin: 'bin', _bin: '.bin', _vscode: '.vscode', project: 'project', external: 'external', tmpDist: 'tmp-dist', tmpFor(d) {
|
111
106
|
return `tmp-src-${d}`;
|
112
107
|
}, targetProjects: {
|
113
108
|
DEFAULT_PATH_GENERATED: 'tmp-target-projects/generated',
|
114
109
|
DEFAULT_PATH_ORIGINS: 'tmp-target-projects/origins',
|
115
110
|
} }, tempFolders);
|
116
|
-
// @LAST RESOLVE TNP LOCATION !!! for each context and RELEASE TNP-CONFIG
|
117
111
|
let dirnameForTnp;
|
118
112
|
/* */
|
119
113
|
/* */
|
120
|
-
const firedevProjectsRelative = `../
|
114
|
+
const firedevProjectsRelative = `../morphi/projects`;
|
121
115
|
/* */
|
122
116
|
/* */
|
123
117
|
/* */
|
@@ -212,75 +206,48 @@ const moduleNameIsomorphicLib = [
|
|
212
206
|
folder.browser,
|
213
207
|
];
|
214
208
|
const argsReplacementsBuild = {
|
215
|
-
// SHORTCUTS
|
216
209
|
'ba': 'build:app',
|
217
210
|
'baw': 'build:app:watch',
|
218
211
|
'bw': 'build:watch',
|
219
|
-
'bap': 'build:app:prod',
|
220
|
-
'bapw': 'build:app:prod:watch',
|
221
|
-
// (dist)app build for normal development - watch is ng serve
|
222
212
|
'bda': 'build:dist:app',
|
223
|
-
'
|
224
|
-
|
225
|
-
'
|
226
|
-
'
|
227
|
-
|
228
|
-
'
|
229
|
-
|
230
|
-
'bdp': 'build:dist:prod', 'bdpw': 'build:dist:prod:watch',
|
231
|
-
// (bundle)app build for static code (firedev plugins, project final code, etc.)
|
232
|
-
'bba': 'build:bundle:app', 'bbaw': 'build:bundle:app:watch',
|
233
|
-
// (bunle)lib build for static code (firedev plugins, project final code, etc.)
|
234
|
-
'bb': 'build:bundle', 'bbw': 'build:bundle:watch',
|
235
|
-
// (bunle)lib build for static code with ng build (PRODUCTION MINIFIED CODE)
|
236
|
-
'bbp': 'build:bundle:prod', 'bbpw': 'build:bundle:prod:watch',
|
237
|
-
'sb': 'static:build',
|
238
|
-
'sbp': 'static:build:prod',
|
239
|
-
'sbd': 'static:build:dist',
|
240
|
-
'sbl': 'static:build:lib',
|
241
|
-
'sba': 'static:build:app',
|
242
|
-
'cb': 'clean:build'
|
213
|
+
'bdap': 'build:dist:app:prod',
|
214
|
+
'bd': 'build:dist',
|
215
|
+
'bdw': 'build:dist:watch',
|
216
|
+
'bba': 'build:bundle:app',
|
217
|
+
'bbap': 'build:bundle:app:prod',
|
218
|
+
'bb': 'build:bundle',
|
219
|
+
'bbw': 'build:bundle:watch',
|
243
220
|
};
|
244
221
|
const argsReplacementsOther = {
|
245
|
-
// github docs
|
246
222
|
'ghpush': 'githubpush',
|
247
223
|
'ghpull': 'githubpull',
|
248
|
-
// last
|
249
224
|
'l': 'last',
|
250
225
|
'sl': 'show:last',
|
251
226
|
'lb': 'last:build',
|
252
|
-
// install
|
253
227
|
'i': 'install',
|
254
228
|
'si': 'sinstall',
|
255
229
|
'il': 'install:locally',
|
256
230
|
'rc': 'recommit',
|
257
|
-
// release
|
258
231
|
'rp': 'release:prod',
|
259
232
|
'r': 'release',
|
260
233
|
'rmajor': 'release:major',
|
261
234
|
'rminor': 'release:minor',
|
262
235
|
'r:major': 'release:major',
|
263
236
|
'r:minor': 'release:minor',
|
264
|
-
// 'ra': 'release:all',
|
265
237
|
'ar': 'auto:release',
|
266
238
|
're': 'reinstall',
|
267
|
-
// versopm
|
268
239
|
'--version': 'version',
|
269
240
|
'-v': 'version',
|
270
|
-
// open
|
271
241
|
'occ': 'open:core:container',
|
272
242
|
'ocp': 'open:core:project',
|
273
|
-
// test
|
274
243
|
'twd': 'test:watch:debug',
|
275
244
|
'tdw': 'test:watch:debug',
|
276
245
|
'tw': 'test:watch',
|
277
246
|
'td': 'test:debug',
|
278
247
|
't': 'test',
|
279
|
-
// git push
|
280
248
|
'pt': 'push:tag',
|
281
249
|
'p': 'push',
|
282
250
|
'pa': 'pushalll',
|
283
|
-
// other
|
284
251
|
'sj': 'select:java',
|
285
252
|
'scm': 'showcoremodules',
|
286
253
|
'tpu': 'target:proj:update',
|
@@ -337,18 +304,8 @@ const config = {
|
|
337
304
|
debug: {
|
338
305
|
sourceModifier: [],
|
339
306
|
baselineSiteJoin: {
|
340
|
-
DEBUG_PATHES: [
|
341
|
-
|
342
|
-
// '/src/app/+preview-components/preview-components.component.ts',
|
343
|
-
// '/src/controllers.ts',
|
344
|
-
// '/src/app/+preview-components/components/+preview-buildtnpprocess/preview-buildtnpprocess.component.ts'
|
345
|
-
],
|
346
|
-
DEBUG_MERGE_PATHES: [
|
347
|
-
// "src/apps/auth/AuthController.ts",
|
348
|
-
// '/src/app/+preview-components/components/+preview-buildtnpprocess/preview-buildtnpprocess.component.ts'
|
349
|
-
// '/components/formly/base-components/editor/editor-wrapper.component.ts'
|
350
|
-
// '/src/app/+preview-components/components/+preview-buildtnpprocess/preview-buildtnpprocess.component.ts'
|
351
|
-
]
|
307
|
+
DEBUG_PATHES: [],
|
308
|
+
DEBUG_MERGE_PATHES: []
|
352
309
|
}
|
353
310
|
},
|
354
311
|
/* */
|
@@ -545,7 +502,6 @@ const config = {
|
|
545
502
|
],
|
546
503
|
}
|
547
504
|
},
|
548
|
-
// environmentName,
|
549
505
|
localLibs: [
|
550
506
|
'eslint',
|
551
507
|
'mkdirp',
|
@@ -587,16 +543,10 @@ const config = {
|
|
587
543
|
{ name: 'increase-memory-limit' },
|
588
544
|
{ name: 'bower' },
|
589
545
|
{ name: 'fkill', installName: 'fkill-cli' },
|
590
|
-
// { name: 'yo' },
|
591
546
|
{ name: 'mocha' },
|
592
|
-
// { name: 'chai' },
|
593
547
|
{ name: 'ts-node' },
|
594
548
|
{ name: 'vsce' },
|
595
|
-
// { name: 'stmux' },
|
596
549
|
{ name: 'webpack-bundle-analyzer' },
|
597
|
-
// { name: 'ng', installName: '@angular/cli' },
|
598
|
-
// { name: 'ngx-pwa-icons', version: '0.1.2' },
|
599
|
-
// { name: 'real-favicon', installName: 'cli-real-favicon' },
|
600
550
|
{ name: 'babel', installName: 'babel-cli' },
|
601
551
|
{ name: 'javascript-obfuscator', version: '4' },
|
602
552
|
{ name: 'uglifyjs', installName: 'uglify-js' },
|
@@ -633,21 +583,11 @@ const config = {
|
|
633
583
|
]
|
634
584
|
}
|
635
585
|
};
|
636
|
-
|
637
|
-
//
|
638
|
-
|
639
|
-
|
640
|
-
|
641
|
-
// { name: 'check-node-version' },
|
642
|
-
// { name: 'vsce' },
|
643
|
-
// ],
|
644
|
-
// programs: [
|
645
|
-
// // {
|
646
|
-
// // name: 'code',
|
647
|
-
// // website: 'https://code.visualstudio.com/'
|
648
|
-
// // }
|
649
|
-
// ] as { name: string; website: string }[]
|
650
|
-
// };
|
586
|
+
;
|
587
|
+
({}); // @--end-of-file-for-module=tnp-config tmp-src-bundle/lib/config.ts
|
588
|
+
|
589
|
+
;
|
590
|
+
({}); // @--end-of-file-for-module=tnp-config tmp-src-bundle/lib/index.ts
|
651
591
|
|
652
592
|
/**
|
653
593
|
* Generated bundle index. Do not edit.
|
@@ -46,7 +46,6 @@ const CoreLibCategoryArr = [
|
|
46
46
|
GlobalLibTypeName.docker,
|
47
47
|
'common'
|
48
48
|
];
|
49
|
-
//#endregion
|
50
49
|
const allowedEnvironments = ['static', 'dev', 'prod', 'stage', 'online', 'test', 'qa', 'custom'];
|
51
50
|
const allowedEnvironmentsObj = {};
|
52
51
|
allowedEnvironments.forEach(s => {
|
@@ -162,9 +161,6 @@ const folder = {
|
|
162
161
|
components: 'components',
|
163
162
|
assets: 'assets',
|
164
163
|
apps: 'apps',
|
165
|
-
// entities: 'entities',
|
166
|
-
// controllers: 'controllers',
|
167
|
-
// projects: 'projects',
|
168
164
|
workspace: 'workspace',
|
169
165
|
container: 'container',
|
170
166
|
bin: 'bin',
|
@@ -182,11 +178,10 @@ const folder = {
|
|
182
178
|
},
|
183
179
|
...tempFolders
|
184
180
|
};
|
185
|
-
// @LAST RESOLVE TNP LOCATION !!! for each context and RELEASE TNP-CONFIG
|
186
181
|
let dirnameForTnp;
|
187
182
|
/* */
|
188
183
|
/* */
|
189
|
-
const firedevProjectsRelative = `../
|
184
|
+
const firedevProjectsRelative = `../morphi/projects`;
|
190
185
|
/* */
|
191
186
|
/* */
|
192
187
|
/* */
|
@@ -281,75 +276,48 @@ const moduleNameIsomorphicLib = [
|
|
281
276
|
folder.browser,
|
282
277
|
];
|
283
278
|
const argsReplacementsBuild = {
|
284
|
-
// SHORTCUTS
|
285
279
|
'ba': 'build:app',
|
286
280
|
'baw': 'build:app:watch',
|
287
281
|
'bw': 'build:watch',
|
288
|
-
'bap': 'build:app:prod',
|
289
|
-
'bapw': 'build:app:prod:watch',
|
290
|
-
// (dist)app build for normal development - watch is ng serve
|
291
282
|
'bda': 'build:dist:app',
|
292
|
-
'
|
293
|
-
|
294
|
-
'
|
295
|
-
'
|
296
|
-
|
297
|
-
'
|
298
|
-
|
299
|
-
'bdp': 'build:dist:prod', 'bdpw': 'build:dist:prod:watch',
|
300
|
-
// (bundle)app build for static code (firedev plugins, project final code, etc.)
|
301
|
-
'bba': 'build:bundle:app', 'bbaw': 'build:bundle:app:watch',
|
302
|
-
// (bunle)lib build for static code (firedev plugins, project final code, etc.)
|
303
|
-
'bb': 'build:bundle', 'bbw': 'build:bundle:watch',
|
304
|
-
// (bunle)lib build for static code with ng build (PRODUCTION MINIFIED CODE)
|
305
|
-
'bbp': 'build:bundle:prod', 'bbpw': 'build:bundle:prod:watch',
|
306
|
-
'sb': 'static:build',
|
307
|
-
'sbp': 'static:build:prod',
|
308
|
-
'sbd': 'static:build:dist',
|
309
|
-
'sbl': 'static:build:lib',
|
310
|
-
'sba': 'static:build:app',
|
311
|
-
'cb': 'clean:build'
|
283
|
+
'bdap': 'build:dist:app:prod',
|
284
|
+
'bd': 'build:dist',
|
285
|
+
'bdw': 'build:dist:watch',
|
286
|
+
'bba': 'build:bundle:app',
|
287
|
+
'bbap': 'build:bundle:app:prod',
|
288
|
+
'bb': 'build:bundle',
|
289
|
+
'bbw': 'build:bundle:watch',
|
312
290
|
};
|
313
291
|
const argsReplacementsOther = {
|
314
|
-
// github docs
|
315
292
|
'ghpush': 'githubpush',
|
316
293
|
'ghpull': 'githubpull',
|
317
|
-
// last
|
318
294
|
'l': 'last',
|
319
295
|
'sl': 'show:last',
|
320
296
|
'lb': 'last:build',
|
321
|
-
// install
|
322
297
|
'i': 'install',
|
323
298
|
'si': 'sinstall',
|
324
299
|
'il': 'install:locally',
|
325
300
|
'rc': 'recommit',
|
326
|
-
// release
|
327
301
|
'rp': 'release:prod',
|
328
302
|
'r': 'release',
|
329
303
|
'rmajor': 'release:major',
|
330
304
|
'rminor': 'release:minor',
|
331
305
|
'r:major': 'release:major',
|
332
306
|
'r:minor': 'release:minor',
|
333
|
-
// 'ra': 'release:all',
|
334
307
|
'ar': 'auto:release',
|
335
308
|
're': 'reinstall',
|
336
|
-
// versopm
|
337
309
|
'--version': 'version',
|
338
310
|
'-v': 'version',
|
339
|
-
// open
|
340
311
|
'occ': 'open:core:container',
|
341
312
|
'ocp': 'open:core:project',
|
342
|
-
// test
|
343
313
|
'twd': 'test:watch:debug',
|
344
314
|
'tdw': 'test:watch:debug',
|
345
315
|
'tw': 'test:watch',
|
346
316
|
'td': 'test:debug',
|
347
317
|
't': 'test',
|
348
|
-
// git push
|
349
318
|
'pt': 'push:tag',
|
350
319
|
'p': 'push',
|
351
320
|
'pa': 'pushalll',
|
352
|
-
// other
|
353
321
|
'sj': 'select:java',
|
354
322
|
'scm': 'showcoremodules',
|
355
323
|
'tpu': 'target:proj:update',
|
@@ -406,18 +374,8 @@ const config = {
|
|
406
374
|
debug: {
|
407
375
|
sourceModifier: [],
|
408
376
|
baselineSiteJoin: {
|
409
|
-
DEBUG_PATHES: [
|
410
|
-
|
411
|
-
// '/src/app/+preview-components/preview-components.component.ts',
|
412
|
-
// '/src/controllers.ts',
|
413
|
-
// '/src/app/+preview-components/components/+preview-buildtnpprocess/preview-buildtnpprocess.component.ts'
|
414
|
-
],
|
415
|
-
DEBUG_MERGE_PATHES: [
|
416
|
-
// "src/apps/auth/AuthController.ts",
|
417
|
-
// '/src/app/+preview-components/components/+preview-buildtnpprocess/preview-buildtnpprocess.component.ts'
|
418
|
-
// '/components/formly/base-components/editor/editor-wrapper.component.ts'
|
419
|
-
// '/src/app/+preview-components/components/+preview-buildtnpprocess/preview-buildtnpprocess.component.ts'
|
420
|
-
]
|
377
|
+
DEBUG_PATHES: [],
|
378
|
+
DEBUG_MERGE_PATHES: []
|
421
379
|
}
|
422
380
|
},
|
423
381
|
/* */
|
@@ -614,7 +572,6 @@ const config = {
|
|
614
572
|
],
|
615
573
|
}
|
616
574
|
},
|
617
|
-
// environmentName,
|
618
575
|
localLibs: [
|
619
576
|
'eslint',
|
620
577
|
'mkdirp',
|
@@ -656,16 +613,10 @@ const config = {
|
|
656
613
|
{ name: 'increase-memory-limit' },
|
657
614
|
{ name: 'bower' },
|
658
615
|
{ name: 'fkill', installName: 'fkill-cli' },
|
659
|
-
// { name: 'yo' },
|
660
616
|
{ name: 'mocha' },
|
661
|
-
// { name: 'chai' },
|
662
617
|
{ name: 'ts-node' },
|
663
618
|
{ name: 'vsce' },
|
664
|
-
// { name: 'stmux' },
|
665
619
|
{ name: 'webpack-bundle-analyzer' },
|
666
|
-
// { name: 'ng', installName: '@angular/cli' },
|
667
|
-
// { name: 'ngx-pwa-icons', version: '0.1.2' },
|
668
|
-
// { name: 'real-favicon', installName: 'cli-real-favicon' },
|
669
620
|
{ name: 'babel', installName: 'babel-cli' },
|
670
621
|
{ name: 'javascript-obfuscator', version: '4' },
|
671
622
|
{ name: 'uglifyjs', installName: 'uglify-js' },
|
@@ -702,21 +653,11 @@ const config = {
|
|
702
653
|
]
|
703
654
|
}
|
704
655
|
};
|
705
|
-
|
706
|
-
//
|
707
|
-
|
708
|
-
|
709
|
-
|
710
|
-
// { name: 'check-node-version' },
|
711
|
-
// { name: 'vsce' },
|
712
|
-
// ],
|
713
|
-
// programs: [
|
714
|
-
// // {
|
715
|
-
// // name: 'code',
|
716
|
-
// // website: 'https://code.visualstudio.com/'
|
717
|
-
// // }
|
718
|
-
// ] as { name: string; website: string }[]
|
719
|
-
// };
|
656
|
+
;
|
657
|
+
({}); // @--end-of-file-for-module=tnp-config tmp-src-bundle/lib/config.ts
|
658
|
+
|
659
|
+
;
|
660
|
+
({}); // @--end-of-file-for-module=tnp-config tmp-src-bundle/lib/index.ts
|
720
661
|
|
721
662
|
/**
|
722
663
|
* Generated bundle index. Do not edit.
|
package/client/lib/config.d.ts
CHANGED
package/client/lib/index.d.ts
CHANGED
@@ -1 +1,2 @@
|
|
1
|
-
|
1
|
+
// @ts-nocheck
|
2
|
+
export * from './config';
|
package/client/public-api.d.ts
CHANGED
@@ -1 +1,2 @@
|
|
1
|
-
|
1
|
+
// @ts-nocheck
|
2
|
+
export * from './lib';
|
package/client/tnp-config.d.ts
CHANGED
package/lib/config.d.ts
CHANGED
@@ -107,28 +107,14 @@ export declare const config: {
|
|
107
107
|
ba: string;
|
108
108
|
baw: string;
|
109
109
|
bw: string;
|
110
|
-
bap: string;
|
111
|
-
bapw: string;
|
112
110
|
bda: string;
|
113
|
-
|
114
|
-
badpw: string;
|
115
|
-
badp: string;
|
111
|
+
bdap: string;
|
116
112
|
bd: string;
|
117
113
|
bdw: string;
|
118
|
-
bdp: string;
|
119
|
-
bdpw: string;
|
120
114
|
bba: string;
|
121
|
-
|
115
|
+
bbap: string;
|
122
116
|
bb: string;
|
123
117
|
bbw: string;
|
124
|
-
bbp: string;
|
125
|
-
bbpw: string;
|
126
|
-
sb: string;
|
127
|
-
sbp: string;
|
128
|
-
sbd: string;
|
129
|
-
sbl: string;
|
130
|
-
sba: string;
|
131
|
-
cb: string;
|
132
118
|
};
|
133
119
|
argsGlobalFlags: string[];
|
134
120
|
argsReplacements: {
|
@@ -171,28 +157,14 @@ export declare const config: {
|
|
171
157
|
ba: string;
|
172
158
|
baw: string;
|
173
159
|
bw: string;
|
174
|
-
bap: string;
|
175
|
-
bapw: string;
|
176
160
|
bda: string;
|
177
|
-
|
178
|
-
badpw: string;
|
179
|
-
badp: string;
|
161
|
+
bdap: string;
|
180
162
|
bd: string;
|
181
163
|
bdw: string;
|
182
|
-
bdp: string;
|
183
|
-
bdpw: string;
|
184
164
|
bba: string;
|
185
|
-
|
165
|
+
bbap: string;
|
186
166
|
bb: string;
|
187
167
|
bbw: string;
|
188
|
-
bbp: string;
|
189
|
-
bbpw: string;
|
190
|
-
sb: string;
|
191
|
-
sbp: string;
|
192
|
-
sbd: string;
|
193
|
-
sbl: string;
|
194
|
-
sba: string;
|
195
|
-
cb: string;
|
196
168
|
};
|
197
169
|
coreBuildFrameworkNames: string[];
|
198
170
|
ports: {
|
package/lib/config.js
CHANGED
@@ -123,7 +123,7 @@ var dirnameForTnp;
|
|
123
123
|
//#region @backend
|
124
124
|
dirnameForTnp = (0, tnp_core_1.crossPlatformPath)(tnp_core_1.path.resolve(__dirname, '..'));
|
125
125
|
//#endregion
|
126
|
-
var firedevProjectsRelative = "../
|
126
|
+
var firedevProjectsRelative = "../morphi/projects";
|
127
127
|
//#region @backend
|
128
128
|
if (process.platform === 'win32' && dirnameForTnp.endsWith('dist')) { // TODO QUICK_FIX for windows
|
129
129
|
dirnameForTnp = (0, tnp_core_1.crossPlatformPath)(tnp_core_1.path.dirname(dirnameForTnp));
|
@@ -216,30 +216,38 @@ var argsReplacementsBuild = {
|
|
216
216
|
'ba': 'build:app',
|
217
217
|
'baw': 'build:app:watch',
|
218
218
|
'bw': 'build:watch',
|
219
|
-
|
220
|
-
'
|
219
|
+
// buid dist watch with automatic container/previewProjects popuilation
|
220
|
+
// 'bap': 'build:app:prod',
|
221
|
+
// 'bapw': 'build:app:prod:watch',
|
221
222
|
// (dist)app build for normal development - watch is ng serve
|
222
223
|
'bda': 'build:dist:app',
|
223
|
-
'
|
224
|
+
'bdap': 'build:dist:app:prod',
|
225
|
+
// 'bdaw': 'build:dist:app:watch',
|
224
226
|
// (dist)app build for normal development (PRODUCTION MINIFIED CODE)
|
225
|
-
'badpw': 'build:app:dist:prod:watch',
|
226
|
-
'badp': 'build:app:dist:prod',
|
227
|
+
// 'badpw': 'build:app:dist:prod:watch',
|
228
|
+
// 'badp': 'build:app:dist:prod',
|
227
229
|
// (dist)lib build - watch is ng build
|
228
|
-
'bd': 'build:dist',
|
230
|
+
'bd': 'build:dist',
|
231
|
+
'bdw': 'build:dist:watch',
|
229
232
|
// (dist)lib build - watch is ng build (PRODUCTION MINIFIED CODE)
|
230
|
-
'bdp': 'build:dist:prod',
|
233
|
+
// 'bdp': 'build:dist:prod',
|
234
|
+
// 'bdpw': 'build:dist:prod:watch',
|
231
235
|
// (bundle)app build for static code (firedev plugins, project final code, etc.)
|
232
|
-
'bba': 'build:bundle:app',
|
236
|
+
'bba': 'build:bundle:app',
|
237
|
+
'bbap': 'build:bundle:app:prod',
|
238
|
+
// 'bbaw': 'build:bundle:app:watch',
|
233
239
|
// (bunle)lib build for static code (firedev plugins, project final code, etc.)
|
234
|
-
'bb': 'build:bundle',
|
240
|
+
'bb': 'build:bundle',
|
241
|
+
'bbw': 'build:bundle:watch',
|
235
242
|
// (bunle)lib build for static code with ng build (PRODUCTION MINIFIED CODE)
|
236
|
-
'bbp': 'build:bundle:prod',
|
237
|
-
'
|
238
|
-
'
|
239
|
-
'
|
240
|
-
'
|
241
|
-
'
|
242
|
-
'
|
243
|
+
// 'bbp': 'build:bundle:prod',
|
244
|
+
// 'bbpw': 'build:bundle:prod:watch',
|
245
|
+
// 'sb': 'static:build',
|
246
|
+
// 'sbp': 'static:build:prod',
|
247
|
+
// 'sbd': 'static:build:dist',
|
248
|
+
// 'sbl': 'static:build:lib',
|
249
|
+
// 'sba': 'static:build:app',
|
250
|
+
// 'cb': 'clean:build'
|
243
251
|
};
|
244
252
|
var argsReplacementsOther = {
|
245
253
|
// github docs
|
package/package.json
CHANGED
@@ -1,12 +1,11 @@
|
|
1
1
|
{
|
2
2
|
"dependencies": {
|
3
|
-
"tnp-core": "~13.1.
|
3
|
+
"tnp-core": "~13.1.47"
|
4
4
|
},
|
5
5
|
"devDependencies": {},
|
6
6
|
"license": "MIT",
|
7
7
|
"private": false,
|
8
8
|
"main": "index.js",
|
9
9
|
"name": "tnp-config",
|
10
|
-
"version": "13.1.
|
11
|
-
"lastBuildTagHash": "e38793294790f5397e63449cd293df89c5784458"
|
10
|
+
"version": "13.1.48"
|
12
11
|
}
|