@repokit/core 2.0.4 → 2.0.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/Cargo.lock +1 -1
- package/Cargo.toml +1 -1
- package/README.md +1 -1
- package/installation/install.sh +1 -1
- package/internals/internal_commands/help.rs +1 -1
- package/package.json +2 -1
package/Cargo.lock
CHANGED
package/Cargo.toml
CHANGED
package/README.md
CHANGED
|
@@ -232,7 +232,7 @@ If your command needs to reason about the file system, keep this in mind.
|
|
|
232
232
|
|
|
233
233
|
I worked in a codebase at Google that used just about every programming language in existence. Each team had their own methodology for exposing commands, scripts, and API's for their team's day-to-day development needs.
|
|
234
234
|
|
|
235
|
-
Some teams used shell scripts, some used a tool called `bazel`, and some relied on good old `python ./path/to/my-script.py` or something similar.
|
|
235
|
+
Some teams used shell scripts, some used a tool called `bazel`, and some relied on good old `python ./path/to/my-script.py` (or something similar).
|
|
236
236
|
|
|
237
237
|
For engineers new and old to onboard to new features, they were often left stuck combing through these undocumented scripts and tools - tracking down environment variables, positionals, and flags to get necessary commands to succeed.
|
|
238
238
|
|
package/installation/install.sh
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@repokit/core",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.5",
|
|
4
4
|
"description": "A knowledgebase for your repository - wrapped in a CLI",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli",
|
|
@@ -37,6 +37,7 @@
|
|
|
37
37
|
"clean:ts": "tsx devserver/run.ts -c",
|
|
38
38
|
"grant:exec": "chmod -R +x ./installation",
|
|
39
39
|
"install:rust": "yarn build:rust && cargo install --path .",
|
|
40
|
+
"lint:all": "yarn lint:ts && yarn lint:rust",
|
|
40
41
|
"lint:rust": "cargo clippy --fix --allow-dirty",
|
|
41
42
|
"lint:ts": "yarn oxlint --type-aware --type-check --report-unused-disable-directives --fix && yarn oxfmt",
|
|
42
43
|
"package:ts": "yarn lint:ts && yarn lint:rust && yarn build:ts",
|