@repokit/core 4.0.5 → 4.0.6

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/Cargo.lock CHANGED
@@ -1013,7 +1013,7 @@ checksum = "a96887878f22d7bad8a3b6dc5b7440e0ada9a245242924394987b21cf2210a4c"
1013
1013
 
1014
1014
  [[package]]
1015
1015
  name = "repokit"
1016
- version = "4.0.5"
1016
+ version = "4.0.6"
1017
1017
  dependencies = [
1018
1018
  "alphanumeric-sort",
1019
1019
  "colored",
package/Cargo.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "repokit"
3
- version = "4.0.5"
3
+ version = "4.0.6"
4
4
  edition = "2024"
5
5
 
6
6
  [[bin]]
@@ -1,5 +1,5 @@
1
- import type { RegisterOptions } from "ts-node";
2
1
  import { register } from "ts-node";
2
+ import type { RegisterOptions } from "ts-node";
3
3
 
4
4
  import type { UnwrappedBrigdeOperation } from "./types";
5
5
 
@@ -1,4 +1,4 @@
1
- CURRENT_VERSION="4.0.5"
1
+ CURRENT_VERSION="4.0.6"
2
2
  CWD=$(pwd)
3
3
 
4
4
  REPLACEMENT="/node_modules"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@repokit/core",
3
- "version": "4.0.5",
3
+ "version": "4.0.6",
4
4
  "description": "A knowledgebase for your repository - wrapped in a CLI",
5
5
  "keywords": [
6
6
  "cli",
@@ -35,13 +35,12 @@
35
35
  "build:rust": "cargo build --release",
36
36
  "build:ts": "tsx devserver/run.ts",
37
37
  "clean:ts": "tsx devserver/run.ts -c",
38
- "grant:exec": "chmod -R +x ./installation",
39
38
  "install:rust": "pnpm build:rust && cargo install --path .",
40
39
  "lint:all": "pnpm lint:ts && pnpm lint:rust",
41
40
  "lint:rust": "cargo clippy --fix --allow-dirty",
42
41
  "lint:ts": "oxlint --type-aware --type-check --report-unused-disable-directives --fix && oxfmt",
43
42
  "package:ts": "pnpm lint:ts && pnpm lint:rust && pnpm build:ts",
44
- "postinstall": "pnpm grant:exec && ./installation/install.sh",
43
+ "postinstall": "chmod -R +x ./installation && ./installation/install.sh",
45
44
  "repokit": "pnpm install:rust && repokit",
46
45
  "run:dev": "pnpm build:ts && cargo run --package repokit --bin repokit",
47
46
  "watch:ts": "tsx devserver/run.ts -w"