ubugeeei 3.0.0 → 3.1.1

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 CHANGED
@@ -1,3 +1,5 @@
1
+ <img width="300" src="https://github.com/ubugeeei/sponsors/blob/main/sponsors-transparent.png?raw=true">
2
+
1
3
  # UBUGEEEI(1)
2
4
 
3
5
  ## NAME
@@ -48,6 +50,9 @@ Tasks / recent work / PR requests
48
50
  - [relanote](https://github.com/ubugeeei/relanote): a music programming language based on relative intervals
49
51
  - [Vapor Moon](https://github.com/ubugeeei/vapor-moon): a MoonBit-first SFC toolchain with Vue-like authoring and direct DOM / SSR output
50
52
  - [Mbt on Rails](https://github.com/ubugeeei/mbt-on-rails): a MoonBit-first, Rails-inspired framework skeleton
53
+ - [corsa-bind](https://github.com/ubugeeei/corsa-bind): Rust and Node bindings plus orchestration layers for typescript-go over stdio
54
+ - [tnix](https://github.com/ubugeeei/tnix): a gradual type system and tooling stack for Nix that compiles `.tnix` to `.nix`
55
+ - [ush](https://github.com/ubugeeei/ush): an experimental Rust shell that stays POSIX-first and compiles `.ush` to portable `sh`
51
56
 
52
57
  ## SELECTED POSTS
53
58
 
@@ -81,6 +86,3 @@ Tasks / recent work / PR requests
81
86
  - [vuejs/vue-vapor](https://github.com/vuejs/vue-vapor)
82
87
  - [vuejs-jp/vuefes-2025-website](https://github.com/vuejs-jp/vuefes-2025-website)
83
88
 
84
- ## SUPPORT
85
-
86
- ![Sponsors](https://github.com/ubugeeei/sponsors/blob/main/sponsors-transparent.png?raw=true)
package/dist/cli.mjs CHANGED
@@ -123,6 +123,21 @@ 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: "corsa-bind",
129
+ url: "https://github.com/ubugeeei/corsa-bind",
130
+ description: "Rust and Node bindings plus orchestration layers for typescript-go over stdio."
131
+ },
132
+ {
133
+ name: "tnix",
134
+ url: "https://github.com/ubugeeei/tnix",
135
+ description: "A gradual type system and tooling stack for Nix that compiles .tnix to .nix."
136
+ },
137
+ {
138
+ name: "ush",
139
+ url: "https://github.com/ubugeeei/ush",
140
+ description: "An experimental Rust shell that stays POSIX-first and compiles .ush to portable sh."
126
141
  }
127
142
  ];
128
143
  const blogPosts = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ubugeeei",
3
- "version": "3.0.0",
3
+ "version": "3.1.1",
4
4
  "description": "Hi! I'm ubugeeei, Vue.js team member, author of chibivue and vize",
5
5
  "keywords": [
6
6
  "card",
@@ -36,6 +36,7 @@
36
36
  "node": ">=24.0.0"
37
37
  },
38
38
  "scripts": {
39
+ "build": "vp pack",
39
40
  "dev": "node dist/cli.mjs",
40
41
  "watch": "vp pack --watch"
41
42
  }