Created
June 13, 2021 06:10
-
-
Save rdmurphy/b3a647ee09095895be8efe28d46e860b to your computer and use it in GitHub Desktop.
An example of [email protected] outputting incorrect default modules.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports =(n) { | |
return n * n; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export default function square(n) { | |
return n * n; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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