Skip to content

Commit fc52d06

Browse files
committed
Changelog, specify supported platforms in package.json
1 parent a7f7f46 commit fc52d06

File tree

2 files changed

+31
-1
lines changed

2 files changed

+31
-1
lines changed

CHANGES.md

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Revision history for `rollup-plugin-glsl-optimize`
2+
3+
All notable changes to this project will be documented in this file.
4+
This project adheres to [Semantic Versioning](https://semver.org/).
5+
6+
## 0.0.11 2021-05-02
7+
* Improved Khronos binaries distribution
8+
* Better error handling for stage-less *.glsl files
9+
10+
## 0.0.9 2021-04-30
11+
* Support for glslify
12+
13+
## 0.0.8 2021-03-22
14+
* Support parallel rollup builds
15+
* Emit sourcemaps that reflect optimized but un-minified source to aid debugging
16+
* Switched to rollup load hook (was transform)
17+
18+
## 0.0.7 2021-03-20
19+
* Initial published version

package.json

+12-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,17 @@
2828
"url": "https://github.com/docd27/rollup-plugin-glsl-optimize/issues"
2929
},
3030
"license": "MIT",
31+
"engines": {
32+
"node": ">=14"
33+
},
34+
"os": [
35+
"win32",
36+
"linux",
37+
"darwin"
38+
],
39+
"cpu": [
40+
"x64"
41+
],
3142
"main": "dist/index.js",
3243
"types": "dist/index.d.ts",
3344
"type": "module",
@@ -77,4 +88,4 @@
7788
"rollup-plugin-dts": "^3.0.1",
7889
"typescript": "^4.2.3"
7990
}
80-
}
91+
}

0 commit comments

Comments
 (0)