Skip to content

Commit a7d33e3

Browse files
committed
chore: release v0.1.0-beta.1
1 parent 86d96fc commit a7d33e3

File tree

11 files changed

+1563
-28
lines changed

11 files changed

+1563
-28
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# [0.1.0-beta.1](https://github.com/yuzheng14/valype/compare/v0.0.11...v0.1.0-beta.1) (2025-08-05)
2+
3+
4+
### Features
5+
6+
* **plugin:** :sparkles: add rolldown support ([86d96fc](https://github.com/yuzheng14/valype/commit/86d96fc6203231caf446115b698695269780188a))
7+
* **vscode:** ✨ add vscode extension ([#34](https://github.com/yuzheng14/valype/issues/34)) ([323550e](https://github.com/yuzheng14/valype/commit/323550e3744bd5b21479cc759127499d6a6d1670))
8+
9+
10+
111
## [0.0.11](https://github.com/yuzheng14/valype/compare/v0.0.10...v0.0.11) (2025-07-15)
212

313
### Refactor

bun.lock

Lines changed: 1544 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

extensions/vscode/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "Valype",
44
"description": "A VS Code extension for valype.",
55
"publisher": "yuzheng14",
6-
"version": "0.0.11",
6+
"version": "0.1.0-beta.1",
77
"repository": {
88
"type": "git",
99
"url": "https://github.com/yuzheng14/valype.git"

language-tools/language-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@
1818
"scripts": {
1919
"build": "tsdown"
2020
},
21-
"version": "0.0.11"
21+
"version": "0.1.0-beta.1"
2222
}

language-tools/typescript-plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@valype/typescript-plugin",
33
"main": "./dist/index.cjs",
44
"type": "module",
5-
"version": "0.0.11",
5+
"version": "0.1.0-beta.1",
66
"devDependencies": {
77
"@types/bun": "latest"
88
},

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "valype-workspace",
3-
"version": "0.0.11",
3+
"version": "0.1.0-beta.1",
44
"author": "yuzheng14 <lyuchensy@foxmail.com>",
55
"devDependencies": {
66
"@eslint/css": "^0.10.0",

packages/plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "unplugin-valype",
33
"type": "module",
4-
"version": "0.0.11",
4+
"version": "0.1.0-beta.1",
55
"packageManager": "bun@1.2.15",
66
"description": "",
77
"license": "MIT",

packages/valype/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "valype",
3-
"version": "0.0.11",
3+
"version": "0.1.0-beta.1",
44
"author": "yuzheng14 <lyuchensy@foxmail.com>",
55
"description": "A typescript type definition validator for javascript.",
66
"license": "MIT",

playground/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "playground",
33
"private": true,
4-
"version": "0.0.11",
4+
"version": "0.1.0-beta.1",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

scripts/bump-version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ async function main() {
2323
Object.keys(lockData.workspaces).forEach((pkgKey) => {
2424
if (lockData.workspaces[pkgKey].version) {
2525
const path = ['workspaces', pkgKey, 'version']
26-
const edits = modify(lockFile, path, version, {})
26+
const edits = modify(modifiedContent, path, version, {})
2727
modifiedContent = applyEdits(modifiedContent, edits)
2828
}
2929
})

0 commit comments

Comments
 (0)