File tree Expand file tree Collapse file tree 3 files changed +3
-5
lines changed
Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -56,6 +56,5 @@ accept your pull requests.
56561 . Lint (and maybe fix) any changes:
5757
5858 npm run format
59- npm run lint-fix
6059
6160[ setup ] : https://cloud.google.com/nodejs/docs/setup
Original file line number Diff line number Diff line change 7979
8080 // An error is thrown when instantiating loader with new options
8181 try {
82- new google . maps . plugins . loader . Loader ( { apiKey : ' foo' } ) ;
82+ new google . maps . plugins . loader . Loader ( { apiKey : " foo" } ) ;
8383 } catch ( e ) {
84- console . log ( e . message )
84+ console . log ( e . message ) ;
8585 }
8686
8787 // The loader is a singleton and new loaders will resolve with the old
9191 anotherLoader . load ( ) . then ( ( ) => {
9292 console . log ( "another loader was used with same options" ) ;
9393 } ) ;
94-
9594 </ script >
9695 </ head >
9796
Original file line number Diff line number Diff line change 2222 "types" : " dist/index.d.ts" ,
2323 "scripts" : {
2424 "docs" : " typedoc" ,
25- "format" : " prettier *.json *.js src/* e2e/* examples/* --write" ,
25+ "format" : " prettier *.json *.js src/* e2e/* examples/* --write && eslint src/* --fix " ,
2626 "lint" : " eslint src/*" ,
2727 "prepare" : " rollup -c" ,
2828 "test" : " jest src/*" ,
You can’t perform that action at this time.
0 commit comments