@tywalk/pcf-helper 1.3.3 → 1.3.4
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/bin/deploy.js +8 -5
- package/bin/upgrade.js +2 -2
- package/package.json +1 -1
- package/tasks/build-pcf.js +1 -0
- package/tasks/import-pcf.js +1 -0
- package/tasks/upgrade-pcf.js +1 -0
package/bin/deploy.js
CHANGED
|
@@ -7,14 +7,14 @@ const [, , ...args] = process.argv;
|
|
|
7
7
|
const pathArgument = args.find(a => ['-p', '--path'].includes(a));
|
|
8
8
|
if (typeof pathArgument === 'undefined') {
|
|
9
9
|
console.error('Path argument is required. Use --path to specify the path to solution folder.');
|
|
10
|
-
return
|
|
10
|
+
return 1;
|
|
11
11
|
}
|
|
12
12
|
|
|
13
13
|
const pathIndex = args.indexOf(pathArgument) + 1;
|
|
14
14
|
const path = args.at(pathIndex);
|
|
15
15
|
if (typeof path === 'undefined') {
|
|
16
16
|
console.error('Path argument is required. Use --path to specify the path to solution folder.');
|
|
17
|
-
return
|
|
17
|
+
return 1;
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
const envArgument = args.find(a => ['-env', '--environment'].includes(a));
|
|
@@ -24,6 +24,9 @@ if (envIndex > 0) {
|
|
|
24
24
|
env = args.at(envIndex);
|
|
25
25
|
}
|
|
26
26
|
|
|
27
|
-
upgradeTask.run(path);
|
|
28
|
-
|
|
29
|
-
|
|
27
|
+
const upgradeResult = upgradeTask.run(path);
|
|
28
|
+
if (upgradeResult === 1) return;
|
|
29
|
+
const buildResult = buildTask.run(path);
|
|
30
|
+
if (buildResult === 1) return;
|
|
31
|
+
const importResult = importTask.run(path, env);
|
|
32
|
+
if (importResult === 1) return;
|
package/bin/upgrade.js
CHANGED
|
@@ -5,14 +5,14 @@ const [, , ...args] = process.argv;
|
|
|
5
5
|
const pathArgument = args.find(a => ['-p', '--path'].includes(a));
|
|
6
6
|
if (typeof pathArgument === 'undefined') {
|
|
7
7
|
console.error('Path argument is required. Use --path to specify the path to solution folder.');
|
|
8
|
-
return
|
|
8
|
+
return 1;
|
|
9
9
|
}
|
|
10
10
|
|
|
11
11
|
const pathIndex = args.indexOf(pathArgument) + 1;
|
|
12
12
|
const path = args.at(pathIndex);
|
|
13
13
|
if (typeof path === 'undefined') {
|
|
14
14
|
console.error('Path argument is required. Use --path to specify the path to solution folder.');
|
|
15
|
-
return
|
|
15
|
+
return 1;
|
|
16
16
|
}
|
|
17
17
|
|
|
18
18
|
task.run(path);
|
package/package.json
CHANGED
package/tasks/build-pcf.js
CHANGED
package/tasks/import-pcf.js
CHANGED