rust-just 1.39.0 → 1.40.0
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 +26 -0
- package/README.md +3 -3
- package/package.json +20 -17
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,32 @@
|
|
|
1
1
|
Changelog
|
|
2
2
|
=========
|
|
3
3
|
|
|
4
|
+
[1.40.0](https://github.com/casey/just/releases/tag/1.40.0) - 2025-03-09
|
|
5
|
+
------------------------------------------------------------------------
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- Allow the target of aliases to be recipes in submodules ([#2632](https://github.com/casey/just/pull/2632) by [corvusrabus](https://github.com/corvusrabus))
|
|
9
|
+
- Make `--list-submodules` require `--list` ([#2622](https://github.com/casey/just/pull/2622) by [casey](https://github.com/casey))
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
- Star parameters may follow default parameters ([#2660](https://github.com/casey/just/pull/2660) by [casey](https://github.com/casey))
|
|
13
|
+
|
|
14
|
+
### Misc
|
|
15
|
+
- Remove `test!` macro from readme ([#2648](https://github.com/casey/just/pull/2648) by [casey](https://github.com/casey))
|
|
16
|
+
- Sort enum variant, struct member, and trait members alphabetically ([#2646](https://github.com/casey/just/pull/2646) by [casey](https://github.com/casey))
|
|
17
|
+
- Add Zed extension to readme ([#2640](https://github.com/casey/just/pull/2640) by [sectore](https://github.com/sectore))
|
|
18
|
+
- Refactor error checking in choose function ([#2643](https://github.com/casey/just/pull/2643) by [casey](https://github.com/casey))
|
|
19
|
+
- Use `Test` struct instead of `test!` macro ([#2642](https://github.com/casey/just/pull/2642) by [casey](https://github.com/casey))
|
|
20
|
+
- Include unicode codepoint in unknown start of token error ([#2637](https://github.com/casey/just/pull/2637) by [CramBL](https://github.com/CramBL))
|
|
21
|
+
- Ignore broken pipe error from chooser ([#2639](https://github.com/casey/just/pull/2639) by [casey](https://github.com/casey))
|
|
22
|
+
- Guarantee that `Namepath`s are non-empty ([#2638](https://github.com/casey/just/pull/2638) by [casey](https://github.com/casey))
|
|
23
|
+
- Remove unnecessary binding modifiers ([#2636](https://github.com/casey/just/pull/2636) by [casey](https://github.com/casey))
|
|
24
|
+
- Document Vim and Neovim built-in syntax highlighting ([#2619](https://github.com/casey/just/pull/2619) by [laniakea64](https://github.com/laniakea64))
|
|
25
|
+
- Remove rust:just Repology badge ([#2614](https://github.com/casey/just/pull/2614) by [laniakea64](https://github.com/laniakea64))
|
|
26
|
+
- Clarify --list argument ([#2609](https://github.com/casey/just/pull/2609) by [casey](https://github.com/casey))
|
|
27
|
+
- Expand Windows path documentation ([#2602](https://github.com/casey/just/pull/2602) by [casey](https://github.com/casey))
|
|
28
|
+
- Fix readme typos ([#2596](https://github.com/casey/just/pull/2596) by [CramBL](https://github.com/CramBL))
|
|
29
|
+
|
|
4
30
|
[1.39.0](https://github.com/casey/just/releases/tag/1.39.0) - 2025-01-22
|
|
5
31
|
------------------------------------------------------------------------
|
|
6
32
|
|
package/README.md
CHANGED
|
@@ -48,7 +48,7 @@ The recommended way to install `rust-just` is as a global dependency:
|
|
|
48
48
|
and then run with:
|
|
49
49
|
|
|
50
50
|
```
|
|
51
|
-
~/$
|
|
51
|
+
~/$ just [OPTIONS] [ARGUMENTS]...
|
|
52
52
|
```
|
|
53
53
|
|
|
54
54
|
### Installation as local dependency
|
|
@@ -59,12 +59,12 @@ and then run with:
|
|
|
59
59
|
~/$ npm install rust-just
|
|
60
60
|
```
|
|
61
61
|
|
|
62
|
-
> **Note:** To pass Execa options to `
|
|
62
|
+
> **Note:** To pass Execa options to `just`, use the `--execaoptions <OPTIONS>` flag, where `OPTIONS` is in JSON format.
|
|
63
63
|
>
|
|
64
64
|
> For example:
|
|
65
65
|
>
|
|
66
66
|
> ```
|
|
67
|
-
> ~/$
|
|
67
|
+
> ~/$ just --execaoptions '{"stdio": "inherit", "reject": false}' [OPTIONS] [ARGUMENTS]...
|
|
68
68
|
> ```
|
|
69
69
|
>
|
|
70
70
|
> For a complete list of available Execa options, refer to the [Execa API documentation](https://github.com/sindresorhus/execa/blob/main/docs/api.md#options-1).
|
package/package.json
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rust-just",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.40.0",
|
|
4
4
|
"description": "🤖 Just a command runner",
|
|
5
|
-
"bin":
|
|
5
|
+
"bin": {
|
|
6
|
+
"just": "lib/index.mjs",
|
|
7
|
+
"rust-just": "lib/index.mjs"
|
|
8
|
+
},
|
|
6
9
|
"exports": {
|
|
7
10
|
".": {
|
|
8
11
|
"import": "./lib/index.mjs"
|
|
@@ -37,25 +40,25 @@
|
|
|
37
40
|
},
|
|
38
41
|
"homepage": "https://github.com/gnpaone/rust-just/tree/master/npm#readme",
|
|
39
42
|
"dependencies": {
|
|
40
|
-
"execa": "^9.
|
|
43
|
+
"execa": "^9.5.2",
|
|
41
44
|
"yargs": "^17.7.2"
|
|
42
45
|
},
|
|
43
46
|
"devDependencies": {
|
|
44
|
-
"@types/node": "^
|
|
45
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
46
|
-
"@typescript-eslint/parser": "^
|
|
47
|
-
"eslint": "^
|
|
48
|
-
"tsup": "^8.
|
|
49
|
-
"typescript": "^5.
|
|
47
|
+
"@types/node": "^22.10.10",
|
|
48
|
+
"@typescript-eslint/eslint-plugin": "^8.21.0",
|
|
49
|
+
"@typescript-eslint/parser": "^8.21.0",
|
|
50
|
+
"eslint": "^9.18.0",
|
|
51
|
+
"tsup": "^8.3.5",
|
|
52
|
+
"typescript": "^5.7.3"
|
|
50
53
|
},
|
|
51
54
|
"optionalDependencies": {
|
|
52
|
-
"rust-just-darwin-arm64": "1.
|
|
53
|
-
"rust-just-darwin-x64": "1.
|
|
54
|
-
"rust-just-linux-arm": "1.
|
|
55
|
-
"rust-just-linux-arm64": "1.
|
|
56
|
-
"rust-just-linux-x64": "1.
|
|
57
|
-
"rust-just-windows-arm64": "1.
|
|
58
|
-
"rust-just-windows-x64": "1.
|
|
55
|
+
"rust-just-darwin-arm64": "1.40.0",
|
|
56
|
+
"rust-just-darwin-x64": "1.40.0",
|
|
57
|
+
"rust-just-linux-arm": "1.40.0",
|
|
58
|
+
"rust-just-linux-arm64": "1.40.0",
|
|
59
|
+
"rust-just-linux-x64": "1.40.0",
|
|
60
|
+
"rust-just-windows-arm64": "1.40.0",
|
|
61
|
+
"rust-just-windows-x64": "1.40.0"
|
|
59
62
|
},
|
|
60
63
|
"eslintConfig": {
|
|
61
64
|
"extends": [
|
|
@@ -71,7 +74,7 @@
|
|
|
71
74
|
],
|
|
72
75
|
"root": true
|
|
73
76
|
},
|
|
74
|
-
"packageManager": "yarn@4.
|
|
77
|
+
"packageManager": "yarn@4.6.0",
|
|
75
78
|
"publishConfig": {
|
|
76
79
|
"access": "public"
|
|
77
80
|
},
|