We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f38d39 commit e17f0f5Copy full SHA for e17f0f5
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "react-chef",
3
- "version": "0.1.2",
+ "version": "0.1.3",
4
"description": "Transparent React Boilerplate Apps",
5
"main": "index.js",
6
"repository": {
recipes/slim/index.js
@@ -29,6 +29,11 @@ program.parse(process.argv);
29
30
// Create App Directory.
31
const appName = program.args[0];
32
+
33
+if (!appName) {
34
+ error('Error occurred: App name is mandatory to create your react dish!');
35
+}
36
37
const baseDirPath = `./${appName}`;
38
39
const tryAccess = (accessPath) => {
0 commit comments