Socket
Socket
Sign inDemoInstall

tsup-preset-solid

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tsup-preset-solid

Preset for building your SolidJS package with tsup.


Version published
Weekly downloads
1.5K
decreased by-33%
Maintainers
1
Weekly downloads
 
Created
Source

tsup-preset-solid

tsup-preset-solid

pnpm npm downloads

Preset for building your SolidJS packages with ease using tsup (powered by esbuild).

Features

  • Preconfigured - Just install, set your entries and you're done.

  • Fast - Uses esbuild under the hood.

  • SolidStart support - Includes solid export condition with preserved JSX.

  • Best practices - Ensures that the built library works well with Solid's tooling ecosystem.

  • Development and server entries - Creates a separate entry for development, server-side rendering and production form a single source.

  • Multiple entries - Supports multiple package entries. (submodules)

  • Automatic package.json configuration - Automatically writes export fields to package.json based on passed options.

Warning This preset is tailored towards a specific usage, mainly for primitives libraries or small headless libraries, so diverging from the happy path may cause unexpected results. Please report any issues you find.

Quick start

Install it:

npm i -D tsup tsup-preset-solid
# or
pnpm add -D tsup tsup-preset-solid

Add it to your tsup.config.ts

// tsup.config.ts
import { defineConfig } from 'tsup'
import * as preset from 'tsup-preset-solid'

const preset_options: preset.PresetOptions = {
    // array or single object
    entries: [
        // default entry (index)
        {
            // entries with '.tsx' extension will have `solid` export condition generated
            entry: 'src/index.tsx',
            // set `true` or pass a specific path to generate a development-only entry
            dev_entry: 'src/dev.tsx',
            // set `true` or pass a specific path to generate a server-only entry
            server_entry: true,
        },
        {
            // non-default entries with "index" filename should have a name specified
            name: 'additional',
            entry: 'src/additional/index.ts',
            dev_entry: true,
        },
        {
            entry: 'src/shared.ts',
        },
    ],
    // Setting `true` will remove all `console.*` calls and `debugger` statements
    drop_console: true,
    // Setting `true` will generate a CommonJS build alongside ESM (default: `false`)
    cjs: true,
}

export default defineConfig(config => {
    const watching = !!config.watch

    const parsed_options = preset.parsePresetOptions(preset_options, watching)

    if (!watching) {
        const package_fields = preset.generatePackageExports(parsed_options)

        console.log(`package.json: \n\n${JSON.stringify(package_fields, null, 2)}\n\n`)

        /*
            will update ./package.json with the correct export fields
        */
        preset.writePackageJson(package_fields)
    }

    return preset.generateTsupOptions(parsed_options)
})

Add scripts to your package.json

{
    "scripts": {
        "build": "tsup",
        "dev": "tsup --watch"
    }
}

Usage gotchas

  1. solid export condition

    This preset will automatically add solid export condition to your package.json if you have any .tsx entry files. This is required for SolidStart to work properly.

  2. "type": "module"

    This preset requires your package to be a module.

  3. Needs ESM

    This preset requires your package to be ESM. If you want to support CJS additionally, you can set cjs: true in the options. Other export format are not supported.

  4. development-only solid export issue

    Currently SolidStart has an issue with development and solid export condition. (solid-start issue)

    This can be "fixed" by overriding the @rollup/plugin-node-resolve dependency in your package.json:

    {
        "pnpm": {
            "overrides": {
                "@rollup/plugin-node-resolve": "13.3.0"
            }
        }
    }
    

Keywords

FAQs

Package last updated on 21 Jul 2023

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc