Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 419 Bytes

depoly.md

File metadata and controls

25 lines (19 loc) · 419 Bytes

部署

发布到 npm 仓库:

# 发版:打版本标签 -> 构建发布包 -> 发布到 npm 仓库
npm version <new_version>

更新 github.io 在线示例:

npm run depoly

本地调试

const script = document.createElement("script");
script.src = "http://localhost:8081/app.js";
script.onload = function() {
  new window.WebConsole();
};
document.body.appendChild(script);