Skip to content

Instantly share code, notes, and snippets.

@rdmurphy
Created June 13, 2021 06:10
Show Gist options
  • Save rdmurphy/b3a647ee09095895be8efe28d46e860b to your computer and use it in GitHub Desktop.
Save rdmurphy/b3a647ee09095895be8efe28d46e860b to your computer and use it in GitHub Desktop.
An example of [email protected] outputting incorrect default modules.
module.exports =(n) {
return n * n;
}
export default function square(n) {
return n * n;
}
{
"name": "bundt-demo",
"version": "0.0.0",
"description": "",
"main": "build.js",
"scripts": {
"build": "bundt index.js"
},
"keywords": [],
"devDependencies": {
"bundt": "^1.1.3"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment