This repository was archived by the owner on Oct 20, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed
Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ module.exports = class extends Generator {
6565 this . destinationPath ( '.gitignore' )
6666 ) ;
6767
68- // Meta Files
68+ // Meta Files
6969 this . fs . copy (
7070 this . templatePath ( 'LICENSE' ) ,
7171 this . destinationPath ( 'LICENSE' )
@@ -87,7 +87,7 @@ module.exports = class extends Generator {
8787 this . destinationPath ( 'yarn.lock' )
8888 ) ;
8989
90- // Root JS files
90+ // Root JS files
9191 this . fs . copy (
9292 this . templatePath ( 'config.js' ) ,
9393 this . destinationPath ( 'config.js' )
@@ -107,19 +107,19 @@ module.exports = class extends Generator {
107107 this . destinationPath ( 'server.js' )
108108 ) ;
109109
110- // JSON templates
110+ // JSON templates
111111 this . fs . copy (
112112 this . templatePath ( 'json-templates/gitkeep' ) ,
113113 this . destinationPath ( 'json-templates/.gitkeep' )
114114 ) ;
115115
116- // Server files
116+ // Server files
117117 this . fs . copy (
118118 this . templatePath ( 'server' ) ,
119119 this . destinationPath ( 'server' )
120120 ) ;
121121
122- // Test files
122+ // Test files
123123 this . fs . copy (
124124 this . templatePath ( 'test' ) ,
125125 this . destinationPath ( 'test' )
Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ const titleCase = require('title-case');
77const helper = require ( './promptingHelpers' ) ;
88
99module . exports = class extends Generator {
10-
1110 prompting ( ) {
1211 const done = this . async ( ) ;
1312
You can’t perform that action at this time.
0 commit comments