使用

命令行使用

  1. npm i -g antmove

通过 npm 或 yarn 全局安装才能使用如下命令行

  • antmove wx2my(使用前请将终端切换到需转换编译的微信小程序项目路径)
  1. antmove wx2my -i ./ -o ./dist/alipay-app

如上的命令表示将 ./ 微信小程序项目转换为支付宝小程序项目,转换到 ./dist/alipay-app 目录

Node.js 使用方式

示例

  1. const path = require('path');
  2. const wx2my = require('@amove/wx-alipay');
  3. let outputPath = path.join(__dirname, '../../dist/my-demo');
  4. let inputDirPath = path.join(__dirname, '../../examples/wx-demo');
  5. const opts = {
  6. dist: outputPath,
  7. entry: inputDirPath,
  8. component2: true,
  9. scope: true,
  10. };
  11. wx2my(opts);