tnp-config 13.0.28 → 13.0.31

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.
@@ -0,0 +1,2 @@
1
+ export * from './config';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi90bXAtbGlicy1mb3ItYnVuZGxlLXdlYnNxbC90bnAtY29uZmlnL3Byb2plY3RzL3RucC1jb25maWcvc3JjL2xpYi9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLFVBQVUsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vY29uZmlnJztcbiJdfQ==
@@ -0,0 +1,2 @@
1
+ export * from './lib';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3RtcC1saWJzLWZvci1idW5kbGUtd2Vic3FsL3RucC1jb25maWcvcHJvamVjdHMvdG5wLWNvbmZpZy9zcmMvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLE9BQU8sQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vbGliJztcbiJdfQ==
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ export * from './public-api';
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidG5wLWNvbmZpZy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3RtcC1saWJzLWZvci1idW5kbGUtd2Vic3FsL3RucC1jb25maWcvcHJvamVjdHMvdG5wLWNvbmZpZy9zcmMvdG5wLWNvbmZpZy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBHZW5lcmF0ZWQgYnVuZGxlIGluZGV4LiBEbyBub3QgZWRpdC5cbiAqL1xuXG5leHBvcnQgKiBmcm9tICcuL3B1YmxpYy1hcGknO1xuIl19
@@ -0,0 +1,653 @@
1
+ export { CoreHelpers as Helpers } from 'tnp-core/websql';
2
+
3
+ /**
4
+ * Dariusz Filipiak
5
+ * @author darekf77@gmail.com
6
+ * Recommended config for all isomorphic libs *
7
+ */
8
+ const GlobalLibTypeName = {
9
+ isomorphicLib: 'isomorphic-lib',
10
+ angularLib: 'angular-lib',
11
+ electronClient: 'electron-client',
12
+ ionicLib: 'ionic-lib',
13
+ angularClient: 'angular-client',
14
+ ionicClient: 'ionic-client',
15
+ workspace: 'workspace',
16
+ container: 'container',
17
+ docker: 'docker',
18
+ unknowNpmProject: 'unknow-npm-project',
19
+ vscodeExt: 'vscode-ext',
20
+ chromeExt: 'chrome-ext',
21
+ singleFileProject: 'single-file-project',
22
+ navi: 'navi',
23
+ scenario: 'scenario'
24
+ };
25
+ const LibTypeArr = [
26
+ GlobalLibTypeName.angularLib,
27
+ GlobalLibTypeName.isomorphicLib,
28
+ GlobalLibTypeName.angularClient,
29
+ GlobalLibTypeName.ionicClient,
30
+ GlobalLibTypeName.electronClient,
31
+ GlobalLibTypeName.workspace,
32
+ GlobalLibTypeName.container,
33
+ GlobalLibTypeName.docker,
34
+ GlobalLibTypeName.unknowNpmProject,
35
+ GlobalLibTypeName.vscodeExt,
36
+ GlobalLibTypeName.chromeExt,
37
+ GlobalLibTypeName.navi,
38
+ GlobalLibTypeName.scenario,
39
+ ];
40
+ const CoreLibCategoryArr = [
41
+ GlobalLibTypeName.angularLib,
42
+ GlobalLibTypeName.isomorphicLib,
43
+ GlobalLibTypeName.angularClient,
44
+ GlobalLibTypeName.electronClient,
45
+ GlobalLibTypeName.ionicClient,
46
+ GlobalLibTypeName.docker,
47
+ 'common'
48
+ ];
49
+ //#endregion
50
+ const allowedEnvironments = ['static', 'dev', 'prod', 'stage', 'online', 'test', 'qa', 'custom'];
51
+ const allowedEnvironmentsObj = {};
52
+ allowedEnvironments.forEach(s => {
53
+ // @ts-ignore
54
+ allowedEnvironmentsObj[s] = s;
55
+ });
56
+ const firedev = 'firedev';
57
+ const morphi = 'morphi';
58
+ /* */
59
+ /* */
60
+ const urlMorphi = 'https://github.com/darekf77/morphi.git';
61
+ const filesNotAllowedToClean = {
62
+ _gitignore: '.gitignore',
63
+ _npmrc: '.npmrc',
64
+ _npmignore: '.npmignore',
65
+ tslint_json: 'tslint.json',
66
+ _editorconfig: '.editorconfig',
67
+ _angularCli_json: '.angular-cli.json',
68
+ _vscode_launch_json: '.vscode/launch.json',
69
+ };
70
+ const file = Object.assign({ _bowerrc: '.bowerrc', bower_json: 'bower.json', controllers_ts: 'controllers.ts', entities_ts: 'entities.ts', angular_json: 'angular.json', autob_actions_js: 'auto-actions.js', local_config_js: 'local-config.js', build_config_js: 'build-config.js', local_config: 'local-config', start_backend_ts: 'start.backend.ts', package_json: 'package.json', result_packages_json: 'result-packages.json', package_json5: 'package.json5', package_json__tnp_json: 'package.json_tnp.json', package_json__tnp_json5: 'package.json_tnp.json5', package_json__devDependencies_json: 'package.json_devDependencies.json', yarn_lock: 'yarn.lock', package_lock_json: 'package-lock.json', tnpEnvironment_json: 'tmp-environment.json', environment: 'environment', environment_js: 'environment.js', tmp_transaction_pid_txt: 'tmp-transaction-pid.txt', manifest_webmanifest: 'manifest.webmanifest', publicApi_ts: 'public_api.ts', publicApi_d_ts: 'public_api.d.ts', publicapi_ts: 'public-api.ts', _babelrc: '.babelrc', index_d_ts: 'index.d.ts', index_ts: 'index.ts', index_js: 'index.js', index_js_map: 'index.js.map', db_json: 'db.json', db_for_tests_json: 'db-for-tests.json', tmpDockerImageId: 'tmp-docker-image-id', tmp_recent_json: 'recent.json', tmpIsomorphicPackagesJson: 'tmp-isomorphic-packages.json', tsconfig_json: 'tsconfig.json', README_MD: 'README.md', server_key: 'server.key', server_cert: 'server.cert', server_chain_cert: 'server-chain.cert', meta_config_md: 'meta-content.md' }, filesNotAllowedToClean);
71
+ const packageJsonSplit = [
72
+ file.package_json__tnp_json,
73
+ file.package_json__tnp_json5,
74
+ file.package_json__devDependencies_json,
75
+ ];
76
+ const tempFolders = {
77
+ bundle: 'bundle',
78
+ vendor: 'vendor',
79
+ docs: 'docs',
80
+ dist: 'dist',
81
+ tmp: 'tmp',
82
+ tmpBundleRelease: 'tmp-bundle-release',
83
+ tempSrc: 'tmp-src',
84
+ tempSrcDist: 'tmp-src-dist',
85
+ previewDistApp: 'dist-app',
86
+ preview: 'preview',
87
+ browser: 'browser',
88
+ websql: 'websql',
89
+ _browser: '.browser',
90
+ module: 'module',
91
+ backup: 'backup',
92
+ node_modules: 'node_modules',
93
+ client: 'client',
94
+ tnp_tests_context: 'tmp-tests-context',
95
+ tmpPackage: 'tmp-package',
96
+ tmpScenarios: 'tmp-scenarios',
97
+ tmpTestsEnvironments: 'tmp-tests-environments',
98
+ testsEnvironments: 'tests-environments',
99
+ };
100
+ const stylesFilesExtension = [
101
+ 'css',
102
+ 'sass',
103
+ 'scss',
104
+ 'less',
105
+ ];
106
+ const folder = Object.assign({ scripts: 'scripts', scenarios: 'scenarios', bower: 'bower', src: 'src', out: 'out', lib: 'lib', 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) {
111
+ return `tmp-src-${d}`;
112
+ }, targetProjects: {
113
+ DEFAULT_PATH_GENERATED: 'tmp-target-projects/generated',
114
+ DEFAULT_PATH_ORIGINS: 'tmp-target-projects/origins',
115
+ } }, tempFolders);
116
+ // @LAST RESOLVE TNP LOCATION !!! for each context and RELEASE TNP-CONFIG
117
+ let dirnameForTnp;
118
+ /* */
119
+ /* */
120
+ const firedevProjectsRelative = `../firedev-projects`;
121
+ /* */
122
+ /* */
123
+ /* */
124
+ /* */
125
+ /* */
126
+ /* */
127
+ /* */
128
+ /* */
129
+ /* */
130
+ /* */
131
+ /* */
132
+ /* */
133
+ /* */
134
+ /* */
135
+ /* */
136
+ /* */
137
+ /* */
138
+ /* */
139
+ /* */
140
+ /* */
141
+ /* */
142
+ /* */
143
+ /* */
144
+ /* */
145
+ /* */
146
+ /* */
147
+ /* */
148
+ /* */
149
+ /* */
150
+ /* */
151
+ /* */
152
+ /* */
153
+ /* */
154
+ /* */
155
+ /* */
156
+ /* */
157
+ /* */
158
+ /* */
159
+ /* */
160
+ /* */
161
+ /* */
162
+ /* */
163
+ /* */
164
+ /* */
165
+ /* */
166
+ /* */
167
+ /* */
168
+ /* */
169
+ /* */
170
+ /* */
171
+ /* */
172
+ /* */
173
+ /* */
174
+ /* */
175
+ /* */
176
+ /* */
177
+ /* */
178
+ /* */
179
+ /* */
180
+ /* */
181
+ /* */
182
+ /* */
183
+ /* */
184
+ /* */
185
+ /* */
186
+ /* */
187
+ /* */
188
+ /* */
189
+ /* */
190
+ /* */
191
+ /* */
192
+ /* */
193
+ /* */
194
+ /* */
195
+ /* */
196
+ /* */
197
+ /* */
198
+ /* */
199
+ /* */
200
+ /* */
201
+ /* */
202
+ /* */
203
+ const moduleNameAngularLib = [
204
+ folder.components,
205
+ folder.module,
206
+ folder.dist,
207
+ folder.browser,
208
+ ];
209
+ const moduleNameIsomorphicLib = [
210
+ folder.src,
211
+ folder.dist,
212
+ folder.browser,
213
+ ];
214
+ const argsReplacementsBuild = {
215
+ // SHORTCUTS
216
+ 'ba': 'build:app',
217
+ 'baw': 'build:app:watch',
218
+ '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
+ 'bda': 'build:dist:app',
223
+ 'bdaw': 'build:dist:app:watch',
224
+ // (dist)app build for normal development (PRODUCTION MINIFIED CODE)
225
+ 'badpw': 'build:app:dist:prod:watch',
226
+ 'badp': 'build:app:dist:prod',
227
+ // (dist)lib build - watch is ng build
228
+ 'bd': 'build:dist', 'bdw': 'build:dist:watch',
229
+ // (dist)lib build - watch is ng build (PRODUCTION MINIFIED CODE)
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'
243
+ };
244
+ const argsReplacementsOther = {
245
+ // github docs
246
+ 'ghpush': 'githubpush',
247
+ 'ghpull': 'githubpull',
248
+ // last
249
+ 'l': 'last',
250
+ 'sl': 'show:last',
251
+ 'lb': 'last:build',
252
+ // install
253
+ 'i': 'install',
254
+ 'si': 'sinstall',
255
+ 'il': 'install:locally',
256
+ 'rc': 'recommit',
257
+ // release
258
+ 'rp': 'release:prod',
259
+ 'r': 'release',
260
+ 'rm': 'release:major',
261
+ 'ra': 'release:all',
262
+ 'ar': 'auto:release',
263
+ // versopm
264
+ '--version': 'version',
265
+ '-v': 'version',
266
+ // open
267
+ 'occ': 'open:core:container',
268
+ 'ocp': 'open:core:project',
269
+ // test
270
+ 'twd': 'test:watch:debug',
271
+ 'tdw': 'test:watch:debug',
272
+ 'tw': 'test:watch',
273
+ 'td': 'test:debug',
274
+ 't': 'test',
275
+ // git push
276
+ 'pt': 'push:tag',
277
+ 'p': 'push',
278
+ 'pa': 'pushalll',
279
+ // other
280
+ 'sj': 'select:java',
281
+ 'scm': 'showcoremodules',
282
+ 'tpu': 'target:proj:update',
283
+ 'ugd': 'update:global:deps',
284
+ 'ud': 'update:deps',
285
+ 'dgl': 'detect:global:libs',
286
+ 'pr': 'print:relatives',
287
+ };
288
+ const areTrustedForPatchUpdate = [
289
+ '@angular',
290
+ '@ngrx',
291
+ 'rxjs',
292
+ 'zone.js',
293
+ 'tslib',
294
+ 'typescript',
295
+ 'webpack'
296
+ ];
297
+ const config = {
298
+ packagesThat: {
299
+ areTrustedForPatchUpdate,
300
+ },
301
+ /* */
302
+ /* */
303
+ /* */
304
+ /* */
305
+ /* */
306
+ /* */
307
+ /* */
308
+ /* */
309
+ /* */
310
+ /* */
311
+ coreProjectVersions: ['v1', 'v2', 'v3'],
312
+ quickFixes: {
313
+ missingLibs: [
314
+ 'react-native-sqlite-storage'
315
+ ]
316
+ },
317
+ packageJsonSplit,
318
+ regexString: {
319
+ pathPartStringRegex: `(\/([a-zA-Z0-9]|\\-|\\_|\\+|\\.)*)`
320
+ },
321
+ placeholders: {
322
+ forProjectsInEnvironmentFile: '//<PLACEHOLDER_FOR_PROJECTS>'
323
+ },
324
+ array: {
325
+ isomorphicPackages: 'isomorphicPackages'
326
+ },
327
+ defaultFrameworkVersion: 'v3',
328
+ CONST: {
329
+ UNIT_TEST_TIMEOUT: 30000,
330
+ INTEGRATION_TEST: 30000,
331
+ BACKEND_HTTP_REQUEST_TIMEOUT: 3000,
332
+ },
333
+ debug: {
334
+ sourceModifier: [],
335
+ baselineSiteJoin: {
336
+ DEBUG_PATHES: [
337
+ // "src/apps/auth/AuthController.ts",
338
+ // '/src/app/+preview-components/preview-components.component.ts',
339
+ // '/src/controllers.ts',
340
+ // '/src/app/+preview-components/components/+preview-buildtnpprocess/preview-buildtnpprocess.component.ts'
341
+ ],
342
+ DEBUG_MERGE_PATHES: [
343
+ // "src/apps/auth/AuthController.ts",
344
+ // '/src/app/+preview-components/components/+preview-buildtnpprocess/preview-buildtnpprocess.component.ts'
345
+ // '/components/formly/base-components/editor/editor-wrapper.component.ts'
346
+ // '/src/app/+preview-components/components/+preview-buildtnpprocess/preview-buildtnpprocess.component.ts'
347
+ ]
348
+ }
349
+ },
350
+ /* */
351
+ /* */
352
+ frameworkNames: {
353
+ tnp: 'tnp',
354
+ firedev: 'firedev'
355
+ },
356
+ startPort: 6001,
357
+ frameworks: ['bootstrap', 'ionic', 'material'],
358
+ /* */
359
+ /* */
360
+ /* */
361
+ /* */
362
+ /* */
363
+ /* */
364
+ /* */
365
+ /* */
366
+ /* */
367
+ /* */
368
+ /* */
369
+ /* */
370
+ /* */
371
+ /* */
372
+ /* */
373
+ /* */
374
+ /* */
375
+ /* */
376
+ /* */
377
+ /* */
378
+ /* */
379
+ /* */
380
+ /* */
381
+ /* */
382
+ /* */
383
+ /* */
384
+ /* */
385
+ /* */
386
+ /* */
387
+ /* */
388
+ /* */
389
+ /* */
390
+ /* */
391
+ /* */
392
+ /* */
393
+ /* */
394
+ /* */
395
+ /* */
396
+ /* */
397
+ /* */
398
+ /* */
399
+ /* */
400
+ /* */
401
+ /* */
402
+ /* */
403
+ /* */
404
+ /* */
405
+ /* */
406
+ /* */
407
+ /* */
408
+ /* */
409
+ /* */
410
+ /* */
411
+ /* */
412
+ /* */
413
+ /* */
414
+ /* */
415
+ /* */
416
+ /* */
417
+ /* */
418
+ /* */
419
+ /* */
420
+ /* */
421
+ /* */
422
+ /* */
423
+ /* */
424
+ /* */
425
+ /* */
426
+ /* */
427
+ /* */
428
+ /* */
429
+ /* */
430
+ /* */
431
+ /* */
432
+ /* */
433
+ /* */
434
+ /* */
435
+ /* */
436
+ /* */
437
+ /* */
438
+ /* */
439
+ /* */
440
+ /* */
441
+ /* */
442
+ /* */
443
+ /* */
444
+ /* */
445
+ /* */
446
+ /* */
447
+ /* */
448
+ /* */
449
+ /* */
450
+ /* */
451
+ /* */
452
+ /* */
453
+ /* */
454
+ /* */
455
+ /* */
456
+ allowedEnvironments,
457
+ folder,
458
+ tempFolders,
459
+ // @ts-ignore
460
+ filesNotAllowedToClean: Object.keys(filesNotAllowedToClean).map(key => filesNotAllowedToClean[key]),
461
+ file,
462
+ default: {
463
+ cloud: {
464
+ environment: {
465
+ name: 'online'
466
+ }
467
+ }
468
+ },
469
+ SUBERIZED_PREFIX: `---stuberized`,
470
+ names: {
471
+ env: allowedEnvironmentsObj,
472
+ baseline: 'baseline',
473
+ defaultServer: 'default server',
474
+ },
475
+ reservedArgumentsNamesUglify: [
476
+ 'reservedExpOne',
477
+ 'reservedExpSec'
478
+ ],
479
+ extensions: {
480
+ /**
481
+ * Modify source: import,export, requires
482
+ */
483
+ get modificableByReplaceFn() {
484
+ return [
485
+ 'ts',
486
+ 'js',
487
+ ...stylesFilesExtension,
488
+ ].map(f => `.${f}`);
489
+ },
490
+ },
491
+ notFiredevProjects: [
492
+ 'unknow', 'unknow-npm-project', 'scenario', 'navi'
493
+ ],
494
+ /**
495
+ * Build allowed types
496
+ */
497
+ allowedTypes: {
498
+ /**
499
+ * Projects for build:app:watch command
500
+ */
501
+ app: [
502
+ GlobalLibTypeName.angularClient,
503
+ GlobalLibTypeName.angularLib,
504
+ GlobalLibTypeName.isomorphicLib,
505
+ GlobalLibTypeName.ionicClient,
506
+ GlobalLibTypeName.docker,
507
+ GlobalLibTypeName.container,
508
+ GlobalLibTypeName.vscodeExt,
509
+ ],
510
+ /**
511
+ * Projects for build:(dist|bundle):(watch) command
512
+ */
513
+ libs: [
514
+ GlobalLibTypeName.angularLib,
515
+ GlobalLibTypeName.isomorphicLib,
516
+ GlobalLibTypeName.workspace,
517
+ GlobalLibTypeName.container,
518
+ GlobalLibTypeName.docker,
519
+ GlobalLibTypeName.vscodeExt,
520
+ ]
521
+ },
522
+ moduleNameAngularLib,
523
+ moduleNameIsomorphicLib,
524
+ filesExtensions: {
525
+ filetemplate: 'filetemplate',
526
+ styles: stylesFilesExtension,
527
+ },
528
+ projectTypes: {
529
+ forNpmLibs: [
530
+ GlobalLibTypeName.angularLib,
531
+ GlobalLibTypeName.isomorphicLib,
532
+ ],
533
+ with: {
534
+ angularAsCore: [
535
+ GlobalLibTypeName.angularClient,
536
+ GlobalLibTypeName.angularLib,
537
+ GlobalLibTypeName.ionicClient,
538
+ ],
539
+ componetsAsSrc: [
540
+ GlobalLibTypeName.angularLib,
541
+ ],
542
+ }
543
+ },
544
+ // environmentName,
545
+ localLibs: [
546
+ 'eslint',
547
+ 'mkdirp',
548
+ 'gulp',
549
+ 'npm-run',
550
+ 'rimraf',
551
+ 'nodemon',
552
+ 'release-it',
553
+ 'tsc',
554
+ 'watch',
555
+ 'http-server',
556
+ 'ts-node',
557
+ 'sort-package-json',
558
+ 'concurrently',
559
+ 'sloc',
560
+ 'morphi'
561
+ ],
562
+ helpAlias: [
563
+ '-h',
564
+ '--help',
565
+ '-help',
566
+ 'help'
567
+ ],
568
+ required: {
569
+ npm: [
570
+ { name: '@angular/cli', version: '13' },
571
+ { name: 'extract-zip', version: '1.6.7' },
572
+ { name: 'watch', version: '1.0.2' },
573
+ { name: 'cpr' },
574
+ { name: 'check-node-version' },
575
+ { name: 'npm-run', version: '4.1.2' },
576
+ { name: 'rimraf' },
577
+ { name: 'mkdirp' },
578
+ { name: 'renamer', version: '2.0.1' },
579
+ { name: 'nodemon' },
580
+ { name: 'madge' },
581
+ { name: 'yarn' },
582
+ { name: 'http-server' },
583
+ { name: 'increase-memory-limit' },
584
+ { name: 'bower' },
585
+ { name: 'fkill', installName: 'fkill-cli' },
586
+ // { name: 'yo' },
587
+ { name: 'mocha' },
588
+ // { name: 'chai' },
589
+ { name: 'ts-node' },
590
+ { name: 'vsce' },
591
+ // { name: 'stmux' },
592
+ { name: 'webpack-bundle-analyzer' },
593
+ // { name: 'ng', installName: '@angular/cli' },
594
+ // { name: 'ngx-pwa-icons', version: '0.1.2' },
595
+ // { name: 'real-favicon', installName: 'cli-real-favicon' },
596
+ { name: 'babel', installName: 'babel-cli' },
597
+ { name: 'javascript-obfuscator', version: '4' },
598
+ { name: 'uglifyjs', installName: 'uglify-js' },
599
+ ],
600
+ niceTools: [
601
+ { name: 'speed-test' },
602
+ { name: 'npm-name' },
603
+ { name: 'vantage', platform: 'linux' },
604
+ { name: 'clinic', platform: 'linux' },
605
+ { name: 'vtop', platform: 'linux' },
606
+ { name: 'public-ip' },
607
+ { name: 'empty-trash' },
608
+ { name: 'is-up' },
609
+ { name: 'is-online' },
610
+ { name: 'ttystudio' },
611
+ { name: 'bcat' },
612
+ { name: 'wifi-password', installName: 'wifi-password-cli' },
613
+ { name: 'wallpaper', installName: 'wallpaper-cli' },
614
+ { name: 'brightness', installName: 'brightness-cli' },
615
+ { name: 'subdownloader' },
616
+ { name: 'rtail' },
617
+ { name: 'iponmap' },
618
+ { name: 'jsome' },
619
+ { name: 'drawille', isNotCli: true },
620
+ { name: 'columnify', isNotCli: true },
621
+ { name: 'multispinner', isNotCli: true },
622
+ { name: 'cfonts' }, // draw super nice fonts in console
623
+ ],
624
+ programs: [,
625
+ {
626
+ name: 'code',
627
+ website: 'https://code.visualstudio.com/'
628
+ }
629
+ ]
630
+ }
631
+ };
632
+ // export const GlobalIsomorphicDependencies: ConfigModels.GlobalDependencies = {
633
+ // npm: [
634
+ // { name: 'rimraf' },
635
+ // { name: 'npm-run', version: '4.1.2' },
636
+ // { name: 'cpr' },
637
+ // { name: 'check-node-version' },
638
+ // { name: 'vsce' },
639
+ // ],
640
+ // programs: [
641
+ // // {
642
+ // // name: 'code',
643
+ // // website: 'https://code.visualstudio.com/'
644
+ // // }
645
+ // ] as { name: string; website: string }[]
646
+ // };
647
+
648
+ /**
649
+ * Generated bundle index. Do not edit.
650
+ */
651
+
652
+ export { CoreLibCategoryArr, GlobalLibTypeName, LibTypeArr, config };
653
+ //# sourceMappingURL=tnp-config.mjs.map