{"library":"rollup-plugin-css-asset","title":"rollup-plugin-css-asset","description":"A Rollup plugin that bundles imported CSS files into a separate CSS asset file, respecting Rollup's asset handling and sourcemap options. Version 1.0.2 is the current stable release; the plugin is in maintenance mode with no recent updates. It differentiates from other CSS plugins by focusing on simplicity: no post-processing, no JS injection, just emitting CSS as a Rollup asset with hashing and path customization. Requires Rollup >=1.19.0.","language":"javascript","status":"maintenance","last_verified":"Mon Apr 27","install":{"commands":["npm install rollup-plugin-css-asset"],"cli":null},"imports":["import css from 'rollup-plugin-css-asset'","import { css } from 'rollup-plugin-css-asset'","import css from 'rollup-plugin-css-asset'"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"// rollup.config.js\nimport css from 'rollup-plugin-css-asset';\n\nexport default {\n  input: 'src/index.js',\n  output: {\n    dir: 'dist',\n    format: 'es',\n    sourcemap: true,\n    assetFileNames: 'assets/[name]-[hash][extname]',\n  },\n  plugins: [\n    css({\n      name: 'bundle',\n    }),\n  ],\n};","lang":"javascript","description":"Basic Rollup configuration using rollup-plugin-css-asset to bundle CSS into a separate asset file with hashing and sourcemaps.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}