Skip to content

Commit

Permalink
fix: use U+A789 instead of colon on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya committed Jul 24, 2020
1 parent 9ad41a0 commit 4bacea4
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion packages/multi-entry/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@

import { promise as matched } from 'matched';

const entry = '\0rollup:plugin-multi-entry:entry-point';
let entry;
if (process.platform === "win32") {
entry = '\0rollup\uA789plugin-multi-entry\uA789entry-point';
} else {
entry = '\0rollup:plugin-multi-entry:entry-point';
}

export default function multiEntry(conf) {
let include = [];
Expand Down

0 comments on commit 4bacea4

Please sign in to comment.