UNPKG

gmove

Version:

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

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