Skip to content

Dev #31

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Oct 30, 2023
Merged

Dev #31

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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