relion 0.41.0 → 0.41.1

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/dist/cli.js +1 -1
  2. package/package.json +13 -15
package/dist/cli.js CHANGED
@@ -16,4 +16,4 @@ Examples:
16
16
  - \`pnpm relion -f\` — generate release context file
17
17
  - \`pnpm relion -m Cargo.toml\` — use Cargo.toml as manifest
18
18
  - \`pnpm relion\` — run all release steps
19
- `),process.exit(0));let n=[/-\w*f/.test(t)&&`context`,/-\w*b/.test(t)&&`bump`,/-\w*c/.test(t)&&`commit`,/-\w*t/.test(t)&&`tag`].filter(Boolean);n.length||(n=[`context`,`bump`,`commit`,`tag`]);const r=/-v (\S+)/.exec(t)?.[1],i=/-m (\S+)/.exec(t)?.[1],a=/-\w*d/.test(t);e({flow:n,...r&&{newVersion:r},...i&&{manifest:i},...a&&{dryRun:a}});export{};
19
+ `),process.exit(0));let n=[/-\w*f/.test(t)&&`context`,/-\w*b/.test(t)&&`bump`,/-\w*c/.test(t)&&`commit`,/-\w*t/.test(t)&&`tag`].filter(Boolean);n.length||(n=[`context`,`bump`,`commit`,`tag`]);const r=/-v (\S+)/.exec(t)?.[1],i=/-m (\S+)/.exec(t)?.[1],a=/-\w*d/.test(t);e({flow:n,...r&&{newVersion:r},...i&&{manifest:i},...a&&{dryRun:a}}).catch(e=>{console.error(e),process.exit(1)});export{};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "relion",
3
- "version": "0.41.0",
3
+ "version": "0.41.1",
4
4
  "description": "🏷️ Modern Release Workflow Helper",
5
5
  "author": "kh4f <kh4f.dev@gmail.com>",
6
6
  "license": "MIT",
@@ -20,18 +20,16 @@
20
20
  "lint": "eslint",
21
21
  "release": "bun src/cli"
22
22
  },
23
- "dependencies": {
24
- "semver": "^7.7.4"
25
- },
26
- "devDependencies": {
27
- "@eslint/js": "^10.0.1",
28
- "@stylistic/eslint-plugin": "^5.9.0",
29
- "@types/node": "^25.3.3",
30
- "@types/semver": "^7.7.1",
31
- "eslint": "^10.0.2",
32
- "jiti": "^2.6.1",
33
- "tsdown": "^0.20.3",
34
- "typescript": "^5.9.3",
35
- "typescript-eslint": "^8.56.1"
36
- }
23
+ "dependencies": { "semver": "^7.7.4" },
24
+ "devDependencies": {
25
+ "@eslint/js": "^10.0.1",
26
+ "@stylistic/eslint-plugin": "^5.9.0",
27
+ "@types/node": "^25.3.3",
28
+ "@types/semver": "^7.7.1",
29
+ "eslint": "^10.0.2",
30
+ "jiti": "^2.6.1",
31
+ "tsdown": "^0.20.3",
32
+ "typescript": "^5.9.3",
33
+ "typescript-eslint": "^8.56.1"
34
+ }
37
35
  }