@eui/cli 21.0.0-next.27 → 21.0.0-next.29
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/lib/app-utils/build.js
CHANGED
|
@@ -39,7 +39,7 @@ module.exports.run = () => {
|
|
|
39
39
|
|
|
40
40
|
utils.logTitle(`Building application : ${prjName}...`);
|
|
41
41
|
|
|
42
|
-
const ng = path.resolve(process.cwd(), '@angular', 'cli', 'bin', 'ng');
|
|
42
|
+
const ng = path.resolve(process.cwd(), 'node_modules', '@angular', 'cli', 'bin', 'ng');
|
|
43
43
|
|
|
44
44
|
return Promise.resolve()
|
|
45
45
|
// .then(() => {
|
|
@@ -80,14 +80,12 @@ module.exports.run = () => {
|
|
|
80
80
|
args.push(`--watch=false`);
|
|
81
81
|
}
|
|
82
82
|
|
|
83
|
-
args.push('--code-coverage');
|
|
84
|
-
|
|
85
83
|
utils.logInfo(`ng test : watching = ${watch || false}`);
|
|
86
84
|
|
|
87
85
|
utils.logInfo(`running Angular TEST with args: ${args} on :`);
|
|
88
86
|
|
|
89
87
|
if (!dryRun) {
|
|
90
|
-
execSync(`node ${args.join(' ')}`, { cwd:
|
|
88
|
+
execSync(`node ${args.join(' ')}`, { cwd: process.cwd(), stdio: 'inherit' });
|
|
91
89
|
}
|
|
92
90
|
}
|
|
93
91
|
})
|
|
@@ -139,7 +137,7 @@ module.exports.run = () => {
|
|
|
139
137
|
utils.logInfo(`running Angular BUILD with args: ${args}`);
|
|
140
138
|
|
|
141
139
|
if (!dryRun && !skipCompile) {
|
|
142
|
-
execSync(`node ${args.join(' ')}`, { cwd:
|
|
140
|
+
execSync(`node ${args.join(' ')}`, { cwd: process.cwd(), stdio: 'inherit' });
|
|
143
141
|
}
|
|
144
142
|
})
|
|
145
143
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eui-angular-app",
|
|
3
|
-
"version": "21.0.0-next.
|
|
3
|
+
"version": "21.0.0-next.29",
|
|
4
4
|
"license": "EUPL-1.1",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"ng": "ng",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
},
|
|
22
22
|
"private": true,
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@eui/deps-base": "21.0.0-next.
|
|
24
|
+
"@eui/deps-base": "21.0.0-next.29"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"npm-run-all": "4.1.5",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eui-angular-app",
|
|
3
|
-
"version": "21.0.0-next.
|
|
3
|
+
"version": "21.0.0-next.29",
|
|
4
4
|
"license": "EUPL-1.1",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"ng": "ng",
|
|
@@ -48,17 +48,17 @@
|
|
|
48
48
|
"pikaday": "1.8.2",
|
|
49
49
|
"lodash-es": "4.17.21",
|
|
50
50
|
"localforage": "1.10.0",
|
|
51
|
-
"@eui/base": "21.0.0-next.
|
|
52
|
-
"@eui/core": "21.0.0-next.
|
|
53
|
-
"@eui/styles": "21.0.0-next.
|
|
54
|
-
"@eui/components": "21.0.0-next.
|
|
55
|
-
"@eui/ecl": "21.0.0-next.
|
|
51
|
+
"@eui/base": "21.0.0-next.29",
|
|
52
|
+
"@eui/core": "21.0.0-next.29",
|
|
53
|
+
"@eui/styles": "21.0.0-next.29",
|
|
54
|
+
"@eui/components": "21.0.0-next.29",
|
|
55
|
+
"@eui/ecl": "21.0.0-next.29"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"@angular/build": "21.0.0",
|
|
59
59
|
"@angular/compiler-cli": "21.0.0",
|
|
60
60
|
"@angular/cli": "21.0.0",
|
|
61
|
-
"@eui/cli": "21.0.0-next.
|
|
61
|
+
"@eui/cli": "21.0.0-next.29",
|
|
62
62
|
"ng-packagr": "21.0.0",
|
|
63
63
|
"typescript": "5.9.2",
|
|
64
64
|
"npm-run-all": "4.1.5",
|