Skip to content

Commit

Permalink
Fix: add missing gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
ZeroCho committed Nov 15, 2020
1 parent 06bf36a commit 1da4c26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli.ts
Expand Up @@ -182,7 +182,7 @@ if (program.dev) {
}
copyRecursiveSync(path.join(__dirname, db), path.join(process.cwd(), 'server'));
copyRecursiveSync(path.join(__dirname, front), path.join(process.cwd(), 'app'));
const list = ['config', 'types', 'webpack', 'package.json', '.sequelizerc', 'nodemon.json', '.babelrc', '.gitignore', '.eslintrc.json', '.eslintignore', 'Procfile', 'tsconfig.json'];
const list = ['config', 'types', 'webpack', 'package.json', '.sequelizerc', 'nodemon.json', 'gitignore', '.babelrc', '.eslintrc.json', '.eslintignore', 'Procfile', 'tsconfig.json'];
list.forEach((name) => {
copyRecursiveSync(path.join(__dirname, name), path.join(process.cwd(), name));
});
Expand Down

0 comments on commit 1da4c26

Please sign in to comment.