File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ export function main() {
2626 let fixture = TestBed . createComponent ( TestComponent ) ;
2727 let aboutDOMEl = fixture . debugElement . children [ 0 ] . nativeElement ;
2828
29- expect ( aboutDOMEl . querySelectorAll ( 'h2' ) [ 0 ] . textContent ) . toEqual ( 'Features' ) ;
29+ expect ( aboutDOMEl . querySelectorAll ( 'h2' ) [ 0 ] . textContent ) . toEqual ( 'Features' ) ;
3030 } ) ;
3131 } ) ) ;
3232 } ) ;
Original file line number Diff line number Diff line change 44 "class-name" : true ,
55 "curly" : false ,
66 "eofline" : true ,
7- "indent" : [" spaces" ],
7+ "indent" : [true , " spaces" ],
88 "max-line-length" : [true , 140 ],
99 "member-ordering" : [true ,
1010 " public-before-private" ,
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ export = () => {
2121 }
2222
2323 if ( ! semver . gte ( stdout , Config . VERSION_NPM ) ) {
24- reportError ( 'NPM is not in required version! Required is ' + Config . VERSION_NPM + ' and you\'re using ' + stdout ) ;
24+ reportError ( 'NPM is not in required version! Required is ' + Config . VERSION_NPM + ' and you\'re using ' + stdout ) ;
2525 }
2626 } ) ;
2727
@@ -32,7 +32,7 @@ export = () => {
3232 }
3333
3434 if ( ! semver . gte ( stdout , Config . VERSION_NODE ) ) {
35- reportError ( 'NODE is not in required version! Required is ' + Config . VERSION_NODE + ' and you\'re using ' + stdout ) ;
35+ reportError ( 'NODE is not in required version! Required is ' + Config . VERSION_NODE + ' and you\'re using ' + stdout ) ;
3636 }
3737 } ) ;
3838} ;
Original file line number Diff line number Diff line change @@ -10,10 +10,10 @@ export = () => {
1010 . gulpGenManifest ( {
1111 group : [ {
1212 name : 'css' ,
13- sources : gulp . src ( `${ Config . APP_DEST } /**/*.css` )
13+ sources : gulp . src ( `${ Config . APP_DEST } /**/*.css` )
1414 } , {
1515 name : 'js' ,
16- sources : gulp . src ( `${ Config . APP_DEST } /**/*.js` )
16+ sources : gulp . src ( `${ Config . APP_DEST } /**/*.js` )
1717 } ]
1818 } )
1919 . pipe ( gulp . dest ( Config . APP_DEST ) ) ;
You can’t perform that action at this time.
0 commit comments