vovk-cli 0.0.1-beta.14 → 0.0.1-beta.15

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.mjs +1 -1
  2. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -39,7 +39,7 @@ program
39
39
  env: Object.assign({ PORT, __VOVK_START_WATCHER_IN_STANDALONE_MODE__: 'true' }, options.clientOut ? { VOVK_CLIENT_OUT_DIR: options.clientOut } : {}),
40
40
  },
41
41
  {
42
- command: `cd ${options.project} && npx next dev ${command.args.join(' ')}`,
42
+ command: `npx next dev ${command.args.join(' ')}`,
43
43
  name: 'Next.js Development Server',
44
44
  env: { PORT },
45
45
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vovk-cli",
3
- "version": "0.0.1-beta.14",
3
+ "version": "0.0.1-beta.15",
4
4
  "bin": {
5
5
  "vovk": "./dist/index.mjs"
6
6
  },