UNPKG

gmove

Version:

小程序转换器,基于支付宝/微信小程序转换为多端小程序,让小程序跨平台开发变得简单。init from antmove@1.2.2

22 lines (17 loc) 502 B
const path = require('path') const WechatPlugin = require('@antmove/wx-alipay') const transformFramework = require('../../src/index.js') const outputPath = path.join(__dirname, '../../dist/v2ex') const inputDirPath = path.join(__dirname, '../../examples/wechat-v2ex') const App = transformFramework() App .use(WechatPlugin, { entry: inputDirPath, dist: outputPath, type: 'wx-alipay', component2: true, scope: true, type: 'wx-alipay', component: false, }) .start()