-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor!: named export for main entry
- Loading branch information
Showing
8 changed files
with
19 additions
and
20 deletions.
There are no files selected for viewing
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 +1 @@ | ||
export { resolveOptions, type DepKind, type Options } from './core/options' | ||
export { resolveOptions } from './core/options' |
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,3 +1,3 @@ | ||
import unplugin from './index' | ||
import { Unused } from './index' | ||
|
||
export default unplugin.esbuild as typeof unplugin.esbuild | ||
export default Unused.esbuild as typeof Unused.esbuild |
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,3 +1,3 @@ | ||
import unplugin from './index' | ||
import { Unused } from './index' | ||
|
||
export default unplugin.rolldown as typeof unplugin.rolldown | ||
export default Unused.rolldown as typeof Unused.rolldown |
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,3 +1,3 @@ | ||
import unplugin from './index' | ||
import { Unused } from './index' | ||
|
||
export default unplugin.rollup as typeof unplugin.rollup | ||
export default Unused.rollup as typeof Unused.rollup |
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,3 +1,3 @@ | ||
import unplugin from './index' | ||
import { Unused } from './index' | ||
|
||
export default unplugin.rspack as typeof unplugin.rspack | ||
export default Unused.rspack as typeof Unused.rspack |
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,3 +1,3 @@ | ||
import unplugin from './index' | ||
import { Unused } from './index' | ||
|
||
export default unplugin.vite as typeof unplugin.vite | ||
export default Unused.vite as typeof Unused.vite |
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,3 +1,3 @@ | ||
import unplugin from './index' | ||
import { Unused } from './index' | ||
|
||
export default unplugin.webpack as typeof unplugin.webpack | ||
export default Unused.webpack as typeof Unused.webpack |