Skip to content

Commit 4e89f03

Browse files
committed
chore: format
1 parent 5962e83 commit 4e89f03

3 files changed

Lines changed: 4 additions & 6 deletions

File tree

.github/workflows/bump_deps.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ jobs:
2424
ncu -u --dep prod
2525
pnpm install
2626
27-
2827
- uses: tibdex/github-app-token@v1
2928
id: generate-token
3029
with:
@@ -38,7 +37,6 @@ jobs:
3837
labels: Dependencies
3938
branch: "Bump_Dependencies"
4039

41-
4240
Bump_devDependencies:
4341
runs-on: ubuntu-latest
4442
steps:

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ visualizer
7171
```
7272

7373
Default plugins configured automatically:
74+
7475
```
7576
commonjs
7677
resolve
@@ -109,12 +110,11 @@ const plugins = createPlugins([
109110
For adding extra plugins, you can pass them in array to the second argument
110111

111112
```ts
112-
import multyentry from '@rollup/plugin-multi-entry'
113+
import multyentry from "@rollup/plugin-multi-entry"
113114
createPlugins(["ts"], [multyentry()])
114115
```
115116

116-
117-
-----------
117+
---
118118

119119
### createConfig (not recommend)
120120

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ export function createPlugins(
198198
plugins.push(pluginFunction(pluginDefaultOptions))
199199
} else if (typeof inputPluginsNames[index][2] === "boolean" && inputPluginsNames[index][2] === true) {
200200
// plugin with options that override pluginDefaultOptions
201-
plugins.push(pluginFunction( {...pluginDefaultOptions, ...inputPluginsNames[index][1]}))
201+
plugins.push(pluginFunction({ ...pluginDefaultOptions, ...inputPluginsNames[index][1] }))
202202
} else {
203203
// plugin with options
204204
plugins.push(pluginFunction(inputPluginsNames[index][1]))

0 commit comments

Comments
 (0)