nebula-starter-kit 0.0.7 → 0.0.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.
@@ -276,7 +276,8 @@ 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.resolve(__dirname, '../templates/service'), serviceOutput);
279
+ console.log(path.resolve(__dirname, '../../templates/service'));
280
+ fs.copySync(path.resolve(__dirname, '../../templates/service'), serviceOutput);
280
281
  // update service names
281
282
  await (0, replaceServiceNames_1.replaceServiceNames)(serviceOutput, service, appNamePlaceHolder);
282
283
  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.7",
3
+ "version": "0.0.8",
4
4
  "bin": {
5
5
  "nebula": "./dist/index.js"
6
6
  },