sanctuary-cli
开始
- 安装
npm install -g xforce-cli
生成开发环境
sanctuary-cli init
配置文件 webpack.config.json
- path: 当前源位置 不可更改
- entry: 配置打包入口文件
执行打包
sanctuary-cli run <name>
- name 同 package.json scripts
- 注意:node 后台服务请使用npm run
目录结构
|-- bin |---- indexjs --------------------- 入口 |-- command |---- initjs ---------------------- 初始化项目命令 |---- runjs ----------------------- 执行打包命令 |-- index |---- indexjs --------------------- 配置文件 |---- optionsjs ------------------- 命令参数配置 |-- lib ------------------------- 资源文件 |---- react ------------------------ react 多页项目 |---- react-page ------------------- react 单页项目 |---- react-components ------------- react 组件项目 |---- server ----------------------- 后台项目 |---- vue -------------------------- vue 多页项目 |---- vue-page --------------------- vue 单页项目 |-- template -------------------- 临时文件夹 |-- utils |---- filesjs --------------------- 文件操作 |---- humanComputerInteractionjs -- 问答 |---- systemCommandjs ------------- 执行系统命令 |---- utiljs ---------------------- 公共方法