Skip to content

Commit 3134202

Browse files
committed
chore: format
1 parent 80149fc commit 3134202

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/bump_deps.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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"

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ createPlugins(
5858
```
5959

6060
which `inputPlugins` is among these:
61+
6162
```
6263
ts
6364
babel
@@ -68,6 +69,7 @@ css
6869
```
6970

7071
You can pass an input plugin with their supported option:
72+
7173
```js
7274
createPlugins(["ts", {noEmitOnError: false, tsconfig: "./lib/tsconfig.json"})
7375
```

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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'

0 commit comments

Comments
 (0)