Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/springhgui/compile2ant

wepy2.0.x 编译为支付宝小程序代码插件
https://github.com/springhgui/compile2ant

Last synced: 7 days ago
JSON representation

wepy2.0.x 编译为支付宝小程序代码插件

Awesome Lists containing this project

README

        

# compile2ant
[![npm](https://img.shields.io/npm/v/compile2ant)](https://www.npmjs.com/package/compile2ant)
![NPM](https://img.shields.io/npm/l/compile2ant)
[![npm](https://img.shields.io/npm/dy/compile2ant)](https://www.npmjs.com/package/compile2ant)

wepy2.0.x 编译为支付宝小程序代码插件

### 安装

测试未覆盖支付宝小程序的所有api
如编译后不能正常运行,请提交 issue 或直接 pr,会及时进行兼容

```
npm install compile2ant --save-dev
```

### 配置

`wepy.config.js`
```
const antPlugin = require('compile2ant');

module.exports = {
...
plugins: [
antPlugin()
],
...
}

```

### 编译

直接执行以下命令
```
./node_modules/.bin/wepy build -o ant -t ant --watch
```
或在 `package.json`添加`scripts`如下, 可执行 `npm run ant` 进行编译
```
{
"name": "xxx",
"version": "0.0.2",
"description": "A WePY project",
"main": "weapp/app.js",
"scripts": {
...
"ant": "./node_modules/.bin/wepy build -o ant -t ant --watch",
...
},
...
}
```
### 重要的事情

如果编译后运行报下面的错误,直接注释vendor.js对应的代码
```
TypeError: Function(...) is not a function
```

支付宝小程序 `启用 component2 编译` 一定要开启; `启用基础库2.0` 关闭
支付宝小程序 `启用 component2 编译` 一定要开启; `启用基础库2.0` 关闭
支付宝小程序 `启用 component2 编译` 一定要开启; `启用基础库2.0` 关闭
### MIT