UNPKG

437 BJavaScriptView Raw
1/**
2 * 检测当前是否有新版本,给出提示升级mtl
3 * @url http://iuap-design-cdn.oss-cn-beijing.aliyuncs.com/static/uba/ucf-cli-version.json
4 */
5
6const updateNotifier = require("update-notifier");
7const pkg = require("../package.json");
8
9function checkVersion() {
10 const notifier = updateNotifier({ pkg, updateCheckInterval: 0 });
11
12 if (notifier.update) {
13 notifier.notify();
14 }
15}
16
17module.exports = {
18 checkVersion
19};