@tywalk/pcf-helper 1.4.3 → 1.4.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 +1 -1
- package/package.json +1 -1
- package/tasks/build-pcf.js +1 -1
- package/tasks/import-pcf.js +1 -1
- package/tasks/upgrade-pcf.js +1 -1
- package/util/performanceUtil.js +1 -1
package/bin/deploy.js
CHANGED
package/package.json
CHANGED
package/tasks/build-pcf.js
CHANGED
|
@@ -26,7 +26,7 @@ function run(path) {
|
|
|
26
26
|
console.error('Unable to complete build: One or more errors ocurred.');
|
|
27
27
|
}
|
|
28
28
|
}
|
|
29
|
-
console.log('Build finished in %is.',
|
|
29
|
+
console.log(formatMsToSec('Build finished in %is.', tock - tick));
|
|
30
30
|
return task.status;
|
|
31
31
|
}
|
|
32
32
|
|
package/tasks/import-pcf.js
CHANGED
|
@@ -40,7 +40,7 @@ function run(path, env, verbose) {
|
|
|
40
40
|
console.error('Unable to complete import: One or more errors ocurred.');
|
|
41
41
|
}
|
|
42
42
|
}
|
|
43
|
-
console.log('Import finished in %is.',
|
|
43
|
+
console.log(formatMsToSec('Import finished in %is.', tock - tick));
|
|
44
44
|
return task.status;
|
|
45
45
|
}
|
|
46
46
|
|
package/tasks/upgrade-pcf.js
CHANGED
|
@@ -26,7 +26,7 @@ function run(path) {
|
|
|
26
26
|
console.error('Unable to complete upgrade: One or more errors ocurred.');
|
|
27
27
|
}
|
|
28
28
|
}
|
|
29
|
-
console.log('Upgrade finished in %is.',
|
|
29
|
+
console.log(formatMsToSec('Upgrade finished in %is.', tock - tick));
|
|
30
30
|
return task.status;
|
|
31
31
|
}
|
|
32
32
|
|