@enact/cli 7.2.1 → 7.3.0
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/CHANGELOG.md +8 -0
- package/commands/info.js +7 -5
- package/npm-shrinkwrap.json +5421 -4192
- package/package.json +42 -39
package/CHANGELOG.md
CHANGED
package/commands/info.js
CHANGED
|
@@ -114,11 +114,13 @@ function api ({cliInfo = false, dev = false} = {}) {
|
|
|
114
114
|
|
|
115
115
|
// Display info on notable 3rd party components
|
|
116
116
|
console.log(chalk.yellow.bold('==Third Party Components=='));
|
|
117
|
-
console.log(`
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
117
|
+
console.log(`babel: ${require('@babel/core/package.json').version}`);
|
|
118
|
+
[
|
|
119
|
+
'eslint',
|
|
120
|
+
'jest',
|
|
121
|
+
'less',
|
|
122
|
+
'webpack'
|
|
123
|
+
].forEach(dep => logVersion(dep));
|
|
122
124
|
} else {
|
|
123
125
|
const app = require('@enact/dev-utils').optionParser;
|
|
124
126
|
const meta = require(path.join(app.context, 'package.json'));
|