rudel 0.4.0 → 0.7.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/LICENSE +1 -1
- package/README.md +11 -1
- package/package.json +2 -2
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -8,5 +8,15 @@ and exit codes continue through the Opaline CLI. The alias prints
|
|
|
8
8
|
canonical CLI without changing stdout. New installations should use:
|
|
9
9
|
|
|
10
10
|
```bash
|
|
11
|
-
npm install --global
|
|
11
|
+
npm install --global opaline
|
|
12
12
|
```
|
|
13
|
+
|
|
14
|
+
Existing users can keep installing and updating `rudel`. It is released with
|
|
15
|
+
`opaline` and `@opalinehq/cli` and depends on the exact matching CLI version.
|
|
16
|
+
Both `rudel` and `opaline` keep using the same `~/.rudel` state directory.
|
|
17
|
+
Running `rudel upload` installs hooks using the `rudel` executable, so no
|
|
18
|
+
separate global `opaline` installation is required.
|
|
19
|
+
|
|
20
|
+
## License
|
|
21
|
+
|
|
22
|
+
Copyright (c) 2026 Opaline Labs, Inc. Licensed under [MIT](LICENSE).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rudel",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Compatibility alias for the Opaline CLI",
|
|
6
6
|
"license": "MIT",
|
|
@@ -31,6 +31,6 @@
|
|
|
31
31
|
"README.md"
|
|
32
32
|
],
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@opalinehq/cli": "0.
|
|
34
|
+
"@opalinehq/cli": "0.7.0"
|
|
35
35
|
}
|
|
36
36
|
}
|