Skip to content

Commit 5a3123b

Browse files
committed
fix(close #12): .github dir does not get copied
1 parent 7a5b528 commit 5a3123b

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

generators/app/index.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,17 @@ module.exports = class extends Generator {
6868

6969
writing() {
7070
this.fs.copyTpl(
71-
[this.templatePath('**/*'), this.templatePath('**/.*')],
71+
[
72+
this.templatePath('**/*'),
73+
this.templatePath('**/.*'),
74+
this.templatePath('.github/**/*'),
75+
],
7276
this.destinationPath(),
7377
this.props,
7478
);
7579
}
7680

7781
install() {
78-
this.yarnInstall();
82+
// this.yarnInstall();
7983
}
8084
};

0 commit comments

Comments
 (0)