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 79d6193 commit b828fbdCopy full SHA for b828fbd
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "rollup-plugin-css-only",
3
- "version": "4.5.3",
+ "version": "4.5.4",
4
"description": "Rollup plugin that bundles imported css",
5
"main": "dist/index.cjs",
6
"module": "dist/index.mjs",
src/index.mjs
@@ -1,4 +1,5 @@
import { createFilter } from '@rollup/pluginutils'
+import { parse } from 'node:path'
export default function css(options = {}) {
const filter = createFilter(options.include || ['**/*.css'], options.exclude)
0 commit comments