@eui/tools 6.2.33 → 6.2.35
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/.version.properties +1 -1
- package/CHANGELOG.md +19 -0
- package/package.json +1 -1
- package/scripts/csdr/cli/constants.js +43 -0
- package/scripts/csdr/cli/package-build-backend.js +70 -0
- package/scripts/csdr/cli/package-build-frontend.js +300 -0
- package/scripts/csdr/cli/package-prompt.js +123 -0
- package/scripts/csdr/cli/package.js +21 -438
- package/scripts/csdr/cli/skeletons/package/frontend-remote-eui15/src/app/eui-components.ts +3 -3
- package/scripts/csdr/cli/skeletons/virtual-remote/15.x/angular-config.json +8 -0
- package/scripts/csdr/cli/skeletons/virtual-remote/15.x/dependencies.json +20 -0
- package/scripts/csdr/config/config-utils.js +1 -0
- package/scripts/csdr/config/global.js +0 -170
- package/scripts/csdr/config/packages.js +3 -3
- package/scripts/csdr/config/register.js +166 -0
- package/scripts/csdr/init/remotes.js +4 -2
- package/scripts/index.js +5 -0
- package/scripts/utils/build/package/element.js +7 -4
- package/scripts/utils/pre-build/injection/routes-replacement.js +22 -2
- package/scripts/csdr/cli/skeletons/package/frontend/assets/i18n/en.json +0 -3
- package/scripts/csdr/cli/skeletons/package/frontend/assets/i18n/fr.json +0 -3
- package/scripts/csdr/cli/skeletons/package/frontend/gitignore_TO_REPLACE +0 -46
- package/scripts/csdr/cli/skeletons/package/frontend/karma.conf.js +0 -7
- package/scripts/csdr/cli/skeletons/package/frontend/ng-package.json +0 -7
- package/scripts/csdr/cli/skeletons/package/frontend/package.json +0 -4
- package/scripts/csdr/cli/skeletons/package/frontend/src/index.ts +0 -7
- package/scripts/csdr/cli/skeletons/package/frontend/src/lib/components/cmp1/cmp1.component.html +0 -1
- package/scripts/csdr/cli/skeletons/package/frontend/src/lib/components/cmp1/cmp1.component.spec.ts.TO_REPLACE +0 -25
- package/scripts/csdr/cli/skeletons/package/frontend/src/lib/components/cmp1/cmp1.component.ts +0 -14
- package/scripts/csdr/cli/skeletons/package/frontend/src/lib/core/module.service.spec.ts.TO_REPLACE +0 -12
- package/scripts/csdr/cli/skeletons/package/frontend/src/lib/core/module.service.ts +0 -8
- package/scripts/csdr/cli/skeletons/package/frontend/src/lib/module.module.ts +0 -14
- package/scripts/csdr/cli/skeletons/package/frontend/src/test.ts.TO_REPLACE +0 -22
- package/scripts/csdr/cli/skeletons/package/frontend/tsconfig.lib.json +0 -32
- package/scripts/csdr/cli/skeletons/package/frontend/tsconfig.spec.json +0 -17
- package/scripts/csdr/cli/skeletons/package/frontend/tslint.json +0 -17
- package/scripts/csdr/cli/skeletons/package/frontend-eui14/dependencies-composite.json +0 -3
- package/scripts/csdr/cli/skeletons/package/frontend-remote/angular.json +0 -76
- package/scripts/csdr/cli/skeletons/package/frontend-remote/browserslist +0 -10
- package/scripts/csdr/cli/skeletons/package/frontend-remote/dependencies-base.json +0 -2
- package/scripts/csdr/cli/skeletons/package/frontend-remote/dependencies-composite.json +0 -7
- package/scripts/csdr/cli/skeletons/package/frontend-remote/gitignore_TO_REPLACE +0 -64
- package/scripts/csdr/cli/skeletons/package/frontend-remote/karma.conf.js +0 -7
- package/scripts/csdr/cli/skeletons/package/frontend-remote/package.json_TO_REPLACE +0 -8
- package/scripts/csdr/cli/skeletons/package/frontend-remote/src/app/dummy.scss +0 -3
- package/scripts/csdr/cli/skeletons/package/frontend-remote/src/app/dummy.spec.ts +0 -6
- package/scripts/csdr/cli/skeletons/package/frontend-remote/src/app/module.component.ts +0 -84
- package/scripts/csdr/cli/skeletons/package/frontend-remote/src/app/module.ts +0 -167
- package/scripts/csdr/cli/skeletons/package/frontend-remote/src/app/reducers/custom-route-serializer.ts +0 -28
- package/scripts/csdr/cli/skeletons/package/frontend-remote/src/app/reducers/index.ts +0 -42
- package/scripts/csdr/cli/skeletons/package/frontend-remote/src/app/routing.module.ts +0 -54
- package/scripts/csdr/cli/skeletons/package/frontend-remote/src/assets/.gitkeep +0 -0
- package/scripts/csdr/cli/skeletons/package/frontend-remote/src/assets/i18n-compiled/en.json +0 -1
- package/scripts/csdr/cli/skeletons/package/frontend-remote/src/assets/i18n-compiled/fr.json +0 -1
- package/scripts/csdr/cli/skeletons/package/frontend-remote/src/config/global.ts +0 -8
- package/scripts/csdr/cli/skeletons/package/frontend-remote/src/config/index.ts +0 -7
- package/scripts/csdr/cli/skeletons/package/frontend-remote/src/config/modules.ts +0 -12
- package/scripts/csdr/cli/skeletons/package/frontend-remote/src/environments/environment.prod.ts +0 -3
- package/scripts/csdr/cli/skeletons/package/frontend-remote/src/environments/environment.ts +0 -15
- package/scripts/csdr/cli/skeletons/package/frontend-remote/src/favicon.ico +0 -0
- package/scripts/csdr/cli/skeletons/package/frontend-remote/src/index.html +0 -10
- package/scripts/csdr/cli/skeletons/package/frontend-remote/src/main.ts +0 -12
- package/scripts/csdr/cli/skeletons/package/frontend-remote/src/polyfills.ts +0 -86
- package/scripts/csdr/cli/skeletons/package/frontend-remote/src/test.ts.TO_REPLACE +0 -20
- package/scripts/csdr/cli/skeletons/package/frontend-remote/tsconfig.app.json +0 -20
- package/scripts/csdr/cli/skeletons/package/frontend-remote/tsconfig.spec.json +0 -18
- package/scripts/csdr/cli/skeletons/package/frontend-remote/tslint-remote.json +0 -7
- package/scripts/csdr/cli/skeletons/package/frontend-remote/tslint.json +0 -17
- package/scripts/csdr/cli/skeletons/package/frontend-remote-eui14/angular.json +0 -84
- package/scripts/csdr/cli/skeletons/package/frontend-remote-eui14/dependencies-composite.json +0 -8
- package/scripts/csdr/cli/skeletons/package/frontend-remote-eui14/src/app/eui-components.ts +0 -9
|
@@ -61,36 +61,11 @@ module.exports.getCsdrConfig = (full = true) => {
|
|
|
61
61
|
}
|
|
62
62
|
|
|
63
63
|
|
|
64
|
-
// const migrateConfig = (euircBaseFile) => {
|
|
65
|
-
// tools.logInfo('Upgrading local euirc config to new version');
|
|
66
|
-
|
|
67
|
-
// const actualConfig = require(euircBaseFile);
|
|
68
|
-
// const updatedConfig = {};
|
|
69
|
-
|
|
70
|
-
// updatedConfig.projects = Object.keys(actualConfig.projects);
|
|
71
|
-
// updatedConfig.packages = Object.keys(actualConfig.packages)
|
|
72
|
-
// .map(p => actualConfig.packages[p])
|
|
73
|
-
// .filter((p) => {
|
|
74
|
-
// return !p.child;
|
|
75
|
-
// })
|
|
76
|
-
// .map(p => p.name);
|
|
77
|
-
|
|
78
|
-
// tools.writeJsonFileSync(path.join(process.cwd(), '.csdr', '.euirc.json'), updatedConfig);
|
|
79
|
-
|
|
80
|
-
// return updatedConfig;
|
|
81
|
-
// }
|
|
82
|
-
|
|
83
|
-
|
|
84
64
|
const getGeneratedConfig = (euircBaseFile) => {
|
|
85
65
|
// fetching local euirc.json config
|
|
86
66
|
delete require.cache[euircBaseFile];
|
|
87
67
|
let configContent = require(euircBaseFile);
|
|
88
68
|
|
|
89
|
-
// check if actual generated config file contains new version format
|
|
90
|
-
// if (!Array.isArray(configContent.projects)) {
|
|
91
|
-
// configContent = migrateConfig(euircBaseFile);
|
|
92
|
-
// }
|
|
93
|
-
|
|
94
69
|
// fetching global csdr config
|
|
95
70
|
const globalConfig = this.getCsdrConfig();
|
|
96
71
|
|
|
@@ -387,148 +362,3 @@ module.exports.getNotificationMailAddress = (channelName) => {
|
|
|
387
362
|
return channelPrefix + config.notification.mail.addressSuffix;
|
|
388
363
|
}
|
|
389
364
|
|
|
390
|
-
// Register only applies to non-csdr environment - for eUI default multi-modules app
|
|
391
|
-
|
|
392
|
-
module.exports.registerEuiModule = (pkg) => {
|
|
393
|
-
if (!tools.isDirExists(path.join(process.cwd(), '.csdr'))) {
|
|
394
|
-
const file = path.join(process.cwd(), '.euirc.json');
|
|
395
|
-
const content = require(file);
|
|
396
|
-
content['packages'][pkg.name] = pkg;
|
|
397
|
-
tools.writeJsonFileSync(file, content);
|
|
398
|
-
}
|
|
399
|
-
}
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
// Register new project created
|
|
405
|
-
|
|
406
|
-
module.exports.registerCsdrProject = (name, isFullSkeleton) => {
|
|
407
|
-
|
|
408
|
-
const csdrConfigProject = {
|
|
409
|
-
"name": "@app.name@",
|
|
410
|
-
"folder": "apps/@app.name@",
|
|
411
|
-
"repository": "app-@app.name@.git",
|
|
412
|
-
"build": {
|
|
413
|
-
"skipLint": true,
|
|
414
|
-
"skipTest": true,
|
|
415
|
-
"maxSpaceSize": true
|
|
416
|
-
},
|
|
417
|
-
"packages": [
|
|
418
|
-
],
|
|
419
|
-
"csdrSkeleton": true
|
|
420
|
-
};
|
|
421
|
-
|
|
422
|
-
const csdrConfigProjectFullSkeleton = {
|
|
423
|
-
"name": "@app.name@",
|
|
424
|
-
"folder": "apps/@app.name@",
|
|
425
|
-
"repository": "app-@app.name@.git",
|
|
426
|
-
"build": {
|
|
427
|
-
"skipLint": true,
|
|
428
|
-
"skipTest": true,
|
|
429
|
-
"maxSpaceSize": true
|
|
430
|
-
},
|
|
431
|
-
"packages": [
|
|
432
|
-
],
|
|
433
|
-
"csdrFullSkeleton": true
|
|
434
|
-
};
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
// inserting new project into root config
|
|
438
|
-
let projectDef;
|
|
439
|
-
if (isFullSkeleton) {
|
|
440
|
-
projectDef = JSON.stringify(csdrConfigProjectFullSkeleton);
|
|
441
|
-
} else {
|
|
442
|
-
projectDef = JSON.stringify(csdrConfigProject);
|
|
443
|
-
}
|
|
444
|
-
const replaceModule = tools.replaceAll(projectDef, '@app.name@', name);
|
|
445
|
-
|
|
446
|
-
let file = path.join(process.cwd(), '.csdr', '.euirc-csdr-apps.json');
|
|
447
|
-
let jsonFile = require(file);
|
|
448
|
-
jsonFile[name] = JSON.parse(replaceModule);
|
|
449
|
-
tools.writeJsonFileSync(file, jsonFile);
|
|
450
|
-
|
|
451
|
-
// inserting project entry into local config
|
|
452
|
-
this.updateConfig(name, null);
|
|
453
|
-
}
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
// Register newly created package
|
|
459
|
-
|
|
460
|
-
module.exports.registerCsdrPackage = (pkg, isRemote, rootPkgScope, rootPkgName) => {
|
|
461
|
-
|
|
462
|
-
const csdrConfigPackage = {
|
|
463
|
-
"name": "@module.full.name@",
|
|
464
|
-
"npmPkg": "@module.npmPkg.name@",
|
|
465
|
-
"deps": [
|
|
466
|
-
],
|
|
467
|
-
"repository": "@module.repo.name@",
|
|
468
|
-
"teams": [
|
|
469
|
-
"all-frontend"
|
|
470
|
-
]
|
|
471
|
-
};
|
|
472
|
-
|
|
473
|
-
const csdrConfigRemotePackage = {
|
|
474
|
-
"name": "@module.full.name@",
|
|
475
|
-
"npmPkg": "@module.npmPkg.name@",
|
|
476
|
-
"deps": [
|
|
477
|
-
],
|
|
478
|
-
"repository": "@module.repo.name@",
|
|
479
|
-
"element": true,
|
|
480
|
-
"remote": true,
|
|
481
|
-
"hostAppName": "my-workplace",
|
|
482
|
-
"teams": [
|
|
483
|
-
"all-frontend"
|
|
484
|
-
],
|
|
485
|
-
"build": {
|
|
486
|
-
"compiledTranslations": true,
|
|
487
|
-
"translationScopes": "eui,csdr,cc,mywp",
|
|
488
|
-
"skipLint": true,
|
|
489
|
-
"skipTest": true,
|
|
490
|
-
"sonarScanner": false,
|
|
491
|
-
"envTargetActive": true
|
|
492
|
-
},
|
|
493
|
-
"release": {
|
|
494
|
-
"team": "cc-ui-rm"
|
|
495
|
-
},
|
|
496
|
-
"slack": {
|
|
497
|
-
"channel": "csdr-timeline-mwp-remotes-cc"
|
|
498
|
-
},
|
|
499
|
-
"externalSources": {
|
|
500
|
-
"npmPkg": "@module.rootPkg.scope@/@module.rootPkg.name@",
|
|
501
|
-
"folder": "assets/remote-sources"
|
|
502
|
-
}
|
|
503
|
-
}
|
|
504
|
-
|
|
505
|
-
// inserting package in root config
|
|
506
|
-
let packageDef;
|
|
507
|
-
|
|
508
|
-
if (isRemote) {
|
|
509
|
-
packageDef = JSON.stringify(csdrConfigRemotePackage);
|
|
510
|
-
|
|
511
|
-
} else {
|
|
512
|
-
packageDef = JSON.stringify(csdrConfigPackage);
|
|
513
|
-
}
|
|
514
|
-
|
|
515
|
-
let replaceModule = tools.replaceAll(packageDef, '@module.full.name@', pkg.name);
|
|
516
|
-
replaceModule = tools.replaceAll(replaceModule, '@module.repo.name@', pkg.repoName);
|
|
517
|
-
replaceModule = tools.replaceAll(replaceModule, '@module.npmPkg.name@', pkg.npmPkgName);
|
|
518
|
-
replaceModule = tools.replaceAll(replaceModule, '@module.rootPkg.scope@', rootPkgScope);
|
|
519
|
-
replaceModule = tools.replaceAll(replaceModule, '@module.rootPkg.name@', rootPkgName);
|
|
520
|
-
|
|
521
|
-
let file = path.join(process.cwd(), '.csdr', '.euirc-csdr-packages.json');
|
|
522
|
-
let jsonFile = require(file);
|
|
523
|
-
jsonFile[pkg.name] = JSON.parse(replaceModule);
|
|
524
|
-
|
|
525
|
-
tools.writeJsonFileSync(file, jsonFile);
|
|
526
|
-
|
|
527
|
-
// inserting project entry into local config
|
|
528
|
-
const packages = [];
|
|
529
|
-
packages.push(pkg.name);
|
|
530
|
-
this.updateConfig(null, packages);
|
|
531
|
-
}
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
@@ -32,7 +32,7 @@ module.exports.getCsdrPackagesFull = (flattenChildren = true) => {
|
|
|
32
32
|
try {
|
|
33
33
|
outputPackages.push(this.getPackage(p, true));
|
|
34
34
|
} catch (e) {
|
|
35
|
-
tools.
|
|
35
|
+
tools.logInfo(`Package: ${p} is in local config but not found in global... should be cleaned up`);
|
|
36
36
|
console.log(e);
|
|
37
37
|
}
|
|
38
38
|
})
|
|
@@ -48,7 +48,7 @@ const getPackages = module.exports.getPackages = () => {
|
|
|
48
48
|
try {
|
|
49
49
|
outputPackages.push(this.getPackage(p));
|
|
50
50
|
} catch (e) {
|
|
51
|
-
tools.
|
|
51
|
+
tools.logInfo(`Package: ${p} is in local config but not found in global... should be cleaned up`);
|
|
52
52
|
console.log(e);
|
|
53
53
|
}
|
|
54
54
|
})
|
|
@@ -111,7 +111,7 @@ module.exports.getPackage = (pkgName, fromCsdrConfig, optional) => {
|
|
|
111
111
|
|
|
112
112
|
|
|
113
113
|
if (!pkg && !optional) {
|
|
114
|
-
tools.
|
|
114
|
+
tools.logInfo(`Package ${pkgName} cannot be found in your local installation, mount it with:`);
|
|
115
115
|
tools.logInfo(`npm run init -- --pkg ${pkgName} --pkgOnly`);
|
|
116
116
|
throw 'PACKAGE_NOT_FOUND';
|
|
117
117
|
}
|
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
// GLOBAL
|
|
4
|
+
const path = require('path');
|
|
5
|
+
|
|
6
|
+
// LOCAL
|
|
7
|
+
const tools = require('../../utils/tools');
|
|
8
|
+
|
|
9
|
+
// INNER MODULES
|
|
10
|
+
const innerGlobal = require('./global');
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
// Register new project created
|
|
14
|
+
|
|
15
|
+
module.exports.registerCsdrProject = (name, isFullSkeleton) => {
|
|
16
|
+
|
|
17
|
+
const csdrConfigProject = {
|
|
18
|
+
"name": "@app.name@",
|
|
19
|
+
"folder": "apps/@app.name@",
|
|
20
|
+
"repository": "app-@app.name@.git",
|
|
21
|
+
"build": {
|
|
22
|
+
"skipLint": true,
|
|
23
|
+
"skipTest": true,
|
|
24
|
+
"maxSpaceSize": true
|
|
25
|
+
},
|
|
26
|
+
"packages": [
|
|
27
|
+
],
|
|
28
|
+
"csdrSkeleton": true
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
const csdrConfigProjectFullSkeleton = {
|
|
32
|
+
"name": "@app.name@",
|
|
33
|
+
"folder": "apps/@app.name@",
|
|
34
|
+
"repository": "app-@app.name@.git",
|
|
35
|
+
"build": {
|
|
36
|
+
"skipLint": true,
|
|
37
|
+
"skipTest": true,
|
|
38
|
+
"maxSpaceSize": true
|
|
39
|
+
},
|
|
40
|
+
"packages": [
|
|
41
|
+
],
|
|
42
|
+
"csdrFullSkeleton": true
|
|
43
|
+
};
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
// inserting new project into root config
|
|
47
|
+
let projectDef;
|
|
48
|
+
if (isFullSkeleton) {
|
|
49
|
+
projectDef = JSON.stringify(csdrConfigProjectFullSkeleton);
|
|
50
|
+
} else {
|
|
51
|
+
projectDef = JSON.stringify(csdrConfigProject);
|
|
52
|
+
}
|
|
53
|
+
const replaceModule = tools.replaceAll(projectDef, '@app.name@', name);
|
|
54
|
+
|
|
55
|
+
let file = path.join(process.cwd(), '.csdr', '.euirc-csdr-apps.json');
|
|
56
|
+
let jsonFile = require(file);
|
|
57
|
+
jsonFile[name] = JSON.parse(replaceModule);
|
|
58
|
+
tools.writeJsonFileSync(file, jsonFile);
|
|
59
|
+
|
|
60
|
+
// inserting project entry into local config
|
|
61
|
+
innerGlobal.updateConfig(name, null);
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
// Register newly created package
|
|
68
|
+
|
|
69
|
+
module.exports.registerCsdrPackage = (pkg, isRemote, rootPkgScope, rootPkgName, euiVersionNumber) => {
|
|
70
|
+
|
|
71
|
+
const csdrConfigPackage = {
|
|
72
|
+
"name": "@module.full.name@",
|
|
73
|
+
"npmPkg": "@module.npmPkg.name@",
|
|
74
|
+
"deps": [
|
|
75
|
+
],
|
|
76
|
+
"repository": "@module.repo.name@",
|
|
77
|
+
"teams": [
|
|
78
|
+
"all-frontend"
|
|
79
|
+
]
|
|
80
|
+
};
|
|
81
|
+
|
|
82
|
+
const csdrConfigRemotePackage = {
|
|
83
|
+
"name": "@module.full.name@",
|
|
84
|
+
"npmPkg": "@module.npmPkg.name@",
|
|
85
|
+
"deps": [
|
|
86
|
+
],
|
|
87
|
+
"repository": "@module.repo.name@",
|
|
88
|
+
"element": true,
|
|
89
|
+
"remote": true,
|
|
90
|
+
"hostAppName": "my-workplace",
|
|
91
|
+
"teams": [
|
|
92
|
+
"all-frontend"
|
|
93
|
+
],
|
|
94
|
+
"build": {
|
|
95
|
+
"compiledTranslations": true,
|
|
96
|
+
"translationScopes": "eui,csdr,cc,mywp",
|
|
97
|
+
"skipLint": true,
|
|
98
|
+
"skipTest": true,
|
|
99
|
+
"sonarScanner": false,
|
|
100
|
+
"envTargetActive": true
|
|
101
|
+
},
|
|
102
|
+
"release": {
|
|
103
|
+
"team": "cc-ui-rm"
|
|
104
|
+
},
|
|
105
|
+
"slack": {
|
|
106
|
+
"channel": "csdr-timeline-mwp-remotes-cc"
|
|
107
|
+
},
|
|
108
|
+
"externalSources": {
|
|
109
|
+
"npmPkg": "@module.rootPkg.scope@/@module.rootPkg.name@",
|
|
110
|
+
"folder": "assets/remote-sources"
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
const csdrConfigRemotePackageV15 = {
|
|
115
|
+
"npmPkg": "@module.npmPkg.name@",
|
|
116
|
+
"euiVersion": "15.x",
|
|
117
|
+
"build": {
|
|
118
|
+
"compiledTranslations": true,
|
|
119
|
+
"translationScopes": "eui,csdr,cc,mywp"
|
|
120
|
+
},
|
|
121
|
+
"release": {
|
|
122
|
+
"team": "cc-ui-rm"
|
|
123
|
+
},
|
|
124
|
+
"slack": {
|
|
125
|
+
"channel": "csdr-timeline-mwp-remotes-cc"
|
|
126
|
+
},
|
|
127
|
+
"externalSources": {
|
|
128
|
+
"npmPkg": "@module.rootPkg.scope@/@module.rootPkg.name@",
|
|
129
|
+
"folder": "assets/remote-sources"
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
// inserting package in root config
|
|
135
|
+
let packageDef;
|
|
136
|
+
|
|
137
|
+
if (isRemote) {
|
|
138
|
+
if (euiVersionNumber >= 15) {
|
|
139
|
+
packageDef = JSON.stringify(csdrConfigRemotePackageV15);
|
|
140
|
+
} else {
|
|
141
|
+
packageDef = JSON.stringify(csdrConfigRemotePackage);
|
|
142
|
+
}
|
|
143
|
+
} else {
|
|
144
|
+
packageDef = JSON.stringify(csdrConfigPackage);
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
let replaceModule = tools.replaceAll(packageDef, '@module.full.name@', pkg.name);
|
|
148
|
+
replaceModule = tools.replaceAll(replaceModule, '@module.repo.name@', pkg.repoName);
|
|
149
|
+
replaceModule = tools.replaceAll(replaceModule, '@module.npmPkg.name@', pkg.npmPkgName);
|
|
150
|
+
replaceModule = tools.replaceAll(replaceModule, '@module.rootPkg.scope@', rootPkgScope);
|
|
151
|
+
replaceModule = tools.replaceAll(replaceModule, '@module.rootPkg.name@', rootPkgName);
|
|
152
|
+
|
|
153
|
+
let file = path.join(process.cwd(), '.csdr', '.euirc-csdr-packages.json');
|
|
154
|
+
if (isRemote && euiVersionNumber >= 15) {
|
|
155
|
+
file = path.join(process.cwd(), '.csdr', '.euirc-csdr-remotes.json');
|
|
156
|
+
}
|
|
157
|
+
let jsonFile = require(file);
|
|
158
|
+
jsonFile[pkg.name] = JSON.parse(replaceModule);
|
|
159
|
+
|
|
160
|
+
tools.writeJsonFileSync(file, jsonFile);
|
|
161
|
+
|
|
162
|
+
// inserting project entry into local config
|
|
163
|
+
const packages = [];
|
|
164
|
+
packages.push(pkg.name);
|
|
165
|
+
innerGlobal.updateConfig(null, packages);
|
|
166
|
+
}
|
|
@@ -36,14 +36,16 @@ const cloneRemotesConfig = module.exports.cloneRemotesConfig = () => {
|
|
|
36
36
|
|
|
37
37
|
|
|
38
38
|
|
|
39
|
-
module.exports.generateVirtualRemote = (remoteName) => {
|
|
39
|
+
module.exports.generateVirtualRemote = (remoteName, cloneRemote = true) => {
|
|
40
40
|
tools.logTitle('Generating virtual remote');
|
|
41
41
|
|
|
42
42
|
return Promise.resolve()
|
|
43
43
|
|
|
44
44
|
// clone remotes config if first init
|
|
45
45
|
.then(() => {
|
|
46
|
-
|
|
46
|
+
if (cloneRemote) {
|
|
47
|
+
return cloneRemotesConfig();
|
|
48
|
+
}
|
|
47
49
|
})
|
|
48
50
|
|
|
49
51
|
.then(() => {
|
package/scripts/index.js
CHANGED
|
@@ -81,6 +81,10 @@ module.exports.auditUtils = require('./csdr/audit/audit-utils');
|
|
|
81
81
|
module.exports.cliUtils = require('./csdr/cli/cli-utils');
|
|
82
82
|
module.exports.cliApp = require('./csdr/cli/app');
|
|
83
83
|
module.exports.cliPackage = require('./csdr/cli/package');
|
|
84
|
+
module.exports.cliPackageBackend = require('./csdr/cli/package-build-backend');
|
|
85
|
+
module.exports.cliPackageFrontend = require('./csdr/cli/package-build-frontend');
|
|
86
|
+
module.exports.cliPackagePrompt = require('./csdr/cli/package-prompt');
|
|
87
|
+
module.exports.cliPackageConstants = require('./csdr/cli/constants');
|
|
84
88
|
|
|
85
89
|
// csdr - config
|
|
86
90
|
module.exports.configAngular = require('./csdr/config/angular');
|
|
@@ -89,6 +93,7 @@ module.exports.configGlobal = require('./csdr/config/global');
|
|
|
89
93
|
module.exports.configInit = require('./csdr/config/init');
|
|
90
94
|
module.exports.configPackages = require('./csdr/config/packages');
|
|
91
95
|
module.exports.configProjects = require('./csdr/config/projects');
|
|
96
|
+
module.exports.configRegister = require('./csdr/config/register');
|
|
92
97
|
module.exports.configSync = require('./csdr/config/sync');
|
|
93
98
|
|
|
94
99
|
// csdr -init
|
|
@@ -115,6 +115,11 @@ module.exports.build = (pkg, isMaster) => {
|
|
|
115
115
|
// specific for element
|
|
116
116
|
const versionNumber = remoteEuiVersion.split('.')[0];
|
|
117
117
|
|
|
118
|
+
// checking configuration
|
|
119
|
+
if (!configuration) {
|
|
120
|
+
configuration = 'production';
|
|
121
|
+
}
|
|
122
|
+
|
|
118
123
|
let args;
|
|
119
124
|
|
|
120
125
|
if (versionNumber <= 10) {
|
|
@@ -127,9 +132,7 @@ module.exports.build = (pkg, isMaster) => {
|
|
|
127
132
|
args.push(`--stats-json`);
|
|
128
133
|
}
|
|
129
134
|
|
|
130
|
-
|
|
131
|
-
args.push(`--configuration=${configuration || 'production'}`);
|
|
132
|
-
}
|
|
135
|
+
args.push(`--configuration=${configuration}`);
|
|
133
136
|
|
|
134
137
|
if (baseHref) {
|
|
135
138
|
args.push(`--base-href=${baseHref}`);
|
|
@@ -156,7 +159,7 @@ module.exports.build = (pkg, isMaster) => {
|
|
|
156
159
|
args.push('--source-map');
|
|
157
160
|
}
|
|
158
161
|
|
|
159
|
-
tools.logInfo(`ng build for configuration : ${configuration
|
|
162
|
+
tools.logInfo(`ng build for configuration : ${configuration}`);
|
|
160
163
|
|
|
161
164
|
tools.logInfo(`running Angular BUILD with args: ${args} on`);
|
|
162
165
|
console.log(pkg.paths.root);
|
|
@@ -293,8 +293,28 @@ const replaceRoutes = (project, envTarget, build, routesFileContent, euiVersion)
|
|
|
293
293
|
// merging content of base + env
|
|
294
294
|
tools.logInfo(`Merging ${baseRouteDefsPath} with ${envRouteDefsPath}`);
|
|
295
295
|
|
|
296
|
-
|
|
297
|
-
|
|
296
|
+
let mergedRouteDefs = _.merge(_.keyBy(baseRouteDefsJSON, 'path'), _.keyBy(envRouteDefsJSON, 'path'));
|
|
297
|
+
let finalRouteDefs = _.values(mergedRouteDefs);
|
|
298
|
+
|
|
299
|
+
// checking if overrides needs to be applied specific to env + version
|
|
300
|
+
let euiVersionNumber;
|
|
301
|
+
if (euiVersion === 'DEFAULT') {
|
|
302
|
+
euiVersionNumber = '7'
|
|
303
|
+
} else {
|
|
304
|
+
euiVersionNumber = euiVersion.split('.')[0];
|
|
305
|
+
};
|
|
306
|
+
|
|
307
|
+
const envRouteVersionOverridesPath = path.join(projectAssetsPath, 'route-defs.' + envTargetFinal + '-overrides-v' + euiVersionNumber + '.json');
|
|
308
|
+
|
|
309
|
+
if (!tools.isFileExists(envRouteVersionOverridesPath)) {
|
|
310
|
+
tools.logInfo('Routes file overrides not found for ' + envTargetFinal + ' ' + euiVersionNumber + '...skipping');
|
|
311
|
+
|
|
312
|
+
} else {
|
|
313
|
+
const euiRoutesOVerridesJSON = require(envRouteVersionOverridesPath);
|
|
314
|
+
tools.logInfo(`Merging ${envRouteVersionOverridesPath}`);
|
|
315
|
+
mergedRouteDefs = _.merge(_.keyBy(mergedRouteDefs, 'path'), _.keyBy(euiRoutesOVerridesJSON, 'path'));
|
|
316
|
+
finalRouteDefs = _.values(mergedRouteDefs);
|
|
317
|
+
}
|
|
298
318
|
|
|
299
319
|
// processing routes
|
|
300
320
|
let placeHolderContent = '';
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
# See http://help.github.com/ignore-files/ for more about ignoring files.
|
|
2
|
-
|
|
3
|
-
# compiled output
|
|
4
|
-
**/node_modules
|
|
5
|
-
**/target
|
|
6
|
-
**/build
|
|
7
|
-
**/dist
|
|
8
|
-
**/out-tsc
|
|
9
|
-
**/tmp
|
|
10
|
-
**/test/reports
|
|
11
|
-
|
|
12
|
-
# IDEs and editors
|
|
13
|
-
/.idea
|
|
14
|
-
.project
|
|
15
|
-
.classpath
|
|
16
|
-
.c9/
|
|
17
|
-
*.launch
|
|
18
|
-
.settings/
|
|
19
|
-
*.sublime-workspace
|
|
20
|
-
|
|
21
|
-
# IDE - VSCode
|
|
22
|
-
.vscode/*
|
|
23
|
-
!.vscode/settings.json
|
|
24
|
-
!.vscode/tasks.json
|
|
25
|
-
!.vscode/launch.json
|
|
26
|
-
!.vscode/extensions.json
|
|
27
|
-
|
|
28
|
-
# misc
|
|
29
|
-
/.sass-cache
|
|
30
|
-
/connect.lock
|
|
31
|
-
/coverage
|
|
32
|
-
/libpeerconnection.log
|
|
33
|
-
npm-debug.log
|
|
34
|
-
testem.log
|
|
35
|
-
/typings
|
|
36
|
-
yarn-error.log
|
|
37
|
-
|
|
38
|
-
# e2e
|
|
39
|
-
/e2e/*.js
|
|
40
|
-
/e2e/*.map
|
|
41
|
-
**/src/**/*.js
|
|
42
|
-
**/src/**/*.map
|
|
43
|
-
|
|
44
|
-
# System Files
|
|
45
|
-
.DS_Store
|
|
46
|
-
Thumbs.db
|
package/scripts/csdr/cli/skeletons/package/frontend/src/lib/components/cmp1/cmp1.component.html
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
Hello from <strong>@module.name@-cmp1</strong>
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
2
|
-
|
|
3
|
-
import { Cmp1Component } from './cmp1.component';
|
|
4
|
-
|
|
5
|
-
describe('ModuleComponent', () => {
|
|
6
|
-
let component: Cmp1Component;
|
|
7
|
-
let fixture: ComponentFixture<Cmp1Component>;
|
|
8
|
-
|
|
9
|
-
beforeEach(async(() => {
|
|
10
|
-
TestBed.configureTestingModule({
|
|
11
|
-
declarations: [Cmp1Component],
|
|
12
|
-
})
|
|
13
|
-
.compileComponents();
|
|
14
|
-
}));
|
|
15
|
-
|
|
16
|
-
beforeEach(() => {
|
|
17
|
-
fixture = TestBed.createComponent(Cmp1Component);
|
|
18
|
-
component = fixture.componentInstance;
|
|
19
|
-
fixture.detectChanges();
|
|
20
|
-
});
|
|
21
|
-
|
|
22
|
-
it('should create', () => {
|
|
23
|
-
expect(component).toBeTruthy();
|
|
24
|
-
});
|
|
25
|
-
});
|
package/scripts/csdr/cli/skeletons/package/frontend/src/lib/components/cmp1/cmp1.component.ts
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { Component, OnInit } from '@angular/core';
|
|
2
|
-
|
|
3
|
-
@Component({
|
|
4
|
-
selector: '@module.scope.string@-cmp1-component',
|
|
5
|
-
templateUrl: './cmp1.component.html',
|
|
6
|
-
})
|
|
7
|
-
export class Cmp1Component implements OnInit {
|
|
8
|
-
|
|
9
|
-
constructor() { }
|
|
10
|
-
|
|
11
|
-
ngOnInit() {
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
}
|
package/scripts/csdr/cli/skeletons/package/frontend/src/lib/core/module.service.spec.ts.TO_REPLACE
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { TestBed } from '@angular/core/testing';
|
|
2
|
-
|
|
3
|
-
import { ModuleService } from './module.service';
|
|
4
|
-
|
|
5
|
-
describe('ModuleService', () => {
|
|
6
|
-
beforeEach(() => TestBed.configureTestingModule({}));
|
|
7
|
-
|
|
8
|
-
it('should be created', () => {
|
|
9
|
-
const service: ModuleService = TestBed.get(ModuleService);
|
|
10
|
-
expect(service).toBeTruthy();
|
|
11
|
-
});
|
|
12
|
-
});
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { Cmp1Component } from './components/cmp1/cmp1.component';
|
|
3
|
-
|
|
4
|
-
@NgModule({
|
|
5
|
-
declarations: [
|
|
6
|
-
Cmp1Component,
|
|
7
|
-
],
|
|
8
|
-
imports: [
|
|
9
|
-
],
|
|
10
|
-
exports: [
|
|
11
|
-
Cmp1Component,
|
|
12
|
-
],
|
|
13
|
-
})
|
|
14
|
-
export class ModuleModule { }
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
// This file is required by karma.conf.js and loads recursively all the .spec and framework files
|
|
2
|
-
|
|
3
|
-
import 'core-js/es7/reflect';
|
|
4
|
-
import 'zone.js/dist/zone';
|
|
5
|
-
import 'zone.js/dist/zone-testing';
|
|
6
|
-
import { getTestBed } from '@angular/core/testing';
|
|
7
|
-
import {
|
|
8
|
-
BrowserDynamicTestingModule,
|
|
9
|
-
platformBrowserDynamicTesting
|
|
10
|
-
} from '@angular/platform-browser-dynamic/testing';
|
|
11
|
-
|
|
12
|
-
declare const require: any;
|
|
13
|
-
|
|
14
|
-
// First, initialize the Angular testing environment.
|
|
15
|
-
getTestBed().initTestEnvironment(
|
|
16
|
-
BrowserDynamicTestingModule,
|
|
17
|
-
platformBrowserDynamicTesting()
|
|
18
|
-
);
|
|
19
|
-
// Then we find all the tests.
|
|
20
|
-
const context = require.context('./', true, /\.spec\.ts$/);
|
|
21
|
-
// And load the modules.
|
|
22
|
-
context.keys().map(context);
|