@congruent-stack/monorepo 0.1.10 → 0.2.0
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.
- package/README.md +8 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -3,3 +3,11 @@ Typescript schema-first tooling for agnostic REST APIs.
|
|
|
3
3
|
|
|
4
4
|
### Version bump script
|
|
5
5
|
- pnpm pkgs:version:bump -- [patch/minor/major/x.y.z]
|
|
6
|
+
- don't forget to run the "root:version:bump" script too
|
|
7
|
+
- for release candidates you can
|
|
8
|
+
- pnpm pkgs:version:bump -- [prepatch/preminor/premajor]
|
|
9
|
+
- and then
|
|
10
|
+
- pnpm pkgs:version:bump -- prerelease
|
|
11
|
+
- to increase the rc counter
|
|
12
|
+
- the git tag is created by the github action instead of "pnpm version"
|
|
13
|
+
- --no-git-tag-version flag is provided within the script
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@congruent-stack/monorepo",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Typescript schema-first tooling for agnostic REST APIs.",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"author": "congruent-stack",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"vitest": "3.2.4"
|
|
11
11
|
},
|
|
12
12
|
"scripts": {
|
|
13
|
-
"pkgs:version:bump": "pnpm --filter \"./packages/**\" exec pnpm version --no-git-tag-version",
|
|
14
|
-
"root:version:bump": "pnpm exec pnpm version --no-git-tag-version"
|
|
13
|
+
"pkgs:version:bump": "pnpm --filter \"./packages/**\" exec pnpm version --no-git-tag-version --preid rc",
|
|
14
|
+
"root:version:bump": "pnpm exec pnpm version --no-git-tag-version --preid rc"
|
|
15
15
|
}
|
|
16
16
|
}
|