Skip to content

Commit

Permalink
fix(#601): Add devDependency on the cli
Browse files Browse the repository at this point in the history
  • Loading branch information
doug-wade committed Jan 15, 2024
1 parent 9d0bac1 commit afb01b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/src/commands/scaffold.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const execAsync = async (command: string, opts = {}) => {
// We want to run npm i as few times as possible so that npm spends as little time calculating
// the ideal dependency closure as possible, and can parallelize as much as possible.
const dependencies = ['@tybalt/core', '@tybalt/validator'];
const devDependencies = ['@tybalt/esbuild-plugin', 'esbuild'];
const devDependencies = ['@tybalt/cli', '@tybalt/esbuild-plugin', 'esbuild'];
const scripts: { [property: string]: { script: string; description: string } } = {};

// Installs all the dependencies
Expand Down

0 comments on commit afb01b4

Please sign in to comment.