@demo/project
这是一段注释
Last updated 4 years ago .
· Tarball · package.json
$ gnpm install @demo/project 
Private package

云平台前端原型项目

Gidc Bank Property

版本: v2.0.1

目录结构

.
├── config # 模块、代理、打包配置
├── dist # 打包之后的问天所在位置
│   ├── web # 打包后的web文件
│   └── zip # 对应模块的zip
├── public # 静态资源文件
└── src # 主资源
    ├── assets # 资源包
    ├── common # 公共依赖
    ├── components # 公共组件
    ├── config # 公共模块配置
    └── modules # 模块
        └── demo # demo示例

开发

  1. 安装

    npm install
    # 或使用淘宝镜像 http://registry.npm.taobao.org
    # npm install --registry=http://registry.npm.taobao.org
    # cnpm install
    
  2. 运行

    npm run serve
    

    之后在浏览器地址栏中输入http://localhost:<port>/<模块名称>#/<路由名>即可访问

  3. 编译、打包

    npm run build:all # 打包全部模块
    npm run build -- [module] # 打包模块名称
    
  4. 增加模块

    1. config目录的modules.config.js中新增模块配置

      /**
      * 多模块入口配置
      */
      const businessArray = [
       {
         chunk: 'demo',
         chunkName: 'demo'
       }      
      ]
      // ......
      
      • chunk: 模块id,唯一值,不可重复
      • chunkName: 模块名称
      • template: 静态资源index.html模版,若不设置则使用公共模版文件
    2. src/modules下新增一个vue入口文件main.jsApp.vue,具体可以参考demo模块,如下例为最基础vue入口配置

      └── <modules name>
          ├── main.js
          └── App.vue
      

更新记录

  • 2021/01/07 v2.0.0

    • 删除主包
    • 组件库更新到1.0.8版本
  • 2020/05/18 v2.0.0 beta1

    • 新增主包子包模块
    • 嵌入app测试通过
    • vue-cli升级至3版本
  • 2020/07/18 v2.0.1

    • 新增madp jsBridge
    • 新增便捷全量打包指令

Current Tags

  • 1.0.0                                ...           latest (4 years ago)

1 Versions

  • 1.0.0                                ...           4 years ago
Maintainers
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (11)
Dev Dependencies (13)
Dependents (0)
None

Copyright 2013 - present © cnpmjs.org | Home |