File tree 3 files changed +1
-4
lines changed
3 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ export const CommonRepoMixin = subclass =>
3
3
async execute ( ) {
4
4
this . templateData = {
5
5
...this . templateData ,
6
+ scriptRunCommand : this . options . installDependencies === 'yarn' ? 'yarn' : 'npm run' ,
6
7
year : new Date ( ) . getFullYear ( ) ,
7
8
} ;
8
9
Original file line number Diff line number Diff line change @@ -29,8 +29,6 @@ export const TsWcLitElementMixin = subclass =>
29
29
class extends subclass {
30
30
async execute ( ) {
31
31
this . templateData . featureReadmes = safeFeatureReadme ( this . options . features ) ;
32
- this . templateData . scriptRunCommand =
33
- this . options . installDependencies === 'yarn' ? 'yarn' : 'npm run' ;
34
32
35
33
await super . execute ( ) ;
36
34
const { tagName, className } = this . templateData ;
Original file line number Diff line number Diff line change @@ -29,8 +29,6 @@ export const WcLitElementMixin = subclass =>
29
29
class extends subclass {
30
30
async execute ( ) {
31
31
this . templateData . featureReadmes = safeFeatureReadme ( this . options . features ) ;
32
- this . templateData . scriptRunCommand =
33
- this . options . installDependencies === 'yarn' ? 'yarn' : 'npm run' ;
34
32
35
33
await super . execute ( ) ;
36
34
const { tagName, className } = this . templateData ;
You can’t perform that action at this time.
0 commit comments