@ugo-studio/jspp 0.2.2 → 0.2.3

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
@@ -51,8 +51,8 @@ To contribute to JSPP or run its test suite, follow these steps:
51
51
 
52
52
  ### Prerequisites
53
53
 
54
- - **Bun:** This project uses Bun for package management and script execution.
55
- - [Install Bun](https://bun.sh/docs/installation)
54
+ - **Node.js:** This project uses Node.js for package management and script execution.
55
+ - [Install Node.js](https://nodejs.org/)
56
56
  - **C++ Compiler:** A compiler with support for C++23 is required. This project is tested with `g++`.
57
57
  - `g++` (MinGW on Windows, or available via build-essentials on Linux)
58
58
 
@@ -64,7 +64,7 @@ To contribute to JSPP or run its test suite, follow these steps:
64
64
  ```
65
65
  2. Install dependencies:
66
66
  ```sh
67
- bun install
67
+ npm install
68
68
  ```
69
69
 
70
70
  ## Usage
@@ -88,7 +88,7 @@ The transpiled C++ file and executable will be generated in the same directory a
88
88
  You can also run the test suite, which will transpile all the JavaScript test cases in `test/cases/`, build the resulting C++ files, and run them.
89
89
 
90
90
  ```sh
91
- bun run test
91
+ npm test
92
92
  ```
93
93
 
94
94
  ## Roadmap
package/dist/cli.js CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env bun
1
+ #!/usr/bin/env node
2
2
  import { spawn } from "child_process";
3
3
  import fs from "fs/promises";
4
4
  import path from "path";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ugo-studio/jspp",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "A modern transpiler that converts JavaScript code into high-performance, standard C++23.",
5
5
  "main": "dist/index.js",
6
6
  "module": "src/index.ts",