-
-
Notifications
You must be signed in to change notification settings - Fork 248
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(ruleset-bundler): skip commonjs in bundler for now
- Loading branch information
Showing
4 changed files
with
1 addition
and
26 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,5 @@ | ||
import * as commonjs from '@rollup/plugin-commonjs'; | ||
|
||
import { url } from '../plugins/url'; | ||
import { builtins } from '../plugins/builtins'; | ||
import type { PluginsPreset } from './types'; | ||
|
||
export const node: PluginsPreset = io => [ | ||
builtins(), | ||
(commonjs as unknown as typeof import('@rollup/plugin-commonjs').default)(), | ||
url(io), | ||
]; | ||
export const node: PluginsPreset = io => [builtins(), url(io)]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters