diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e3d96a..1635500 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ TBD [main] (@webdevnerdstuff) * Official release depends on when the Vue team decides if they are going to keep experimental `defineModel` feature. [Blog](https://blog.vuejs.org/posts/vue-3-3#definemodel) +## v1.0.0-beta-1.11 +10-30-2023 +[main] (@webdevnerdstuff) +* Fix vite config build after changing package name + ## v1.0.0-beta-1.10 10-30-2023 [main] (@webdevnerdstuff) diff --git a/dist/@wdns/vuetify-inline-fields.cjs.js b/dist/vuetify-inline-fields.cjs.js similarity index 99% rename from dist/@wdns/vuetify-inline-fields.cjs.js rename to dist/vuetify-inline-fields.cjs.js index e159f0d..3e92902 100644 --- a/dist/@wdns/vuetify-inline-fields.cjs.js +++ b/dist/vuetify-inline-fields.cjs.js @@ -1,6 +1,6 @@ "use strict";var Zl=Object.create;var Yt=Object.defineProperty;var Ql=Object.getOwnPropertyDescriptor;var ea=Object.getOwnPropertyNames;var na=Object.getPrototypeOf,ta=Object.prototype.hasOwnProperty;var oa=(n,o,t,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let r of ea(o))!ta.call(n,r)&&r!==t&&Yt(n,r,{get:()=>o[r],enumerable:!(l=Ql(o,r))||l.enumerable});return n};var Ee=(n,o,t)=>(t=n!=null?Zl(na(n)):{},oa(o||!n||!n.__esModule?Yt(t,"default",{value:n,enumerable:!0}):t,n));/** * @name @wdns/vuetify-inline-fields - * @version 1.0.0-beta-1.10 + * @version 1.0.0-beta-1.11 * @description Vuetify Inline Fields Component Library offers a comprehensive collection of reusable UI components to create elegant and efficient inline form fields within your applications. * @author WebDevNerdStuff & Bunnies... lots and lots of bunnies! (https://webdevnerdstuff.com) * @copyright Copyright 2023, WebDevNerdStuff diff --git a/dist/@wdns/vuetify-inline-fields.es.js b/dist/vuetify-inline-fields.es.js similarity index 99% rename from dist/@wdns/vuetify-inline-fields.es.js rename to dist/vuetify-inline-fields.es.js index 29150dd..5b43734 100644 --- a/dist/@wdns/vuetify-inline-fields.es.js +++ b/dist/vuetify-inline-fields.es.js @@ -3,7 +3,7 @@ import { useTheme as Sl } from "vuetify"; import { useWindowSize as oi } from "@vueuse/core"; /** * @name @wdns/vuetify-inline-fields - * @version 1.0.0-beta-1.10 + * @version 1.0.0-beta-1.11 * @description Vuetify Inline Fields Component Library offers a comprehensive collection of reusable UI components to create elegant and efficient inline form fields within your applications. * @author WebDevNerdStuff & Bunnies... lots and lots of bunnies! (https://webdevnerdstuff.com) * @copyright Copyright 2023, WebDevNerdStuff diff --git a/package.json b/package.json index 54bc566..3d9eb54 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@wdns/vuetify-inline-fields", - "version": "1.0.0-beta-1.10", + "version": "1.0.0-beta-1.11", "description": "Vuetify Inline Fields Component Library offers a comprehensive collection of reusable UI components to create elegant and efficient inline form fields within your applications.", "private": false, "publishConfig": { diff --git a/vite.build.config.ts b/vite.build.config.ts index d9447ca..14e943b 100644 --- a/vite.build.config.ts +++ b/vite.build.config.ts @@ -25,14 +25,16 @@ const banner = `/** */ `; +const pkgName = 'vuetify-inline-fields'; + export default defineConfig({ publicDir: false, build: { lib: { entry: './src/plugin/index.ts', - name: pkg.name, + name: pkgName, formats: ['es', 'cjs'], - fileName: format => `${pkg.name}.${format}.js`, + fileName: format => `${pkgName}.${format}.js`, }, rollupOptions: { input: {