Skip to content

Instantly share code, notes, and snippets.

@NickBeeuwsaert
Created October 15, 2020 00:01
Show Gist options
  • Save NickBeeuwsaert/e091e6dd45dc7c639fff91a87ee5fd7e to your computer and use it in GitHub Desktop.
Save NickBeeuwsaert/e091e6dd45dc7c639fff91a87ee5fd7e to your computer and use it in GitHub Desktop.
Sample to demonstrate microbundle not working with typescript and css modules
{
"scripts": {
"build:js": "microbundle -i test.js -o js_out/ -f modern",
"build:ts": "microbundle -i test.ts -o ts_out/ -f modern"
},
"dependencies": {
"microbundle": "^0.12.4"
}
}
import * as styles from "./test.module.css";
console.log(styles);
.btn {
color: red;
}
import * as styles from "./test.module.css";
console.log(styles);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment