FAQ
怎么编译成微信或抖音小程序
以编译成微信小程序为例:
- 首先明确我们编译目标为微信小程序,需要在
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', // 编译模式
}
]
怎么指定产物的路径
默认产物目录 dist
下是编译的产物结果,对输出产物目录进行修改有两种方式:
mor.config.ts
配置修改,通过 MorJS 基础 - 配置 可以查到配置项 outputPath 对此进行设置,修改输出产物目录。- 命令行
--output-path
配置,通过 MorJS 基础 - 命令行 可以查到--output-path
用于修改输出产物目录,优先级比mor.config.ts
配置。
方案一:
// mor.config.ts
export default defineConfig([
...
{
name: 'wechat',
...,
outputPath: 'build/wechat', // 产物路径
}
]
方案二:
$ mor compile --name wechat --output-path build/wechat
未被使用的文件会被编译到产物里吗?
不会,但如果你想把某些未被使用的文件放到产物里,可以在 mor.config.ts
配置中,通过 MorJS 基础 - 配置 配置项 copy,设置要复制到输出目录的文件或文件夹;
// mor.config.ts
export default defineConfig([
...
{
name: 'wechat',
...,
copy: [
{ from: 'anotherFile.json', to: './' }
]
}
]