@shd101wyy/yo 0.1.4 → 0.1.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/README.md +5 -5
- package/out/cjs/index.cjs +563 -557
- package/out/cjs/yo-cli.cjs +611 -605
- package/out/esm/index.mjs +467 -461
- package/out/types/src/env.d.ts +11 -1
- package/out/types/src/evaluator/types/enum.d.ts +1 -1
- package/out/types/src/evaluator/types/synthesizer.d.ts +6 -1
- package/out/types/src/types/compatibility.d.ts +1 -1
- package/out/types/src/types/creators.d.ts +2 -1
- package/out/types/src/types/definitions.d.ts +11 -0
- package/out/types/src/types/guards.d.ts +2 -1
- package/out/types/src/types/tags.d.ts +2 -1
- package/out/types/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/std/prelude.yo +185 -7
package/README.md
CHANGED
|
@@ -256,11 +256,11 @@ export main;
|
|
|
256
256
|
|
|
257
257
|
### Example Projects
|
|
258
258
|
|
|
259
|
-
| Project
|
|
260
|
-
|
|
|
261
|
-
| [raylib_yo](https://github.com/shd101wyy/raylib_yo)
|
|
262
|
-
| [tetris_yo](https://github.com/shd101wyy/tetris_yo)
|
|
263
|
-
| [http_server_demo_yo](https://github.com/shd101wyy/http_server_demo_yo)
|
|
259
|
+
| Project | Description |
|
|
260
|
+
| ---------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- |
|
|
261
|
+
| [raylib_yo](https://github.com/shd101wyy/raylib_yo) | Comprehensive [raylib](https://www.raylib.com/) bindings — 35 struct types, 535 functions, 227 constants |
|
|
262
|
+
| [tetris_yo](https://github.com/shd101wyy/tetris_yo) \| [Online Demo](http://shd101wyy.github.io/tetris_yo) | Classic Tetris game built with raylib_yo, demonstrating Yo's build system and C interop |
|
|
263
|
+
| [http_server_demo_yo](https://github.com/shd101wyy/http_server_demo_yo) | Simple HTTP/1.1 server — async I/O, algebraic effects, TCP networking, request parsing & routing |
|
|
264
264
|
|
|
265
265
|
## Contributing
|
|
266
266
|
|