Skip to content

Commit

Permalink
v0.3.0-alpha.5
Browse files Browse the repository at this point in the history
  • Loading branch information
ije committed Feb 5, 2021
1 parent f8c0dc9 commit 7cafc90
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 3 deletions.
2 changes: 1 addition & 1 deletion compiler/dist/wasm-checksum.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const checksum = "0203db6e4ec69dc92b9547ca7b7bb405a5bd2f14"
export const checksum = "8e56bc54cade56cf5b61bb5b461b3f093e73192d"
2 changes: 1 addition & 1 deletion compiler/dist/wasm.js

Large diffs are not rendered by default.

15 changes: 15 additions & 0 deletions publish.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
// custom scripts for deno.land/x/publish

export async function prepublish(version: string) {
// update the version.ts before re-build the compiler wasm.
Deno.writeTextFile('./version.ts', `export const VERSION = '${version}'\n`)

const p = Deno.run({
cmd: ['deno', 'run', '-A', 'build.ts'],
cwd: './compiler',
stdout: 'inherit',
stderr: 'inherit',
})
await p.status()
p.close()
}
2 changes: 1 addition & 1 deletion version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const VERSION = '0.3.0-alpha.4'
export const VERSION = '0.3.0-alpha.5'

0 comments on commit 7cafc90

Please sign in to comment.