File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2424 ncu -u --dep prod
2525 pnpm install
2626
27-
2827 - uses : tibdex/github-app-token@v1
2928 id : generate-token
3029 with :
3837 labels : Dependencies
3938 branch : " Bump_Dependencies"
4039
41-
4240 Bump_devDependencies :
4341 runs-on : ubuntu-latest
4442 steps :
Original file line number Diff line number Diff line change @@ -71,6 +71,7 @@ visualizer
7171```
7272
7373Default plugins configured automatically:
74+
7475```
7576commonjs
7677resolve
@@ -109,12 +110,11 @@ const plugins = createPlugins([
109110For 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"
113114createPlugins ([" ts" ], [multyentry ()])
114115```
115116
116-
117- -----------
117+ ---
118118
119119### createConfig (not recommend)
120120
Original file line number Diff line number Diff 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 ] ) )
You can’t perform that action at this time.
0 commit comments