miniprogram-build

7.0.3 • Public • Published

miniprogram-build

npm version cnpm version

Build Status Build Status Greenkeeper badge

A command line tool to build & watch MiniProgram. Not a Framework, just a tool.

小程序命令行构建工具。 不是开发框架,只是自动化的增强工具和开发流程。

template project 模板项目

task flow

注: 自动预览功能需要安装微信开发工具并打开端口设置

使用 Usage

立即尝试 quick start

查看全部命令 show all commands (需要 npm >= 5.2)

npx miniprogram-build -h

作为开发依赖项 install as devDependence

npm i miniprogram-build -D

命令参数 CLI

miniprogram-build [command...] [--option]

Short Alias [短名称]: mpmp-build

命令 Commands:

dev         build and watch <构建和检测文件修改>
init        create config file <创建配置文件>
build       clean and compile <清理和编译所有文件>
watch       watch file changes <监测文件变化>
compile     compile all source files to dist <编译所有源文件>
clean       remove all files in dist <清理dist>

upload      upload current project <上传项目>
open        open project in devtool <打开项目>
autopreview auto-preview project <当前项目发布自动预览>
close       close dist in Wechat devtool <开发工具中关闭项目>
quit        quit Wechat devtool <退出微信开发工具>

js          compile ts/js files to `.js` <编译生成js>
wxs         compile wxts/wxs files to `.wxs` <编译生成wxs>
wxss        compile scss/sass/css/wxss to `.wxss` <编译生成wxss>
wxml        compile html/wxml files to `.wxml` <编译生成wxml>
json        compile all json/jsonc files to `.json` <编译生成json>
image       compresse all images in source to dist <压缩所有图片>
copy        copy all files match `copy` to dist <复制需要复制的文件>
npm         build npm dependencies to dist <编译npm依赖>

参数 Options:

  --version     show version number <查看本版号>                       [boolean]
  --production  production mode <发布模式会优化压缩>  [boolean] [default: false]
  --src         source folder <源文件目录>           [string] [default: "src"]
  --dist        output folder <编译输出目录>        [string] [default: "dist"]
  --exclude     ignored files <编译忽略文件(夹)>                         [array]
  --tsconfig    typescript config file <TS配置,未设置会自动查找tsconfig.json>
  --copy        files to copy <复制的文件>
  --assets      assets folder under src/ for compling style, wont put to dist
                <样式所需资源文件;会监测文件修改,但不会编译或复制到输出目录>
                                                    [string] [default: "assets"]
  --var         KEY value pair to replace in js/json <替换JS和JSON中的变量>
  -c, --config  JSON config file <配置置文件,命令参数优先级高于配置>
  -h, --help    show help <显示帮助信息>                               [boolean]

例子 examples

  • 使用配置config.dev.json开发调试, dev with config.dev.json
npx miniprogram-build --config=config.dev.json
  • 使用config.prod.json生产环境开启优化重新编译,rebuild for production with config.prod.json

如果 production 参数未指定, 环境变量中 NODE_ENV 为 productionprod时同样置为 true

npx miniprogram-build build --config=./config.prod.json --production
  • 编译替换{ {APP_ID} }为 1234567, compile the source and replace template var { {APP_ID} } with 123456
npx miniprogram-build compile --var.APP_ID=1234567

默认配置文件 default config

{
    "production": false,
    "src": "src",
    "dist": "dist",
    "assets": "assets",
    "copy": "",
    "exclude": [],
    "tsconfig": "tsconfig.json",
    "var": {
        "APP_ID": "all {{APP_ID}} in json/ts files will replaced by this value"
    }
}

可使用init命令生成配置文件

npx miniprogram-build init

完整命令和参数 commands & options

commands & options

tips

  • CSS npm packags install as devDependences with npm i -D (CSS 的 npm 依赖使用npm i -D方式安装)

Features

  • js
    • compile TS
    • sourcemaps
    • replace { {VAR_NAME} }
    • tree shaking
  • wxs
    • compile TS (.wxts)
    • replace { {VAR_NAME} }
    • npm support
    • tree shaking
  • wxss
    • compile
      • scss/sass
      • css
    • replace { {VAR_NAME} } (注意: 为了防止 stylelint 报错, 需要将变量用引号包裹起来, 内部会自动去除)
    • import node_modules
    • sourcemaps
    • minify (release) / expanded (debug)
    • inline image
      • svg datauri
      • png/jpg base64
      • image compress
    • clean-css
    • keep import wxss
    • assest folder
  • wxml
    • wxml
    • html
    • copy rename
    • error report
  • JSON
    • comments (添加注释)
    • trailing comma
    • minify
    • replace { {VAR_NAME} }
  • miniprogram npm
    • rollup js lib
    • components
  • resource
    • copy/src
    • image compress
    • error report
  • console verbose
    • all files
    • file size

Todo

  • exclude path
  • multi watcher
  • config
  • 显示报错位置
  • break errors
  • cache

test examples

see test

npm i
npm start

[21:31:41] config: v0.0.0 load config .mpconfig.jsonc
[21:31:41] 0.clean: dist
[21:31:41] ↓↓↓↓↓↓ start compile: src → dist ↓↓↓↓↓↓
[21:31:42] 3.wxss: [►] app.scss → app.wxss
[21:31:42] 4.json: [►] app.jsonc → app.json
[21:31:42] replace: √ {{APP_ID}} → 123456 (app.json)
[21:31:42] 5.typescript: [►] app.ts → app.js
[21:31:42] replace: √ {{APP_ID}} → 123456 (app.ts)
[21:31:42] inline: assets\images\arrow-up.svg → (app.css)
[21:31:42] 6.image: icons\uEA01-arrow-down.svg  (saved 586 B - 76.8%)
[21:31:42] 2.npm: [►] <miniprogram-image(component)> → miniprogram_npm\miniprogram-image\index.js
[21:31:42] 2.npm: [►] <miniprogram-network> → miniprogram_npm\miniprogram-network\index.js
[21:31:42] 1.wxts: [►] wxs\comm.wxts → wxs\comm.wxs
[21:31:42] 7.javascript: [►] lib\t.js → lib\t.js
[21:31:42] replace: √ {{APP_ID}} → 123456 (lib\t.js)
[21:31:42] 3.wxss: [►] pages\index\index.scss → pages\index\index.wxss
[21:31:42] 5.typescript: [►] lib\test.ts → lib\test.js
[21:31:42] 2.npm: [►] <miniprogram-image(component)> → miniprogram_npm\miniprogram-image\index.json
[21:31:42] 1.wxts: [►] wxs\x.wxts → wxs\x.wxs
[21:31:42] 4.json: [√] app.json (40 B)
[21:31:42] 6.image: √ All 1 file done! (177 B)[1.06秒]
[21:31:42] 5.typescript: [►] pages\index\index.ts → pages\index\index.js
[21:31:44] 7.javascript: [√] lib\t.js (286 B)
[21:31:44] 2.npm: [►] <miniprogram-image(component)> → miniprogram_npm\miniprogram-image\index.wxml
[21:31:44] 3.wxss: [√] app.wxss (1.02 kB)
[21:31:44] 8.wxml: [√] pages\index\index.wxml (360 B)
[21:31:44] 2.npm: [►] <miniprogram-image(component)> → miniprogram_npm\miniprogram-image\index.wxss
[21:31:44] 3.wxss: [√] pages\index\index.wxss (562 B)
[21:31:44] 3.wxss: √ All 2 files done! (1.59 kB)[2.44秒]
[21:31:44] 5.typescript: [√] app.js.map (431 B)
[21:31:44] 5.typescript: [√] app.js (269 B)
[21:31:44] 2.npm: √<miniprogram-image(component)> All 4 files done! (6.99 kB)[2.05秒]
[21:31:44] 5.typescript: [√] lib\test.js.map (162 B)
[21:31:44] 5.typescript: [√] lib\test.js (130 B)
[21:31:44] 5.typescript: [√] pages\index\index.js.map (235 B)
[21:31:44] 5.typescript: [√] pages\index\index.js (178 B)
[21:31:44] 5.typescript: √ All 6 files done! (1.41 kB)[2.19秒]
[21:31:44] replace: √ {{APP_ID}} → 123456 (wxs\comm.wxs)
[21:31:44] 1.wxts: [√] wxs\comm.wxs (16.2 kB)
[21:31:44] 2.npm: √<miniprogram-network> All 1 file done! (28.3 kB)[2.48秒]
[21:31:44] 1.wxts: [√] wxs\x.wxs (66 B)
[21:31:44] 1.wxts: √ All 2 files done! (16.3 kB)[2.52秒]
[21:31:44] ↑↑↑↑↑↑ √ All compilation tasks done! ↑↑↑↑↑↑

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
7.0.38latest
7.0.4-beta.d8bba.00beta

