nebula-starter-kit 0.0.5 → 0.0.6

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.
@@ -276,7 +276,7 @@ const generateServerlessFiles = async (selectedServices, ROOT, OUTPUT, appNamePl
276
276
  const serviceOutput = path.join(OUTPUT, 'services', service);
277
277
  await fs.ensureDir(serviceOutput);
278
278
  // copy base nest template
279
- fs.copySync(path.join(ROOT, 'templates/service'), serviceOutput);
279
+ fs.copySync(path.resolve(__dirname, '../templates/service'), serviceOutput);
280
280
  // update service names
281
281
  await (0, replaceServiceNames_1.replaceServiceNames)(serviceOutput, service, appNamePlaceHolder);
282
282
  console.log(`✅ Service ${service} created\n`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nebula-starter-kit",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "bin": {
5
5
  "nebula": "./dist/index.js"
6
6
  },