Skip to content

Commit 59ce426

Browse files
authored
fix: add @motiadev/workbench to project template dependencies (#1057)
1 parent f54e8a0 commit 59ce426

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

packages/snap/src/create/index.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,12 @@ const installRequiredDependencies = async (packageManager: string, rootDir: stri
3232
...pluginDependencies.map((dep: string) => `${dep}@${version}`),
3333
].join(' ')
3434

35-
const devDependencies = ['ts-node@10.9.2', 'typescript@5.7.3', '@types/react@19.1.1'].join(' ')
35+
const devDependencies = [
36+
'ts-node@10.9.2',
37+
'typescript@5.7.3',
38+
'@types/react@19.1.1',
39+
`@motiadev/workbench@${version}`,
40+
].join(' ')
3641

3742
try {
3843
await executeCommand(`${installCommand} ${dependencies}`, rootDir)

0 commit comments

Comments
 (0)