Skip to content

Commit 0855a35

Browse files
authored
fix(close #10): missing dotfiles in the output (#11)
1 parent 6a5885b commit 0855a35

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

generators/app/index.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ module.exports = class extends Generator {
3737
{
3838
type: 'input',
3939
name: 'elementHomepageUrl',
40-
message: 'Package homepage URL?',
40+
message: 'Homepage URL?',
4141
default: `https://github.com/${githubUsername}/${this.appname}`,
4242
},
4343
{
4444
type: 'input',
4545
name: 'elementBugsUrl',
46-
message: 'Bugs tracking site?',
46+
message: 'Bugs tracking URL?',
4747
default: `https://github.com/${githubUsername}/${this.appname}/issues`,
4848
},
4949
{
@@ -55,7 +55,7 @@ module.exports = class extends Generator {
5555
{
5656
type: 'input',
5757
name: 'elementRepositoryUrl',
58-
message: 'Package repository URL?',
58+
message: 'Repository URL?',
5959
default: `https://github.com/${githubUsername}/${this.appname}.git`,
6060
},
6161
];
@@ -68,7 +68,7 @@ module.exports = class extends Generator {
6868

6969
writing() {
7070
this.fs.copyTpl(
71-
[this.templatePath('**/*.*')],
71+
[this.templatePath('**/*'), this.templatePath('**/.*')],
7272
this.destinationPath(),
7373
this.props,
7474
);

0 commit comments

Comments
 (0)