Skip to main content
Module

x/aleph/publish.ts

The Full-stack Framework in Deno.
Very Popular
Go to Latest
File
// custom script for deno.land/x/publish
export async function prepublish(version: string) { const p = Deno.run({ cmd: ['deno', 'run', '-A', 'build.ts'], cwd: './compiler', stdout: 'inherit', stderr: 'inherit', }) await p.status() p.close()}