File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 1+ ## 1.0.5
2+ * Fix a bug that causes resolving conflicts with other plugins.
3+
14## 1.0.4
25* Fix a bug that causes resolving conflicts with other plugins.
36
Original file line number Diff line number Diff line change 11{
22 "name": "@haensl/rollup-plugin-local-resolve",
3- "version": "1.0.4 ",
3+ "version": "1.0.5 ",
44 "description": "Rollup plugin to resolve relative imports from local folders without stating the index file",
55 "main": "dist/rollup-plugin-local-resolve.cjs.js",
66 "module": "dist/rollup-plugin-local-resolve.es.js",
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ const resolve = () => ({
55 name: '@haensl/rollup-plugin-local-resolve',
66 resolveId: (importee, importer) => {
77 if (path.isAbsolute(importee)
8- || path.basename (importee) === importee ) {
8+ || /\0/.test (importee)) {
99 return Promise.resolve(null);
1010 }
1111
You can’t perform that action at this time.
0 commit comments