-
-
Notifications
You must be signed in to change notification settings - Fork 591
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(alias): built-in resolving algorithm is replaced in favor of Rol…
…lup's `this.resolve()` (#34) ## Breaking Change * ignore Intellij IDEA dir * updated pnpm-lock.yaml According to pnpm actual version and included packages * @rollup/plugin-alias: customResolver option Allow to use customResolver instead of built-in resolving algorithm in * @rollup/plugin-alias: updated readme customResolver option * (alias) updated README customResolver description * docs: rework custom resolver options and section * (alias) customResolver bugfix * feat(alias): Built-in resolving algorithm is removed @@ BREAKING @@ And replaced by Rollup's context function `this.resolve()` * (alias) Fixes according to PR discussion Tests: every test is done by invoking Rollup instance; Plugin: fixed according to linter warnings; Readme: updated. * (alias) fixes according to review
- Loading branch information
1 parent
f9dac38
commit 46c75f4
Showing
7 changed files
with
460 additions
and
1,092 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
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
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
export default 1; |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
// eslint-disable-next-line import/no-unresolved, import/extensions | ||
export { default } from 'superdeep'; |
Oops, something went wrong.