Skip to content

Commit

Permalink
Merge pull request #31 from webdevnerdstuff/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
webdevnerdstuff authored Oct 30, 2023
2 parents 0bfc30c + 2a261b5 commit abbda71
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -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! <webdevnerdstuff@gmail.com> (https://webdevnerdstuff.com)
* @copyright Copyright 2023, WebDevNerdStuff
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
6 changes: 4 additions & 2 deletions vite.build.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down

0 comments on commit abbda71

Please sign in to comment.