Skip to content

Commit c1a1566

Browse files
authored
Restructure core plugins, named exports to default export (#5592)
* use export default instead of named exports I'm a little sad about this change, but it turns out that the order is not guaranteed for named exports in ESM. It was the correct order in our tests because of babel, but not in native ESM. * update imports
1 parent 1ec5438 commit c1a1566

File tree

3 files changed

+1960
-1964
lines changed

3 files changed

+1960
-1964
lines changed

scripts/create-plugin-list.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import * as corePlugins from '../src/corePlugins'
1+
import corePlugins from '../src/corePlugins'
22
import fs from 'fs'
33
import path from 'path'
44

0 commit comments

Comments
 (0)