@univerkit/verso 1.0.0-beta.0 → 1.0.0-beta.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +18 -3
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # @univerkit/verso
2
2
 
3
- Verso is a focused release CLI for JavaScript workspaces that publish multiple
4
- packages at the same version. It updates package manifests, writes an
3
+ Verso is a focused release CLI for JavaScript packages and workspaces that
4
+ publish related packages at the same version. It updates package manifests, writes an
5
5
  Angular-style changelog, creates a release commit and tag, and pushes with
6
6
  `git push --follow-tags`.
7
7
 
@@ -38,7 +38,19 @@ Add a release script:
38
38
  }
39
39
  ```
40
40
 
41
- Create `verso.toml` in the project root:
41
+ Single-package projects can run without `verso.toml`. When the default
42
+ `verso.toml` is missing and `package.json` exists, Verso releases the root
43
+ package with built-in defaults.
44
+
45
+ Create `verso.toml` only when you need to customize behavior. Single-package
46
+ projects can start with:
47
+
48
+ ```toml
49
+ [version]
50
+ root_package = "package.json"
51
+ ```
52
+
53
+ Workspace projects can add package globs:
42
54
 
43
55
  ```toml
44
56
  [workspaces]
@@ -50,7 +62,10 @@ Then run:
50
62
  ```sh
51
63
  pnpm release
52
64
  pnpm release -- --dry-run
65
+ pnpm release -- --dry-run --json
53
66
  pnpm release -- --version 1.2.3 --yes
67
+ pnpm release -- init
68
+ pnpm release -- doctor
54
69
  pnpm release -- -V
55
70
  ```
56
71
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@univerkit/verso",
3
- "version": "1.0.0-beta.0",
3
+ "version": "1.0.0-beta.2",
4
4
  "description": "A focused release CLI for JavaScript workspace packages.",
5
5
  "license": "MIT",
6
6
  "author": "DreamNum Co., Ltd. <developer@univer.ai>",
@@ -45,14 +45,14 @@
45
45
  "provenance": true
46
46
  },
47
47
  "optionalDependencies": {
48
- "@univerkit/verso-darwin-arm64": "1.0.0-beta.0",
49
- "@univerkit/verso-darwin-x64": "1.0.0-beta.0",
50
- "@univerkit/verso-linux-arm64": "1.0.0-beta.0",
51
- "@univerkit/verso-linux-x64": "1.0.0-beta.0",
52
- "@univerkit/verso-win32-x64": "1.0.0-beta.0"
48
+ "@univerkit/verso-darwin-arm64": "1.0.0-beta.2",
49
+ "@univerkit/verso-darwin-x64": "1.0.0-beta.2",
50
+ "@univerkit/verso-linux-x64": "1.0.0-beta.2",
51
+ "@univerkit/verso-linux-arm64": "1.0.0-beta.2",
52
+ "@univerkit/verso-win32-x64": "1.0.0-beta.2"
53
53
  },
54
54
  "devDependencies": {
55
- "@types/node": "^26.0.0",
55
+ "@types/node": "^26.0.1",
56
56
  "typescript": "^6.0.3"
57
57
  },
58
58
  "scripts": {