@thi.ng/shader-ast-optimize 1.0.3 → 1.0.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/CHANGELOG.md +3 -34
- package/package.json +9 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
- **Last updated**: 2025-01-
|
|
3
|
+
- **Last updated**: 2025-01-23T13:39:11Z
|
|
4
4
|
- **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
|
|
5
5
|
|
|
6
6
|
All notable changes to this project will be documented in this file.
|
|
7
|
+
Only versions published since **2022-01-01** are listed here.
|
|
8
|
+
Please consult the Git history for older version information.
|
|
7
9
|
See [Conventional Commits](https://conventionalcommits.org/) for commit guidelines.
|
|
8
10
|
|
|
9
11
|
**Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes
|
|
@@ -48,36 +50,3 @@ and/or version bumps of transitive dependencies.
|
|
|
48
50
|
|
|
49
51
|
- update constant folding ([1bd5fef](https://github.com/thi-ng/umbrella/commit/1bd5fef))
|
|
50
52
|
- add simplifications for 0/1 cases
|
|
51
|
-
|
|
52
|
-
## [0.2.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/shader-ast-optimize@0.2.0) (2021-11-17)
|
|
53
|
-
|
|
54
|
-
#### 🚀 Features
|
|
55
|
-
|
|
56
|
-
- Using workspaces for local tools ([bf7a404](https://github.com/thi-ng/umbrella/commit/bf7a404))
|
|
57
|
-
Improving the overall build ergonomics
|
|
58
|
-
- introduced a tools workspaces
|
|
59
|
-
- imported it in all needed packages/examples
|
|
60
|
-
- inclusive project root
|
|
61
|
-
|
|
62
|
-
#### ♻️ Refactoring
|
|
63
|
-
|
|
64
|
-
- testrunner to binary ([4ebbbb2](https://github.com/thi-ng/umbrella/commit/4ebbbb2))
|
|
65
|
-
this commit reverts (partly) changes made in:
|
|
66
|
-
ef346d7a8753590dc9094108a3d861a8dbd5dd2c
|
|
67
|
-
overall purpose is better testament ergonomics:
|
|
68
|
-
instead of having to pass NODE_OPTIONS with every invocation
|
|
69
|
-
having a binary to handle this for us.
|
|
70
|
-
|
|
71
|
-
### [0.1.1](https://github.com/thi-ng/umbrella/tree/@thi.ng/shader-ast-optimize@0.1.1) (2021-10-13)
|
|
72
|
-
|
|
73
|
-
#### ♻️ Refactoring
|
|
74
|
-
|
|
75
|
-
- update imports in all pkgs ([5fa2b6f](https://github.com/thi-ng/umbrella/commit/5fa2b6f))
|
|
76
|
-
- add .js suffix for all relative imports
|
|
77
|
-
- update imports in all tests/pkgs ([effd591](https://github.com/thi-ng/umbrella/commit/effd591))
|
|
78
|
-
|
|
79
|
-
## [0.1.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/shader-ast-optimize@0.1.0) (2021-10-12)
|
|
80
|
-
|
|
81
|
-
#### 🚀 Features
|
|
82
|
-
|
|
83
|
-
- extract as own pkg ([b71cd16](https://github.com/thi-ng/umbrella/commit/b71cd16))
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/shader-ast-optimize",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"description": "Shader AST code optimization passes/strategies",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -40,18 +40,17 @@
|
|
|
40
40
|
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@thi.ng/api": "^8.11.
|
|
44
|
-
"@thi.ng/defmulti": "^3.0.
|
|
45
|
-
"@thi.ng/errors": "^2.5.
|
|
46
|
-
"@thi.ng/logger": "^3.0.
|
|
47
|
-
"@thi.ng/math": "^5.11.
|
|
48
|
-
"@thi.ng/shader-ast": "^1.0.
|
|
43
|
+
"@thi.ng/api": "^8.11.18",
|
|
44
|
+
"@thi.ng/defmulti": "^3.0.57",
|
|
45
|
+
"@thi.ng/errors": "^2.5.24",
|
|
46
|
+
"@thi.ng/logger": "^3.0.29",
|
|
47
|
+
"@thi.ng/math": "^5.11.18",
|
|
48
|
+
"@thi.ng/shader-ast": "^1.0.5"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@microsoft/api-extractor": "^7.48.1",
|
|
52
51
|
"esbuild": "^0.24.2",
|
|
53
52
|
"typedoc": "^0.27.6",
|
|
54
|
-
"typescript": "^5.7.
|
|
53
|
+
"typescript": "^5.7.3"
|
|
55
54
|
},
|
|
56
55
|
"keywords": [
|
|
57
56
|
"ast",
|
|
@@ -92,5 +91,5 @@
|
|
|
92
91
|
"parent": "@thi.ng/shader-ast",
|
|
93
92
|
"year": 2019
|
|
94
93
|
},
|
|
95
|
-
"gitHead": "
|
|
94
|
+
"gitHead": "b92b48abda9941d608be8a2e1c83447e679a6f79\n"
|
|
96
95
|
}
|