ubugeeei 3.0.0 → 3.1.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/README.md +1 -0
- package/dist/cli.mjs +5 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -48,6 +48,7 @@ Tasks / recent work / PR requests
|
|
|
48
48
|
- [relanote](https://github.com/ubugeeei/relanote): a music programming language based on relative intervals
|
|
49
49
|
- [Vapor Moon](https://github.com/ubugeeei/vapor-moon): a MoonBit-first SFC toolchain with Vue-like authoring and direct DOM / SSR output
|
|
50
50
|
- [Mbt on Rails](https://github.com/ubugeeei/mbt-on-rails): a MoonBit-first, Rails-inspired framework skeleton
|
|
51
|
+
- [ush](https://github.com/ubugeeei/ush): an experimental Rust shell that stays POSIX-first and compiles `.ush` to portable `sh`
|
|
51
52
|
|
|
52
53
|
## SELECTED POSTS
|
|
53
54
|
|
package/dist/cli.mjs
CHANGED
|
@@ -123,6 +123,11 @@ const projects = [
|
|
|
123
123
|
name: "Mbt on Rails",
|
|
124
124
|
url: "https://github.com/ubugeeei/mbt-on-rails",
|
|
125
125
|
description: "A MoonBit-first, Rails-inspired framework skeleton."
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
name: "ush",
|
|
129
|
+
url: "https://github.com/ubugeeei/ush",
|
|
130
|
+
description: "An experimental Rust shell that stays POSIX-first and compiles .ush to portable sh."
|
|
126
131
|
}
|
|
127
132
|
];
|
|
128
133
|
const blogPosts = [
|