Hi folks! π
I am trying to setup microbundle for my project, but looks like I am missing something π
Nothing comes out of the output for microbundle build, as for microbundle watch the process just dies (with no error message either)
β© yarn run start
yarn run v1.5.1
$ microbundle watch
Watching source, compiling to dist:
β¨ Done in 1.35s.
β© yarn run build
yarn run v1.5.1
$ microbundle
Build output to dist:
β¨ Done in 1.14s.
I have the following setup in my package.json :
{
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"module": "dist/index.m.js",
"source": "src/index.js",
}
btw, this project uses // @flow, not sure if its related at all
Hi folks! π
I am trying to setup microbundle for my project, but looks like I am missing something π
Nothing comes out of the output for
microbundle build, as formicrobundle watchthe process just dies (with no error message either)I have the following setup in my
package.json:{ "main": "dist/index.js", "umd:main": "dist/index.umd.js", "module": "dist/index.m.js", "source": "src/index.js", }btw, this project uses
// @flow, not sure if its related at all