UNPKG

minidev

Version:

支付宝小程序开发 cli(minidev)提供了常用的支付宝系小程序开发指令,能够方便地在各类平台上快速进行小程序的开发、预览、上传等操作。

18 lines (15 loc) 446 B
/* eslint-disable no-console */ if (process.env.MINIDEV_SKIP_DOWNLOAD_ASSETS) { console.log("skip download assets because `SKIP_DOWNLOAD_ASSETS` env variable is set."); process.exit(0); } async function postinstall() { await require('../lib').minidev.downloadAllAssets(); } try { postinstall().catch(e => { console.warn('minidev post install failed, skip'); }); } catch(e) { console.warn('minidev post install failed, skip'); }