ronami / minipack

📦 A simplified example of a modern module bundler written in JavaScript

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

here seems error

yanlee26 opened this issue · comments

const graph = createGraph('./example/entry.js');

To clarify on this issue :

The source is :

src/minipack.js,
line 246 :

const graph = createGraph('./example/entry.js');

should be

const graph = createGraph('../example/entry.js');

cheers

Eactly!