Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nshen committed Feb 5, 2020
1 parent 7201f09 commit efe19ee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion packages/cli/src/commands/create.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ export async function create(name: string, r: string = 'coding') {
console.log();
console.log('依赖安装后,可用以下命令预览小游戏:');
console.log();
useYarn ? Logger.command('yarn dev') : Logger.command('npm run dev');
useYarn ? Logger.command(' yarn dev') : Logger.command(' npm run dev');
console.log();
});

}
Expand Down
2 changes: 1 addition & 1 deletion packages/starter/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# @shed/starter

:hammer:`@shed/cli` 创建的演示游戏
:hammer:`shed create` 命令创建的演示游戏

## 安装依赖

Expand Down

0 comments on commit efe19ee

Please sign in to comment.