@hacksmith/doraval 0.2.13 → 0.2.14

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/bin/doraval.js +2 -1
  2. package/package.json +2 -1
package/bin/doraval.js CHANGED
@@ -3454,7 +3454,7 @@ init_dist();
3454
3454
  // package.json
3455
3455
  var package_default = {
3456
3456
  name: "@hacksmith/doraval",
3457
- version: "0.2.13",
3457
+ version: "0.2.14",
3458
3458
  author: "Saif",
3459
3459
  repository: {
3460
3460
  type: "git",
@@ -3500,6 +3500,7 @@ var package_default = {
3500
3500
  test: "bun test",
3501
3501
  prepublishOnly: `bun run build && node -e "const p=require('./package.json'),j=require('./jsr.json');if(p.version!==j.version){console.error('Version mismatch: package.json='+p.version+' jsr.json='+j.version);process.exit(1)}"`,
3502
3502
  bump: "bun run scripts/bump.ts",
3503
+ release: "bun run scripts/release.ts",
3503
3504
  "jsr:publish": "bunx jsr publish",
3504
3505
  "site:dev": "cd apps/website && bun run dev",
3505
3506
  "site:build": "cd apps/website && bun run build",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hacksmith/doraval",
3
- "version": "0.2.13",
3
+ "version": "0.2.14",
4
4
  "author": "Saif",
5
5
  "repository": {
6
6
  "type": "git",
@@ -46,6 +46,7 @@
46
46
  "test": "bun test",
47
47
  "prepublishOnly": "bun run build && node -e \"const p=require('./package.json'),j=require('./jsr.json');if(p.version!==j.version){console.error('Version mismatch: package.json='+p.version+' jsr.json='+j.version);process.exit(1)}\"",
48
48
  "bump": "bun run scripts/bump.ts",
49
+ "release": "bun run scripts/release.ts",
49
50
  "jsr:publish": "bunx jsr publish",
50
51
  "site:dev": "cd apps/website && bun run dev",
51
52
  "site:build": "cd apps/website && bun run build",