@enact/cli 6.0.2 → 6.0.3
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 +4 -0
- package/commands/info.js +6 -4
- package/npm-shrinkwrap.json +15027 -6920
- package/package.json +27 -27
package/CHANGELOG.md
CHANGED
package/commands/info.js
CHANGED
|
@@ -121,10 +121,12 @@ function api({cliInfo = false, dev = false} = {}) {
|
|
|
121
121
|
} else {
|
|
122
122
|
const app = require('@enact/dev-utils').optionParser;
|
|
123
123
|
const meta = require(path.join(app.context, 'package.json'));
|
|
124
|
-
const bl = require(
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
124
|
+
const bl = require(
|
|
125
|
+
resolveSync('browserslist', {
|
|
126
|
+
basedir: path.dirname(require.resolve('@enact/dev-utils/package.json')),
|
|
127
|
+
preserveSymlinks: false
|
|
128
|
+
})
|
|
129
|
+
);
|
|
128
130
|
app.setEnactTargetsAsDefault();
|
|
129
131
|
console.log(chalk.yellow.bold('==Project Info=='));
|
|
130
132
|
console.log(`Name: ${app.name}`);
|