Skip to content

Commit

Permalink
Chore/base/tagging input (#566)
Browse files Browse the repository at this point in the history
* Update Tagging Input component and update README.md with new commands

* up package version to 0.11.11

* Remove minification on publish
  • Loading branch information
joshua-larks authored Mar 20, 2024
1 parent 9c92f1e commit dc16273
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions vite-publish.config.js
Original file line number Diff line number Diff line change
@@ -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'
}
}
}
}
})
vue: "Vue",
},
},
},
},
});

0 comments on commit dc16273

Please sign in to comment.