-
Notifications
You must be signed in to change notification settings - Fork 3
feat!: upgrade unplugin-vue to v7 and add release tooling #7
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,10 @@ | ||
| { | ||
| "$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
| "extends": ["config:base", "schedule:monthly", "group:allNonMajor"], | ||
| "extends": [ | ||
| "config:recommended", | ||
| "schedule:monthly", | ||
| "group:allNonMajor" | ||
| ], | ||
| "rangeStrategy": "bump", | ||
| "packageRules": [{ "depTypeList": ["peerDependencies"], "enabled": false }] | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| import { defineConfig } from 'bumpp'; | ||
|
|
||
| export default defineConfig({ | ||
| commit: 'Release v%s', | ||
| tag: false, | ||
| push: false, | ||
| }); |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,8 @@ | ||
| <script setup> | ||
| import './style.css'; | ||
| import { ref } from 'vue'; | ||
| const button = ref('Hello World!'); | ||
|
|
||
| const _button = ref('Hello World!'); | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The variable |
||
| </script> | ||
|
|
||
| <template> | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,7 @@ | ||
| <script setup> | ||
| import { ref } from 'vue'; | ||
| const card = ref('Hello World!'); | ||
|
|
||
| const _card = ref('Hello World!'); | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The variable |
||
| </script> | ||
|
|
||
| <template> | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Upgrading to
unplugin-vue@^7.1.1raises the effective runtime requirement to Node 20.19+, but this package still publishes without anengines.nodeconstraint, so consumers on Node 18 (or older Node 20 minors) can install successfully and only hit failures later when the plugin executes. Declaring the new engine floor inpackage.jsonwould make the breaking change explicit at install time and prevent unsupported environments from silently taking this release.Useful? React with 👍 / 👎.