File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -11,15 +11,15 @@ jobs:
1111 - uses : actions/checkout@v2
1212 - uses : actions/setup-node@v2-beta
1313 with :
14- node-version : ' 14 '
14+ node-version : " 14 "
1515 - run : |
1616 npm ci
1717 npm run bump
1818 npm install
1919 - uses : peter-evans/create-pull-request@v2
2020 with :
2121 token : ${{ secrets.GITHUB_TOKEN }}
22- commit-message : Update dependencies
22+ commit-message : Update dependencies
2323 title : " [AUTO] Update dependencies"
2424 labels : Dependencies
2525 branch : " Bump"
Original file line number Diff line number Diff line change @@ -58,6 +58,7 @@ createPlugins(
5858```
5959
6060which ` inputPlugins ` is among these:
61+
6162```
6263ts
6364babel
6869```
6970
7071You can pass an input plugin with their supported option:
72+
7173``` js
7274createPlugins ([" ts" , {noEmitOnError: false , tsconfig: " ./lib/tsconfig.json" })
7375```
Original file line number Diff line number Diff line change @@ -136,7 +136,7 @@ export function createPlugins(
136136 }
137137
138138 // babel
139- let babelInput = extraPlugins
139+ let babelInput = extraPlugins ;
140140 if ( typeof babelInput === "boolean" ) {
141141 console . warn (
142142 'Setting babel with the second argument is depcrated. Pass "babel" like other plugins to the first argument'
You can’t perform that action at this time.
0 commit comments