Skip to content

Commit 4c79d3f

Browse files
committed
0.32.1
1 parent be5dbea commit 4c79d3f

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,10 @@ jobs:
189189
- name: Publish
190190
run: |
191191
node ./script/release.js
192-
npm publish --ignore-scripts -w packages/runtime -w packages/node -w packages/emnapi -w packages/core
192+
cd ./packages/runtime && npm publish --ignore-scripts && cd ../..
193+
cd ./packages/node && npm publish --ignore-scripts && cd ../..
194+
cd ./packages/emnapi && npm publish --ignore-scripts && cd ../..
195+
cd ./packages/core && npm publish --ignore-scripts && cd ../..
193196
194197
- name: Create release
195198
uses: toyobayashi/[email protected]

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@emnapi/core",
3-
"version": "0.32.0",
3+
"version": "0.32.1",
44
"description": "emnapi core",
55
"main": "index.js",
66
"module": "./dist/emnapi-core.esm-bundler.js",

packages/emnapi/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "emnapi",
3-
"version": "0.32.0",
3+
"version": "0.32.1",
44
"description": "Node-API implementation for Emscripten",
55
"main": "index.js",
66
"devDependencies": {

packages/node/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@emnapi/node-binding",
3-
"version": "0.32.0",
3+
"version": "0.32.1",
44
"description": "Bridge connecting emnapi and Node.js native implementation",
55
"main": "index.js",
66
"types": "index.d.ts",

packages/runtime/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@emnapi/runtime",
3-
"version": "0.32.0",
3+
"version": "0.32.1",
44
"description": "emnapi runtime",
55
"main": "index.js",
66
"module": "./dist/emnapi.esm-bundler.js",

0 commit comments

Comments
 (0)