Skip to content

Commit d8ae43f

Browse files
authored
fix: rollup to generate css file with proper name (#427)
1 parent 0ee7f9a commit d8ae43f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "frappe-charts",
3-
"version": "2.0.0-rc25",
3+
"version": "2.0.0-rc26",
44
"main": "dist/frappe-charts.esm.js",
55
"module": "dist/frappe-charts.esm.js",
66
"browser": "dist/frappe-charts.umd.js",

rollup.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export default [
2424
exclude: ['node_modules/**']
2525
}),
2626
terser(),
27-
scss({ output: 'dist/frappe-charts.min.css' }),
27+
scss({ fileName: 'frappe-charts.min.css' }),
2828
bundleSize()
2929
]
3030
},

0 commit comments

Comments
 (0)