We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c852a2 commit a8f8acbCopy full SHA for a8f8acb
lib/cmds/template_generator.js
@@ -14,6 +14,9 @@ class TemplateGenerator {
14
fs.copySync(templatePath, fspath);
15
utils.cd(fspath);
16
utils.sed('package.json', '%APP_NAME%', name);
17
+ if (fs.existsSync('dot.gitignore')) {
18
+ fs.moveSync('dot.gitignore', '.gitignore');
19
+ }
20
21
if (name === 'embark_demo') {
22
console.log(__('Installing packages...').green);
0 commit comments