UNPKG

wechaty-qnamaker

Version:
19 lines (16 loc) 318 B
#!/usr/bin/env ts-node import { VERSION, } from 'wechaty-qnamaker' async function main () { if (VERSION === '0.0.0') { throw new Error('version should be set before publishing') } return 0 } main() .then(process.exit) .catch(e => { console.error(e) process.exit(1) })