@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 +1 -1
- package/Cargo.toml +1 -1
- package/externals/TSCompiler.ts +1 -1
- package/installation/install.sh +1 -1
- package/package.json +2 -3
package/Cargo.lock
CHANGED
package/Cargo.toml
CHANGED
package/externals/TSCompiler.ts
CHANGED
package/installation/install.sh
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@repokit/core",
|
|
3
|
-
"version": "4.0.
|
|
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": "
|
|
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"
|