
Security News
npm Introduces minimumReleaseAge and Bulk OIDC Configuration
npm rolls out a package release cooldown and scalable trusted publishing updates as ecosystem adoption of install safeguards grows.
An extremely lightweight bundler than does nothing but bundles your css files using the import syntax.
An extremely lightweight bundler that does nothing but merge your css files using the import syntax.
The end result is you can use your css files directly in the browser without being bundled, or you can use the bundle. They should both be interchangeable.
You can import files via their relative path, or resolve them from node modules.
npm install --save-dev cssbun
(or) globally:
npm install --global cssbun
Check out the test scenarios here to see some example usages.
cssbun -o bundled.css css/index.css
Optional arguments are:
--watch (-w) [pattern] rerun when the files change (default pattern is '**/*.css')
--output (-o) fileName output the bundle to a file instead of to stdout
import cssbun from 'cssbun';
const bundled = cssbun('./css/index.css');
console.log(bundled);
To include another css file in your entrypoint (or any included file) use the @import feature:
Note: Any
@import url("???")will not be parsed, and will stay in your bundle as intended.
/* import a node module's main entrypoint */
@import "ress";
/* import a specific file from a node module */
@import "ress/dist/ress.min.css";
/* import a local file */
@import "./included.css";
/* import at runtime (don't bundle) */
@import url("https://unpkg.com/ress/dist/ress.min.css");
.test {
background-color: blue;
}
FAQs
An extremely lightweight bundler than does nothing but bundles your css files using the import syntax.
The npm package cssbun receives a total of 10 weekly downloads. As such, cssbun popularity was classified as not popular.
We found that cssbun demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
npm rolls out a package release cooldown and scalable trusted publishing updates as ecosystem adoption of install safeguards grows.

Security News
AI agents are writing more code than ever, and that's creating new supply chain risks. Feross joins the Risky Business Podcast to break down what that means for open source security.

Research
/Security News
Socket uncovered four malicious NuGet packages targeting ASP.NET apps, using a typosquatted dropper and localhost proxy to steal Identity data and backdoor apps.