Version History

VersionDownloads (Last 7 Days)Published
7.0.38
7.0.4-beta.d8bba.00
6.8.50
7.0.20
7.0.3-beta.9685b.04
7.0.2-beta.be7d0.00
7.0.10
7.0.2-beta.1a39f.00
7.0.1-beta.55e91.00
7.0.00
7.0.1-beta.ad417.00
6.9.1-beta.11b80.00
6.9.1-beta.dcbbc.00
6.9.01
6.9.1-beta.8d59e.00
6.8.7-beta.4733e.00
6.8.7-beta.c706b.00
6.8.7-beta.2462f.00
6.8.7-beta.bf1bc.00
6.8.7-beta.db13c.01
6.8.7-beta.8b335.00
6.8.7-beta.38a4f.00
6.8.7-beta.24a18.00
6.8.7-beta.6bfc4.00
6.8.7-beta.ac66b.00
6.8.7-beta.22bd2.00
6.8.60
6.8.7-beta.3bc34.00
6.8.5-beta.35932.00
6.8.5-beta.0ca8d.00
6.8.4-beta.a7a8f.00
6.8.4-beta.7acfc.00
6.8.30
6.8.4-beta.899dc.00
6.8.3-beta.19be5.00
6.8.23
6.8.3-beta.11def.00
6.8.2-beta.4a683.00
6.8.11
6.8.2-beta.af406.00
6.8.1-beta.1ce0a.00
6.8.1-beta.a5f0a.00
6.8.1-beta.d6d29.00
6.8.01
6.8.1-beta.be8eb.00
6.7.1-beta.9f7d8.00
6.7.1-beta.f55dc.00
6.7.1-beta.b6429.00
6.7.1-beta.25b95.00
6.7.1-beta.77880.01
6.7.1-beta.90bca.00
6.6.60
6.6.50
6.6.30
6.6.20
6.6.11
6.6.00
6.5.10
6.5.01
6.4.31
6.4.20
6.4.10
6.4.01
6.3.00
6.2.22
6.2.10
6.2.0-beta3
6.1.10
6.1.00
6.0.51
6.0.41
6.0.30
6.0.20
6.0.11
6.0.00
5.2.10
5.2.00
5.1.30
5.1.20
5.1.10
5.1.00
5.0.10
5.0.00
4.2.20
4.2.10
4.2.00
4.1.00
4.0.11
4.0.00
3.6.00
3.5.10
3.4.30
3.4.20
3.4.10
3.4.00
3.3.111
3.3.100
3.3.90
3.3.81
3.3.70
3.3.50
3.3.42
3.3.30
3.3.20
3.3.10
3.2.10
3.2.00
3.1.00
3.0.10
3.0.00
2.2.00
2.1.00
2.0.00
1.0.20
1.0.10
1.0.00

Package Sidebar

Install

npm i miniprogram-build

Weekly Downloads

37

Version

7.0.3

License

MIT

Unpacked Size

470 kB

Total Files

149

Last publish

Collaborators

  • newfuture