@pulse-editor/cli 0.1.0-beta.6 → 0.1.0-beta.8
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.
|
@@ -122,10 +122,11 @@ export default function Create({ cli }) {
|
|
|
122
122
|
try {
|
|
123
123
|
await execa(`npm install`, {
|
|
124
124
|
cwd: path.join(process.cwd(), name),
|
|
125
|
+
shell: true,
|
|
125
126
|
});
|
|
126
127
|
}
|
|
127
128
|
catch (error) {
|
|
128
|
-
setCreateMessage(
|
|
129
|
+
setCreateMessage(_jsx(Text, { color: "redBright", children: "\u274C Failed to install dependencies. Please check your internet connection and try again." }));
|
|
129
130
|
return;
|
|
130
131
|
}
|
|
131
132
|
setCreateMessage(_jsx(Text, { children: "\uD83D\uDE80 Pulse Editor React app project created successfully!" }));
|