mirror of
https://github.com/developit/microbundle.git
synced 2026-01-25 14:06:50 +00:00
* fix: css compilation problems when multiple entries * change minor to patch * refactor: options.output change to absMain * Apply suggestions from code review Co-authored-by: Ryan Christian <33403762+rschristian@users.noreply.github.com>
8 lines
126 B
JavaScript
8 lines
126 B
JavaScript
import './a.css';
|
|
|
|
export default function () {
|
|
const el = document.createElement('div');
|
|
el.className = 'a';
|
|
return el;
|
|
}
|