@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 +4 -4
- package/dist/cli.js +1 -1
- package/package.json +1 -1
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
|
-
- **
|
|
55
|
-
- [Install
|
|
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
|
-
|
|
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
|
-
|
|
91
|
+
npm test
|
|
92
92
|
```
|
|
93
93
|
|
|
94
94
|
## Roadmap
|
package/dist/cli.js
CHANGED
package/package.json
CHANGED