rapid-render 1.0.2 → 1.0.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 +9 -1
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -76,4 +76,12 @@ Performance Comparison: Rapid vs. Other Renderers and Game Engines
|
|
|
76
76
|
🎮 <strong><a href="https://nightre.github.io/Rapid.js/benchmark/">Run Interactive Benchmark Live →</a></strong>
|
|
77
77
|
</p>
|
|
78
78
|
|
|
79
|
-
Tested on **NVIDIA
|
|
79
|
+
Tested on **Windows 11 / Intel i7-12850H / NVIDIA RTX 4070 Laptop GPU / Google Chrome (WebGL 2.0)** (Chrome / WebGL 2.0)
|
|
80
|
+
|
|
81
|
+
## Contributing
|
|
82
|
+
|
|
83
|
+
Contributions, issues, and feature requests are welcome!
|
|
84
|
+
|
|
85
|
+
Before submitting a Pull Request, please ensure:
|
|
86
|
+
- **Strict TypeScript (Zero any)**: All code must pass strict type checking with zero `any`, loose casts, or `@ts-ignore` directives.
|
|
87
|
+
- **Passing Checks**: Run `npm run build` to ensure clean compilation with zero warnings or errors.
|
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rapid-render",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.3",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
7
7
|
"dist",
|
|
8
8
|
"index.d.ts"
|
|
9
9
|
],
|
|
10
|
+
"license":"MIT",
|
|
10
11
|
"main": "./dist/rapid.umd.cjs",
|
|
11
12
|
"module": "./dist/rapid.js",
|
|
12
13
|
"types": "./dist/index.d.ts",
|