generator-easy-ui5 3.10.0 → 3.10.1
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/generators/app/index.js
CHANGED
|
@@ -68,7 +68,7 @@ export default class EasyUI5Generator extends Generator {
|
|
|
68
68
|
// `(command, execaOptions)` (no args array — it parses the shell
|
|
69
69
|
// string), whereas `spawn` takes `(command, args[], options)`. We
|
|
70
70
|
// pass argv as an array, so we want `spawn`.
|
|
71
|
-
this.spawn("npm", ["install", "--no-progress", "--ignore-engines", "--ignore-scripts"
|
|
71
|
+
this.spawn("npm", ["install", "--no-progress", "--ignore-engines", "--ignore-scripts"], {
|
|
72
72
|
stdio: this.config.verbose ? "inherit" : "ignore",
|
|
73
73
|
cwd: dir,
|
|
74
74
|
env: {
|
|
@@ -496,7 +496,7 @@ export default class EasyUI5Generator extends Generator {
|
|
|
496
496
|
const generatorIdx = (
|
|
497
497
|
await this.prompt([
|
|
498
498
|
{
|
|
499
|
-
type: "
|
|
499
|
+
type: "select",
|
|
500
500
|
name: "generator",
|
|
501
501
|
message: "Select your generator?",
|
|
502
502
|
choices: availGenerators.map((availGenerator, idx) => ({
|
|
@@ -617,7 +617,7 @@ export default class EasyUI5Generator extends Generator {
|
|
|
617
617
|
subGenerator = (
|
|
618
618
|
await this.prompt([
|
|
619
619
|
{
|
|
620
|
-
type: "
|
|
620
|
+
type: "select",
|
|
621
621
|
name: "subGenerator",
|
|
622
622
|
message: "What do you want to do?",
|
|
623
623
|
default: defaultSubGenerator && defaultSubGenerator.value,
|
package/package.json
CHANGED
|
Binary file
|