Skip to content

Commit abbda71

Browse files
Merge pull request #31 from webdevnerdstuff/dev
Dev
2 parents 0bfc30c + 2a261b5 commit abbda71

5 files changed

+12
-5
lines changed

Diff for: CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ TBD
66
[main] (@webdevnerdstuff)
77
* 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)
88

9+
## v1.0.0-beta-1.11
10+
10-30-2023
11+
[main] (@webdevnerdstuff)
12+
* Fix vite config build after changing package name
13+
914
## v1.0.0-beta-1.10
1015
10-30-2023
1116
[main] (@webdevnerdstuff)

Diff for: dist/@wdns/vuetify-inline-fields.cjs.js renamed to dist/vuetify-inline-fields.cjs.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: dist/@wdns/vuetify-inline-fields.es.js renamed to dist/vuetify-inline-fields.es.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { useTheme as Sl } from "vuetify";
33
import { useWindowSize as oi } from "@vueuse/core";
44
/**
55
* @name @wdns/vuetify-inline-fields
6-
* @version 1.0.0-beta-1.10
6+
* @version 1.0.0-beta-1.11
77
* @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.
88
* @author WebDevNerdStuff & Bunnies... lots and lots of bunnies! <[email protected]> (https://webdevnerdstuff.com)
99
* @copyright Copyright 2023, WebDevNerdStuff

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@wdns/vuetify-inline-fields",
3-
"version": "1.0.0-beta-1.10",
3+
"version": "1.0.0-beta-1.11",
44
"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.",
55
"private": false,
66
"publishConfig": {

Diff for: vite.build.config.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,16 @@ const banner = `/**
2525
*/
2626
`;
2727

28+
const pkgName = 'vuetify-inline-fields';
29+
2830
export default defineConfig({
2931
publicDir: false,
3032
build: {
3133
lib: {
3234
entry: './src/plugin/index.ts',
33-
name: pkg.name,
35+
name: pkgName,
3436
formats: ['es', 'cjs'],
35-
fileName: format => `${pkg.name}.${format}.js`,
37+
fileName: format => `${pkgName}.${format}.js`,
3638
},
3739
rollupOptions: {
3840
input: {

0 commit comments

Comments
 (0)