Skip to content

Commit 664c233

Browse files
fix(std): release automation for std
1 parent f7968b8 commit 664c233

File tree

3 files changed

+11
-15
lines changed

3 files changed

+11
-15
lines changed

packages/jco-std/.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
dist
1+
dist
2+
*.tgz

packages/jco-std/cliff.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -51,15 +51,15 @@ trim = true
5151

5252
# regex for parsing and grouping commits
5353
commit_parsers = [
54-
{ message = '^feat\(transpile\)', group = '<!-- 0 -->🚀 Features' },
55-
{ message = '^fix\(transpile\)', group = '<!-- 1 -->🐛 Bug Fixes' },
56-
{ message = '^doc\(transpile\)', group = '<!-- 3 -->📚 Documentation' },
57-
{ message = '^perf\(transpile\)', group = '<!-- 4 -->⚡ Performance' },
58-
{ message = '^refactor\(transpile\)', group = '<!-- 2 -->🚜 Refactor' },
59-
{ message = '^style\(transpile\)', group = '<!-- 5 -->🎨 Styling' },
60-
{ message = '^test\(transpile\)', group = '<!-- 6 -->🧪 Testing' },
54+
{ message = '^feat\(std\)', group = '<!-- 0 -->🚀 Features' },
55+
{ message = '^fix\(std\)', group = '<!-- 1 -->🐛 Bug Fixes' },
56+
{ message = '^doc\(std\)', group = '<!-- 3 -->📚 Documentation' },
57+
{ message = '^perf\(std\)', group = '<!-- 4 -->⚡ Performance' },
58+
{ message = '^refactor\(std\)', group = '<!-- 2 -->🚜 Refactor' },
59+
{ message = '^style\(std\)', group = '<!-- 5 -->🎨 Styling' },
60+
{ message = '^test\(std\)', group = '<!-- 6 -->🧪 Testing' },
6161
{ message = '^release', skip = true },
62-
{ message = '^chore\(transpile\)', group = '<!-- 7 -->⚙️ Miscellaneous Tasks' },
62+
{ message = '^chore\(std\)', group = '<!-- 7 -->⚙️ Miscellaneous Tasks' },
6363
]
6464

6565
# filter out the commits that are not matched by commit parsers

packages/jco-std/package.json

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,6 @@
3838
"types": "./dist/wasi/0.2.3/http/adapters/hono.d.ts",
3939
"browser": "./dist/wasi/0.2.3/http/adapters/hono.js",
4040
"default": "./dist/wasi/0.2.3/http/adapters/hono.js"
41-
},
42-
".": {
43-
"types": "./dist/index.d.ts",
44-
"default": "./dist/index.js"
4541
}
4642
},
4743
"scripts": {
@@ -53,8 +49,7 @@
5349
"build:ts": "tsc",
5450
"build": "npm run build:bindings && npm run build:ts",
5551
"test": "vitest run -c test/vitest.ts",
56-
"setup:vendor": "npm run -w @bytecodealliance/jco build:release && cp ../jco/obj/*.core*.wasm vendor && cp ../jco/obj/*.js vendor && cp ../jco/obj/*.ts vendor && cp -r ../jco/obj/interfaces vendor",
57-
"prepack": "npm run setup:vendor"
52+
"prepack": "npm run build"
5853
},
5954
"devDependencies": {
6055
"typescript-eslint": "^8.43.0",

0 commit comments

Comments
 (0)