Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release 0.18.1 #163

Merged
merged 4 commits into from
Apr 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
> [!CAUTION]\
> **@molt/core** and **@molt/cli** published on [jsr.io](jsr.io) are currently
> BROKEN.\
> Please use https://deno.land/x/molt until
> https://github.com/hasundue/molt/issues/160 is closed.

# 🦕 Molt

[![CI](https://github.com/hasundue/molt/actions/workflows/ci.yml/badge.svg)](https://github.com/hasundue/molt/actions/workflows/ci.yml)
Expand Down
6 changes: 3 additions & 3 deletions cli/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@molt/cli",
"version": "0.18.0",
"version": "0.18.1",
"exports": {
".": "./main.ts"
},
Expand All @@ -15,8 +15,8 @@
"@conventional-commits/parser": "npm:@conventional-commits/parser@^0.4.1",
"@core/unknownutil": "jsr:@core/unknownutil@3.18.0",
"@david/dax": "jsr:@david/dax@0.40.0",
"@molt/lib": "jsr:@molt/lib@0.18.0",
"@molt/core": "jsr:@molt/core@0.18.0",
"@molt/lib": "jsr:@molt/lib@^0.18.0",
"@molt/core": "jsr:@molt/core@^0.18.1",
"@molt/integration": "jsr:@molt/integration@0.18.0",
"@std/assert": "jsr:@std/assert@0.222.1",
"@std/collections": "jsr:@std/collections@0.222.1",
Expand Down
108 changes: 105 additions & 3 deletions cli/deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion core/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@molt/core",
"version": "0.18.0",
"version": "0.18.1",
"exports": {
".": "./mod.ts"
},
Expand Down
88 changes: 88 additions & 0 deletions core/deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 4 additions & 5 deletions deno.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
{
"tasks": {
"cache": "deno cache ./lib/*.ts ./core/*.ts ./cli/**/*.ts --lock",
"cache": "deno cache ./lib/*.ts ./core/*.ts ./integration/*.ts ./cli/**/*.ts --lock",
"lock": "deno task -q cache --lock-write",
"check": "deno check ./*.ts ./lib/*.ts ./core/*.ts ./integration/*.ts ./cli/**/*.ts",
"test": "NO_COLOR=1 deno test -A --unstable-kv --no-check",
"test": "deno test -A --unstable-kv --no-check",
"test:unit": "deno task -q test ./lib ./core",
"test:integration": "deno task -q test --no-lock ./integration ./cli",
"pre-commit": "deno fmt && deno lint && deno task -q check && deno task lock && deno task -q test",
"pre-commit": "deno fmt && deno lint && deno task -q check && deno task -q test",
"run": "deno run -A --unstable-kv --config ./deno.json ./cli/main.ts",
"install": "deno install -Afg --config ./deno.json --name molt ./cli/main.ts",
"update": "deno run --unstable-kv --config ./deno.json --allow-env --allow-read --allow-write --allow-net=deno.land,jsr.io,registry.npmjs.org --allow-run=git,deno ./cli/main.ts ./deno.json --changelog --unstable-lock",
"update:commit": "deno task -q update --commit --prefix 'build(deps):' --prefix-lock 'build(lock)'",
"vendor": "deno vendor --no-config https://deno.land/x/deno_graph/mod.ts https://deno.land/x/import_map/mod.ts"
"vendor": "deno vendor -qf --no-config --output ./core/vendor https://deno.land/x/import_map/mod.ts && curl -fsSL -o ./core/vendor/deno.land/x/import_map@v0.19.1/import_map_bg.wasm https://deno.land/x/import_map@v0.19.1/import_map_bg.wasm"
},
"imports": {
"@cliffy/ansi": "jsr:@cliffy/ansi@1.0.0-rc.4",
Expand Down
14 changes: 3 additions & 11 deletions deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion test/snapshots/cli_test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Options:
snapshot[`cli - "molt --help" 2`] = `""`;

snapshot[`cli - "molt --version" 1`] = `
"0.18.0
"0.18.1
"
`;

Expand Down