@cabloy/cli 3.0.90 → 3.0.91

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -258,14 +258,14 @@ class LocalCommon {
258
258
  }
259
259
  async _generatePackageJson_pkgFromZovaRest(projectPath, devDependencies) {
260
260
  if (this.cli.context.brandName !== 'vona') return;
261
- const targetDir = path.join(projectPath, 'zovaRest');
261
+ const targetDir = path.join(projectPath, '.zovaRest');
262
262
  const bundles = await globby('*', {
263
263
  cwd: targetDir,
264
264
  onlyDirectories: true
265
265
  });
266
266
  for (const bundle of bundles) {
267
267
  const name = `zova-rest-${bundle}`;
268
- devDependencies[name] = `file:./zovaRest/${bundle}`;
268
+ devDependencies[name] = `file:./.zovaRest/${bundle}`;
269
269
  }
270
270
  }
271
271
  async _generatePackageJson_saveBack(pkg, pkgOriginal, pkgOriginalFile, deps, depsDev) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cabloy/cli",
3
3
  "type": "module",
4
- "version": "3.0.90",
4
+ "version": "3.0.91",
5
5
  "description": "@cabloy/cli",
6
6
  "publishConfig": {
7
7
  "access": "public"