MorJS 代码维度 默认注入的变量

2024-01-17 15:09 更新
  • namemor.config.ts 中的每项配置的 name
  • [name]: true (配置的 name 会转成一个 key)
    • 例如: name: 'ali',那么就会有一个 ali: true,主要用于 ifdef 的场景
  • production 是否是生产环境的配置,生产环境下默认为 true,开发环境下默认为 undefined
  • targetmor.config.ts 中的每项配置的 target
  • [target]: true (配置中的 target 会自动转换成为一个 key)
    • 例如:target: 'alipay',那么就会有一个 alipay: true,主要用于 ifdef 的场景

例如:

当用户配置(mor.config.ts)为如下内容时:

import { defineConfig } from '@morjs/cli'
export default defineConfig([
  {
    name: 'ali',
    mode: 'production',
    target: 'alipay'
  }
])

条件编译的上下文会自动注入如下变量:

{
  name: 'ali',
  ali: true,
  production: true,
  target: 'alipay',
  alipay: true
}


以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号