Skip to content

Commit

Permalink
Include .gitignore and other hidden files in newly created projects.
Browse files Browse the repository at this point in the history
  • Loading branch information
aduros committed Oct 31, 2021
1 parent 475b871 commit eb9e1a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/lib/new.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ async function run (destDir, opts) {
}

const srcDir = path.resolve(__dirname+"/../assets/templates/"+lang);
await copy(srcDir, destDir);
await copy(srcDir, destDir, { dot: true });
await init(destDir, lang);

const help = HELP[lang];
Expand Down

0 comments on commit eb9e1a6

Please sign in to comment.