budo
budo copied to clipboard
ReferenceError: [BABEL] Unknown option
Hey,
I get the following error when I have a .babelrc file in my root directory. Babelify doesn't seem to like it?
I'm running budo with:
budo --title leonardo --port 3000 examples/index.js --watch-glob lib/**/* --css examples/style.css --live -- -t babelify -t glslify
and my babelrc looks like:
{
"presets": ["es2015"],
"plugins": [
["babel-plugin-module-alias", [
{ "src": "./src/core", "expose": "core" },
{ "src": "./src/geometry", "expose": "geometry" },
{ "src": "./src/utils", "expose": "utils" },
{ "src": "./src/helpers", "expose": "helpers" }
]
]
]
}
Any ideas?
Hey sorry, this issue totally slipped under my radar. Is it still happening in [email protected]?