@uniformdev/cli 20.43.1-alpha.12 → 20.43.1-alpha.14
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/dist/index.mjs +3 -3
- package/package.json +9 -9
package/dist/index.mjs
CHANGED
|
@@ -10459,7 +10459,7 @@ var runNpm = async (workDir, args, { inherit, env } = {}) => {
|
|
|
10459
10459
|
result = await execa("npm", args, {
|
|
10460
10460
|
cwd: workDir,
|
|
10461
10461
|
env: env ?? {},
|
|
10462
|
-
...inherit ? { stdout: "inherit", stderr: "inherit" } : {}
|
|
10462
|
+
...inherit ? { stdin: "inherit", stdout: "inherit", stderr: "inherit" } : {}
|
|
10463
10463
|
});
|
|
10464
10464
|
} catch (err) {
|
|
10465
10465
|
throw new Error(`Failed to execute npm ${args.join(" ")}
|
|
@@ -10656,13 +10656,13 @@ async function newHandler({
|
|
|
10656
10656
|
const installStartTimestamp = Date.now();
|
|
10657
10657
|
await runNpmInstall();
|
|
10658
10658
|
telemetry.send("deps installed", { duration: Date.now() - installStartTimestamp });
|
|
10659
|
-
if (installRequiresInput) {
|
|
10659
|
+
if (!installRequiresInput) {
|
|
10660
10660
|
done = await spin("Creating components and compositions");
|
|
10661
10661
|
}
|
|
10662
10662
|
for (const command of installCommands) {
|
|
10663
10663
|
await runNpm(targetDir, command, { inherit: installRequiresInput });
|
|
10664
10664
|
}
|
|
10665
|
-
if (installRequiresInput) {
|
|
10665
|
+
if (!installRequiresInput) {
|
|
10666
10666
|
await done();
|
|
10667
10667
|
}
|
|
10668
10668
|
telemetry.send("flow finished");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/cli",
|
|
3
|
-
"version": "20.43.1-alpha.
|
|
3
|
+
"version": "20.43.1-alpha.14+83f1ea5442",
|
|
4
4
|
"description": "Uniform command line interface tool",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./cli.js",
|
|
@@ -28,13 +28,13 @@
|
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@inquirer/prompts": "^7.10.1",
|
|
30
30
|
"@thi.ng/mime": "^2.2.23",
|
|
31
|
-
"@uniformdev/assets": "20.43.1-alpha.
|
|
32
|
-
"@uniformdev/canvas": "20.43.1-alpha.
|
|
33
|
-
"@uniformdev/context": "20.43.1-alpha.
|
|
34
|
-
"@uniformdev/files": "20.43.1-alpha.
|
|
35
|
-
"@uniformdev/project-map": "20.43.1-alpha.
|
|
36
|
-
"@uniformdev/redirect": "20.43.1-alpha.
|
|
37
|
-
"@uniformdev/richtext": "20.43.1-alpha.
|
|
31
|
+
"@uniformdev/assets": "20.43.1-alpha.14+83f1ea5442",
|
|
32
|
+
"@uniformdev/canvas": "20.43.1-alpha.14+83f1ea5442",
|
|
33
|
+
"@uniformdev/context": "20.43.1-alpha.14+83f1ea5442",
|
|
34
|
+
"@uniformdev/files": "20.43.1-alpha.14+83f1ea5442",
|
|
35
|
+
"@uniformdev/project-map": "20.43.1-alpha.14+83f1ea5442",
|
|
36
|
+
"@uniformdev/redirect": "20.43.1-alpha.14+83f1ea5442",
|
|
37
|
+
"@uniformdev/richtext": "20.43.1-alpha.14+83f1ea5442",
|
|
38
38
|
"call-bind": "^1.0.2",
|
|
39
39
|
"colorette": "2.0.20",
|
|
40
40
|
"cosmiconfig": "9.0.0",
|
|
@@ -81,5 +81,5 @@
|
|
|
81
81
|
"publishConfig": {
|
|
82
82
|
"access": "public"
|
|
83
83
|
},
|
|
84
|
-
"gitHead": "
|
|
84
|
+
"gitHead": "83f1ea5442d5453c553fbc510b5f975dfbc78d0f"
|
|
85
85
|
}
|