shaderkit 0.4.0 → 0.4.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 +1 -1
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -47,7 +47,7 @@ Tools and IntelliSense for GLSL and WGSL.
|
|
|
47
47
|
- [StructDeclaration](#structdeclaration)
|
|
48
48
|
- Expressions
|
|
49
49
|
- [ArrayExpression](#arrayexpression)
|
|
50
|
-
- Unary
|
|
50
|
+
- Unary Operations
|
|
51
51
|
- [UnaryExpression](#unaryexpression)
|
|
52
52
|
- [UnaryOperator](#unaryoperator)
|
|
53
53
|
- [UpdateExpression](#updateexpression)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "shaderkit",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"description": "Tools and IntelliSense for GLSL and WGSL.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"shaders",
|
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
"src/*"
|
|
23
23
|
],
|
|
24
24
|
"type": "module",
|
|
25
|
+
"main": "./dist/index.js",
|
|
25
26
|
"exports": "./dist/index.js",
|
|
26
27
|
"sideEffects": false,
|
|
27
28
|
"devDependencies": {
|