Skip to content

Commit 89f534b

Browse files
committed
feat: add development roadmap for ObjectDocs with GitHub and Vercel integration; update pnpm-lock.yaml for lucide-react dependency
1 parent cdcca25 commit 89f534b

File tree

6 files changed

+6
-6381
lines changed

6 files changed

+6
-6381
lines changed
File renamed without changes.

packages/cli/src/commands/build.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export function registerBuildCommand(cli) {
5050
DOCS_DIR: docsDir
5151
};
5252

53-
const nextCmd = 'npm';
53+
const nextCmd = 'pnpm';
5454
const args = ['run', 'build'];
5555

5656
const child = spawn(nextCmd, args, {

packages/cli/src/commands/dev.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export function registerDevCommand(cli) {
3535
PORT: options.port
3636
};
3737

38-
const nextCmd = 'npm';
38+
const nextCmd = 'pnpm';
3939
const args = ['run', 'dev', '--', '-p', options.port];
4040

4141
let child;

packages/cli/src/commands/start.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export function registerStartCommand(cli) {
5959
};
6060

6161

62-
const child = spawn('npm', ['start'], {
62+
const child = spawn('pnpm', ['start'], {
6363
cwd: nextAppDir,
6464
stdio: 'inherit',
6565
env: env

0 commit comments

Comments
 (0)