使用
命令行使用
npm i -g antmove
通过 npm 或 yarn 全局安装才能使用如下命令行
antmove wx2my
(使用前请将终端切换到需转换编译的微信小程序项目路径)
antmove wx2my -i ./ -o ./dist/alipay-app
如上的命令表示将
./
微信小程序项目转换为支付宝小程序项目,转换到./dist/alipay-app
目录
Node.js 使用方式
示例
const path = require('path');
const wx2my = require('@amove/wx-alipay');
let outputPath = path.join(__dirname, '../../dist/my-demo');
let inputDirPath = path.join(__dirname, '../../examples/wx-demo');
const opts = {
dist: outputPath,
entry: inputDirPath,
component2: true,
scope: true,
};
wx2my(opts);