02 2021 档案
摘要:## jQuery 链接: - v1.9.1:https://i.mazey.net/lib/jquery/1.9.1/jquery.min.js - v2.1.1:https://i.mazey.net/lib/jquery/2.1.1/jquery.min.js - v3.1.1:https:/
阅读全文
摘要:安装 rollup npm install rollup --save-dev 配置文件 rollup.config.js export default { input: 'src/index.js', output: { file: 'lib/bundle.js', format: 'cjs' }
阅读全文
摘要:安装 npm install --save-dev webpack@4.30.0 webpack-cli@3.3.2 更新 package.json 脚本 "scripts": { "build": "webpack --config webpack.config.js" } 更新目录结构 webp
阅读全文
摘要:## 清除缓存 ``` git rm -r --cached . git add . ``` ## 提交记录 ``` git commit -m "chore: 清除缓存。" git push ```
阅读全文