nebula-starter-kit 0.0.11 โ†’ 0.0.13

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/run.js CHANGED
@@ -22,7 +22,7 @@ async function run() {
22
22
  const appName = await (0, appName_1.promptAppName)();
23
23
  appNamePlaceHolder = appName;
24
24
  console.log('appNamePlaceHolder', appNamePlaceHolder);
25
- const OUTPUT = path_1.default.join(ROOT, `../${appName}`);
25
+ const OUTPUT = path_1.default.join(ROOT, `${appName}`);
26
26
  if (await fs_extra_1.default.pathExists(OUTPUT)) {
27
27
  console.log(`๐Ÿงน Cleaning ${appName} folder...\n`);
28
28
  await fs_extra_1.default.remove(OUTPUT);
@@ -52,12 +52,12 @@ async function promptAppName() {
52
52
  }
53
53
  }
54
54
  }
55
- if (!config?.services) {
56
- if (config?.name !== 'cli') {
57
- console.log(`โŒ Incorrect CLI directory\n`);
58
- process.exit(1);
59
- }
60
- }
55
+ // if (!config?.services) {
56
+ // if (config?.name !== 'cli') {
57
+ // console.log(`โŒ Incorrect CLI directory\n`);
58
+ // process.exit(1);
59
+ // }
60
+ // }
61
61
  let appName = argAppName;
62
62
  // If app name not provided โ†’ prompt
63
63
  if (!appName) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nebula-starter-kit",
3
- "version": "0.0.11",
3
+ "version": "0.0.13",
4
4
  "bin": {
5
5
  "nebula": "./dist/index.js"
6
6
  },