Skip to content

Commit 7cafc90

Browse files
committed
v0.3.0-alpha.5
1 parent f8c0dc9 commit 7cafc90

File tree

4 files changed

+18
-3
lines changed

4 files changed

+18
-3
lines changed

compiler/dist/wasm-checksum.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const checksum = "0203db6e4ec69dc92b9547ca7b7bb405a5bd2f14"
1+
export const checksum = "8e56bc54cade56cf5b61bb5b461b3f093e73192d"

compiler/dist/wasm.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

publish.ts

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
// custom scripts for deno.land/x/publish
2+
3+
export async function prepublish(version: string) {
4+
// update the version.ts before re-build the compiler wasm.
5+
Deno.writeTextFile('./version.ts', `export const VERSION = '${version}'\n`)
6+
7+
const p = Deno.run({
8+
cmd: ['deno', 'run', '-A', 'build.ts'],
9+
cwd: './compiler',
10+
stdout: 'inherit',
11+
stderr: 'inherit',
12+
})
13+
await p.status()
14+
p.close()
15+
}

version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '0.3.0-alpha.4'
1+
export const VERSION = '0.3.0-alpha.5'

0 commit comments

Comments
 (0)