MorJS 怎么编译成微信或抖音小程序
以编译成微信小程序为例
- 首先明确我们编译目标为微信小程序,需要在
mor.config.ts
配置中添加编译为微信的配置,其中target
值设置为wechat
(配置参考 MorJS 基础 - 配置 - target - 编译目标平台) - 给这份配置起一个配置名字,把
name
设置为配置名称(如:wechat
),其他配置可与基础配置相同保持不变 - 在
package.json
的script
中添加编译为微信的命令"dev:wechat": "mor compile -w --name wechat"
- 终端运行
npm run dev:wechat
,产物dist/wechat
即为编译成微信的产物,用微信 IDE 打开即可
更多具体配置项可查阅 MorJS 基础 - 配置
// mor.config.ts
import { defineConfig } from '@morjs/cli'
export default defineConfig([
...
{
name: 'wechat', // 配置名称
sourceType: 'alipay', // 源码 DSL 类型
target: 'wechat', // 编译目标平台
compileType: 'miniprogram', // 编译类型
compileMode: 'bundle', // 编译模式
}
]