简单的shell命令

cat ./dist/static/js/vendor-webpack.*.js > ./dist/static/js/vendor.js 文件改名 rm -rf ./dist/static/js/*.map // 删除文件 cd ../search/ // 进入目录 time=...

AST 语法解析树学习

分析 AST:https://ASTexplorer.net AST 规范:https://github.com/estree/estree Babel 工作过程 了解了 AST 是什么样的,就可以开始研究 Babel 的工作过程了。 上面说过,Babel 的功能很纯粹,它只是一...

前端脚手架基础知识

初始化项目: npm init npm install commander download-git-repo inquirer handlebars ora chalk log-symbols -S index.js 初始化init命令: #!/usr/bin/env node...

Vue中的Echarts图表封装

实在人,直接上代码: 默认配置项的初始化设置【基础风格配置】 和 入参配置项【各业务需求调整配置】merge,得出需求的图表。 这里用到了_lodash 函数库和监听库 ` import { Vue, Component, Prop, Watch, Emit} from 'vue...