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 362d3f7 commit 631e03aCopy full SHA for 631e03a
generators/index.ts
@@ -104,6 +104,10 @@ export default class extends Generator {
104
this.templatePath( `${this.options.templateChoice}/.gitignore.template` ),
105
this.destinationPath( '.gitignore' ),
106
);
107
+ this.fs.copy(
108
+ this.templatePath( `${this.options.templateChoice}/.eslintrc.cjs` ),
109
+ this.destinationPath( '.eslintrc.cjs' ),
110
+ );
111
this.fs.copyTpl(
112
this.templatePath( `${ path.dirname( this.options.templateChoice ) }/app/${ path.basename( this.options.templateChoice ) == 'node-jet' ? 'index-proxied' : 'index' }.cjs` ),
113
this.destinationPath( 'server/index.cjs' ),
0 commit comments