We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 175e6cf commit f419c44Copy full SHA for f419c44
CHANGELOG.md
@@ -1,5 +1,8 @@
1
# Compiler Changes
2
3
+### v4.4.1
4
+- Fix bundle the esmodules directly into the cjs bundle
5
+
6
### v4.4.0
7
- Add allow the use of attributes on slot tags
8
build/rollup.node.config.js
@@ -1,9 +1,18 @@
+import commonjs from 'rollup-plugin-commonjs'
import defaultConfig from './rollup.config'
+import nodeResolve from 'rollup-plugin-node-resolve'
export default {
...defaultConfig,
+ plugins: [
+ nodeResolve({
9
+ modulesOnly: true
10
+ }),
11
+ commonjs()
12
+ ],
13
output: [{
14
file: './dist/index.js',
15
+ name: 'compiler',
16
format: 'cjs',
17
...defaultConfig.output
18
}, {
0 commit comments