Skip to content

Commit 302fd72

Browse files
committed
improve release workflow cginternals#83
1 parent ba19b6f commit 302fd72

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.vscode/settings.json

+2
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,9 @@
117117
"parameter",
118118
"passthrough",
119119
"philipp",
120+
"postversion",
120121
"precedingly",
122+
"preversion",
121123
"pugconfig",
122124
"pvrtc",
123125
"quaternion",

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ npm install --save-dev webgl-operate
2323
```
2424

2525
```
26-
<script src="https://cdn.jsdelivr.net/npm/webgl-operate@0.3/dist/webgl-operate.min.js"></script>
26+
<script src="https://cdn.jsdelivr.net/npm/webgl-operate@latest/dist/webgl-operate.min.js"></script>
2727
```
2828

2929
## Features

package.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,11 @@
7979
"test-watch": "mocha --watch",
8080
"coverage": "nyc report --reporter=text-lcov | coveralls",
8181
"doc": "typedoc source/webgl-operate.ts",
82-
"ci": "run-s build-dist build-lib lint test-nyc",
82+
"ci": "run-p build-dist build-lib lint test-nyc",
8383
"analyze": "cross-env ANALYZE=true webpack-cli --mode production --config webpack.config.js",
84-
"prepack": "npm install && run-p build-dist build-lib"
84+
"postversion": "git push && git push --tags",
85+
"prepack": "npm run preversion",
86+
"preversion": "npm install && npm run ci"
8587
},
8688
"keywords": [
8789
"webgl",

0 commit comments

Comments
 (0)