Skip to content

Commit

Permalink
v1.4.29
Browse files Browse the repository at this point in the history
  • Loading branch information
nshiab committed Oct 15, 2024
1 parent efb96ea commit 24c755f
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions deno.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "@nshiab/setup-sda",
"version": "1.4.27",
"version": "1.4.29",
"exports": "./setup-sda.mjs",
"tasks": {
"patch": "deno run -A incrementVersion.ts patch && npm publish",
"minor": "deno run -A incrementVersion.ts minor && npm publish",
"major": "deno run -A incrementVersion.ts major && npm publish"
"patch": "deno run -A incrementVersion.js patch && npm publish",
"minor": "deno run -A incrementVersion.js minor && npm publish",
"major": "deno run -A incrementVersion.js major && npm publish"
},
"nodeModulesDir": "auto"
}
}
2 changes: 1 addition & 1 deletion incrementVersion.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ writeFileSync(denoJsonPath, JSON.stringify(denoData, null, 2));

const packageJsonPath = "package.json";
const packageJsonData = JSON.parse(readFileSync(packageJsonPath, "utf-8"));
packageJsonData.version = data.version;
packageJsonData.version = denoData.version;
writeFileSync(packageJsonPath, JSON.stringify(packageJsonData, null, 2));

execSync("git add -A");
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "setup-sda",
"version": "1.4.27",
"version": "1.4.29",
"description": "Minimalist setup scripts for the JavaScript library simple-data-analysis.",
"main": "setup-sda.mjs",
"scripts": {
"patch": "node run incrementVersion.ts patch && npm publish",
"minor": "node run incrementVersion.ts patch && npm publish",
"major": "node run incrementVersion.ts patch && npm publish"
"patch": "node run incrementVersion.js patch && npm publish",
"minor": "node run incrementVersion.js patch && npm publish",
"major": "node run incrementVersion.js patch && npm publish"
},
"bin": {
"setup-sda": "setup-sda.mjs"
Expand All @@ -21,4 +21,4 @@
"url": "https://github.com/nshiab/setup-sda/issues"
},
"homepage": "https://github.com/nshiab/setup-sda#readme"
}
}

0 comments on commit 24c755f

Please sign in to comment.