0.0.0 • Published 1 year ago

unplugin-json v0.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

unplugin-json

NPM version

Starter template for unplugin.

Template Usage

To use this template, clone it down using:

npx degit kirklin/unplugin-json my-unplugin

And do a global replace of unplugin-json with your plugin name.

Then you can start developing your unplugin 🔥

To test your plugin, run: pnpm run dev To release a new version, run: pnpm run release

Install

npm i unplugin-json
// vite.config.ts
import Starter from "unplugin-json/vite";

export default defineConfig({
  plugins: [
    Starter({ /* options */ }),
  ],
});

Example: playground/

// rollup.config.js
import Starter from "unplugin-json/rollup";

export default {
  plugins: [
    Starter({ /* options */ }),
  ],
};

// webpack.config.js
module.exports = {
  /* ... */
  plugins: [
    require("unplugin-json/webpack")({ /* options */ })
  ]
};

// nuxt.config.js
export default {
  buildModules: [
    ["unplugin-json/nuxt", { /* options */ }],
  ],
};

This module works for both Nuxt 2 and Nuxt Vite

// vue.config.js
module.exports = {
  configureWebpack: {
    plugins: [
      require("unplugin-json/webpack")({ /* options */ }),
    ],
  },
};

// esbuild.config.js
import { build } from "esbuild";
import Starter from "unplugin-json/esbuild";

build({
  plugins: [Starter()],
});

License

MIT License © 2022 Kirk Lin