npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

rollup-preset-solid

v3.0.0

Published

Rollup preset for solid libraries

Downloads

1,449

Readme

Solid Rollup Preset

A small opinionated preset for rollup to bundle your solid libraries with rollup.

Features out of the box:

  • Automatic TypeScript
  • Minimal - two lines config
  • No lock-in - you are in total control of the rollup config
  • Best practices for publishing solid libraries by compiling for esm, cjs, jsx, umd and tsc
  • Automatically clean dist folder on build

Usage

  1. Install with your favorite package manager:
npm install -D rollup-preset-solid rollup
pnpm add -D rollup-preset-solid rollup
yarn add -D rollup-preset-solid rollup
  1. Import 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();
  1. Configure your package.json
{
  "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"
    }
  }
}

API

withSolid(options?: Options | Options[]): RollupOptions | RollupOptions[]

The default export. A wrapper function that accepts all of the rollup options and a few extra to configure what to generate.

Options

The options are the exact same as Rollup with a few extra that are specific to the wrapper

Interface

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;
}

Example

// 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 },
]);

IIFE Builds

When building with the IIFE format, the preset marks certain Solid packages (such as "solid-js", "solid-js/web", and "solid-js/store") as external by default. This means they are not bundled into your output and instead are expected to be provided as globals. You have two options:

  1. Bundle the Solid Modules
    Override the external list so that these modules are included in your IIFE bundle. For example:

    // rollup.config.js
    import withSolid from "rollup-preset-solid";
    
    export default withSolid({
      input: "App.tsx",
      external: [], // Override default externals to bundle everything
      output: {
        dir: "dist",
        format: "iife",
        sourcemap: false,
      },
    });
  2. Provide Global Mappings
    Keep the modules external and specify globals by using the globals option. For example:

    // rollup.config.js
    import withSolid from "rollup-preset-solid";
    
    export default withSolid({
      input: "App.tsx",
      output: {
        dir: "dist",
        format: "iife",
        sourcemap: false,
        globals: {
          "solid-js/web": "SolidWeb",
          // add mappings for "solid-js" and "solid-js/store" if needed
        },
      },
    });

Internally the preset adds these packages to the default external array by reading your package's dependencies and peerDependencies. For IIFE builds you must either bundle them or provide the expected globals. This ensures that your browser bundle works as intended.