@rindrics/initrepo 0.1.4 → 0.1.5

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/CHANGELOG.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # Changelog
2
2
 
3
+ ## [v0.1.5](https://github.com/Rindrics/initrepo/compare/v0.1.4...v0.1.5) - 2025-12-28
4
+ - fix: correct binary name by @Rindrics in https://github.com/Rindrics/initrepo/pull/18
5
+
3
6
  ## [v0.1.4](https://github.com/Rindrics/initrepo/compare/v0.1.3...v0.1.4) - 2025-12-28
4
7
  - ci: use Node.js 24 to use npm 11.6 by @Rindrics in https://github.com/Rindrics/initrepo/pull/15
5
8
 
package/dist/cli.js CHANGED
@@ -4207,11 +4207,11 @@ var {
4207
4207
  // package.json
4208
4208
  var package_default = {
4209
4209
  name: "@rindrics/initrepo",
4210
- version: "0.1.4",
4210
+ version: "0.1.5",
4211
4211
  description: "setup GitHub repo with dev tools",
4212
4212
  type: "module",
4213
4213
  bin: {
4214
- "repo-setup": "./dist/cli.js"
4214
+ initrepo: "./dist/cli.js"
4215
4215
  },
4216
4216
  scripts: {
4217
4217
  dev: "bun run src/cli.ts",
@@ -6,7 +6,7 @@ Accepted
6
6
 
7
7
  ## Context
8
8
 
9
- We are building `@rindrics/repo-setup`, a CLI tool that generates project scaffolding with:
9
+ We are building `@rindrics/initrepo`, a CLI tool that generates project scaffolding with:
10
10
 
11
11
  - CI/CD workflows (test, lint, tagpr, release)
12
12
  - husky configuration
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@rindrics/initrepo",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "setup GitHub repo with dev tools",
5
5
  "type": "module",
6
6
  "bin": {
7
- "repo-setup": "./dist/cli.js"
7
+ "initrepo": "./dist/cli.js"
8
8
  },
9
9
  "scripts": {
10
10
  "dev": "bun run src/cli.ts",