lincd-cli 0.2.53 → 0.2.54
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/cli-methods.js +2 -1
- package/lib/config-grunt.js +1 -1
- package/package.json +1 -1
package/lib/cli-methods.js
CHANGED
|
@@ -385,7 +385,8 @@ function buildAll(options) {
|
|
|
385
385
|
// (target ? ' ' + target : '') +
|
|
386
386
|
// (target2 ? ' ' + target2 : ''),
|
|
387
387
|
false, false, {}, false);
|
|
388
|
-
|
|
388
|
+
log(chalk_1.default.cyan('Building ' + pkg.packageName));
|
|
389
|
+
process.stdout.write(packagesLeft + ' packages left\r');
|
|
389
390
|
}
|
|
390
391
|
return command
|
|
391
392
|
.catch(({ error, stdout, stderr }) => {
|
package/lib/config-grunt.js
CHANGED
|
@@ -85,7 +85,7 @@ function setupGrunt(grunt, moduleName, config) {
|
|
|
85
85
|
]));
|
|
86
86
|
grunt.registerTask('build-es6', (0, utils_1.flatten)([
|
|
87
87
|
'prepare-build',
|
|
88
|
-
buildFrontend ? 'webpack:build-es6' : null,
|
|
88
|
+
// buildFrontend ? 'webpack:build-es6' : null,
|
|
89
89
|
buildServer
|
|
90
90
|
? ['clean:lib', 'exec:build-lib', 'copy:lib', 'exec:depcheck']
|
|
91
91
|
: null,
|