From dc16273e7dc19d46db133175cac228b94bc1635a Mon Sep 17 00:00:00 2001 From: Joshua Larks Date: Wed, 20 Mar 2024 17:19:49 -0500 Subject: [PATCH] Chore/base/tagging input (#566) * Update Tagging Input component and update README.md with new commands * up package version to 0.11.11 * Remove minification on publish --- vite-publish.config.js | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/vite-publish.config.js b/vite-publish.config.js index d7746ac2..e8d2692e 100644 --- a/vite-publish.config.js +++ b/vite-publish.config.js @@ -1,26 +1,27 @@ -import { resolve } from 'path'; -import { defineConfig } from 'vite'; -import { createVuePlugin } from 'vite-plugin-vue2'; +import { resolve } from "path"; +import { defineConfig } from "vite"; +import { createVuePlugin } from "vite-plugin-vue2"; export default defineConfig({ plugins: [createVuePlugin()], build: { - target: 'chrome61', + minify: false, + target: "chrome61", commonjsOptions: { requireReturnsDefault: true, }, lib: { - entry: resolve(__dirname, 'src/system.js'), - name: 'Beaker', + entry: resolve(__dirname, "src/system.js"), + name: "Beaker", fileName: (format) => `beaker.${format}.js`, }, rollupOptions: { - external: ['vue'], + external: ["vue"], output: { globals: { - vue: 'Vue' - } - } - } - } -}) \ No newline at end of file + vue: "Vue", + }, + }, + }, + }, +});