Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
@serenity-ui/rollup-preset-solid
Advanced tools
A small opinionated preset for rollup to bundle your solid libraries with rollup.
Features out of the box:
esm
, cjs
, jsx
, umd
and tsc
dist
folder on buildnpm install -D rollup-preset-solid rollup
pnpm add -D rollup-preset-solid rollup
yarn add -D rollup-preset-solid rollup
withConfig
in your rollup.config.js
. The first and only argument is (optionally) your rollup config:// rollup.config.js
import withSolid from "rollup-preset-solid";
export default withSolid();
{
"name": "my-lib",
"// This is optional but this remove the need to manually configure the source input for rollup": "",
"source": "src/my-lib.tsx",
"// All the following properties will be hinted during build": "",
"// You will just have to copy paste them": "",
"main": "dist/cjs/my-lib.js",
"module": "dist/esm/my-lib.js",
"types": "dist/types/my-lib.d.ts",
"files": ["dist"],
"exports": {
".": {
"solid": "./dist/source/my-lib.jsx",
"import": "./dist/esm/my-lib.js",
"browser": "./dist/esm/my-lib.js",
"require": "./dist/cjs/my-lib.js",
"node": "./dist/cjs/my-lib.js"
}
}
}
The default export. A wrapper function that accepts all of the rollup options and a few extra to configure what to generate.
The options are the exact same as Rollup with a few extra that are specific to the wrapper
interface Options extends RollupOptions {
/**
* Defines which target you want
* @default ['esm']
*/
targets?: ModuleFormat[];
/**
* Whether to generate a package.json or not
* This is useful for sub packages
* @default false
*/
writePackageJson?: boolean;
/**
* Whether to hint what to put in your package.json or not
* @default false
*/
printInstructions?: boolean;
}
// rollup.config.js
import withSolid from "rollup-preset-solid";
export default withSolid([
{ input: "browser.ts", targets: ["esm"] },
{ input: "server.ts", targets: ["esm", "cjs"], writePackageJson: true },
]);
FAQs
Rollup preset for solid libraries
We found that @serenity-ui/rollup-preset-solid 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
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.