Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@ignsg/vite-build-tools

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ignsg/vite-build-tools

Install using your favorite package manager, eg. `yarn add @ignsg/vite-build-tools`.

  • 0.2.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

@ignsg/vite-build-tools

Install using your favorite package manager, eg. yarn add @ignsg/vite-build-tools.

@ignsg/vite-build-tools/vite-plugin-entries

This plugin is meant to simplify management of multi-entry libraries. You provide a build configuration as the input to the plugin inside of your vite.config.ts and it will take care of building all of your entry points and then creating the appropriate exports inside your package.json.

Example

// vite.config.ts

import entriesPlugin, {
    PluginOptions as ViteBuildPluginOptions,
} from "@ignsg/vite-build-tools/vite-plugin-entries";

const buildConfig: ViteBuildPluginOptions = {
    formats: ["es"],
    entries: [
        {
            sourcePath: "./src/index.ts",
            outputPath: "lib/output",
            exports: {
                isMain: true,
            },
        },
        {
            sourcePath: "./src/folder/index.ts",
            outputPath: "lib/otherOutput",
            exports: {
                exportPath: "./awesome",
            },
        },
    ],
};

export default {
    plugins: [entriesPlugin(buildConfig)],
};

Will generate the folder structure:

- dist
  |- lib
    |- output-[hash].es.js
    |- otherOutput-[hash].es.js

And modify the package.json like so:

{
    ...,
    "#exports": "Generated automatically ..."
    "exports": {
        ".": {
            "import": "./dist/lib/output-[hash].es.js",
            "default": "./dist/lib/output-[hash].es.js",
        },
        "./awesome": {
            "import": "./dist/lib/otherOutput-[hash].es.js",
            "default": "./dist/lib/otherOutput-[hash].es.js",
        }
    }
    ...,
}

To learn about other configuration options check out src/types.ts

@ignsg/vite-build-tools/vite-plugin-dts

This plugin goes hand-in-hand with @ignsg/vite-build-tools/vite-plugin-entries to augment the generated output with lightweight type definitions (uncompiled - referencing the source). It also adds these paths to the type definitions to the exports field in your package.json.

Example

import entriesPlugin, { PluginOptions as ViteBuildPluginOptions } from "@ignsg/vite-build-tools/vite-plugin-entries";
import dtsPlugin from "@ignsg/vite-build-tools/vite-plugin-dts";

const buildConfig: ViteBuildPluginOptions = ...;

export default {
    plugins: [entriesPlugin(buildConfig), dtsPlugin(buildConfig)],
}

Will generate the following structure (amended from above):

- dist
  |- lib
    |- ...
    |- output-[hash].d.ts

And modify the package.json like so:

{
    ...
    "exports": {
        ".": {
            "types": "./dist/lib/output-[hash].d.ts",
            ...
        },
        "./awesome": {
            "types": "./dist/lib/otherOutput-[hash].d.ts",
            ...
        }
    }
    ...,
}

Of course this library is using itself for the build configuration. Take a look at vite.config.ts to check out how it works. Enjoy 🎉

FAQs

Package last updated on 14 Jan 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