env.js 13.0 KB
Newer Older
fxy060608's avatar
fxy060608 已提交
1
const fs = require('fs')
fxy060608's avatar
fxy060608 已提交
2
const path = require('path')
fxy060608's avatar
fxy060608 已提交
3
const mkdirp = require('mkdirp')
4
const loaderUtils = require('loader-utils')
fxy060608's avatar
fxy060608 已提交
5

雪洛's avatar
雪洛 已提交
6
process.UNI_CLOUD = false
fxy060608's avatar
fxy060608 已提交
7 8
process.UNI_CLOUD_ALIYUN = false
process.env.UNI_CLOUD_PROVIDER = JSON.stringify({})
fxy060608's avatar
fxy060608 已提交
9 10 11 12

if (process.env.UNI_CLOUD_SPACES) {
  try {
    const spaces = JSON.parse(process.env.UNI_CLOUD_SPACES)
fxy060608's avatar
fxy060608 已提交
13
    if (Array.isArray(spaces)) {
雪洛's avatar
雪洛 已提交
14
      process.UNI_CLOUD = spaces.length > 0
fxy060608's avatar
fxy060608 已提交
15 16
      process.UNI_CLOUD_ALIYUN = !!spaces.find(space => space.clientSecret)
      if (spaces.length === 1) {
雪洛's avatar
雪洛 已提交
17
        const space = spaces[0]
雪洛's avatar
雪洛 已提交
18
        console.log(`本项目的uniCloud所用的服务空间为:${space.name}`)
fxy060608's avatar
fxy060608 已提交
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
        if (space.clientSecret) {
          process.env.UNI_CLOUD_PROVIDER = JSON.stringify({
            provider: 'aliyun',
            spaceName: space.name,
            spaceId: space.id,
            clientSecret: space.clientSecret,
            endpoint: space.apiEndpoint
          })
        } else {
          process.env.UNI_CLOUD_PROVIDER = JSON.stringify({
            provider: 'tencent',
            spaceName: space.name,
            spaceId: space.id
          })
        }
fxy060608's avatar
fxy060608 已提交
34 35 36 37 38
      }
    }
  } catch (e) {}
}

fxy060608's avatar
fxy060608 已提交
39 40 41 42 43 44
// h5 暂不支持阿里云服务空间
if (
  process.UNI_CLOUD_ALIYUN &&
  process.env.UNI_PLATFORM === 'h5' &&
  process.env.NODE_ENV === 'production'
) {
雪洛's avatar
雪洛 已提交
45
  console.warn(`当前项目使用了基于阿里云的uniCloud,为解决浏览器跨域问题,必须由阿里云配置安全域名。目前还暂无自主申请界面,请发邮件到service@dcloud.io申请,提供你的appid和计划发布的域名。DCloud同时提供了m3w.cn的二级域名供申请,如:hellounicloud.m3w.cn`)
fxy060608's avatar
fxy060608 已提交
46 47
}

fxy060608's avatar
fxy060608 已提交
48 49 50 51 52
if (process.env.UNI_PLATFORM === 'mp-360') {
  process.env.UNI_PLATFORM = 'h5'
  process.env.UNI_SUB_PLATFORM = 'mp-360'
}

fxy060608's avatar
fxy060608 已提交
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
// 初始化环境变量
const defaultInputDir = '../../../../src'
const defaultOutputDir = '../../../../dist/' +
  (process.env.NODE_ENV === 'production' ? 'build' : 'dev') + '/' +
  process.env.UNI_PLATFORM

if (process.env.UNI_INPUT_DIR && process.env.UNI_INPUT_DIR.indexOf('./') === 0) {
  process.env.UNI_INPUT_DIR = path.resolve(process.cwd(), process.env.UNI_INPUT_DIR)
}
if (process.env.UNI_OUTPUT_DIR && process.env.UNI_OUTPUT_DIR.indexOf('./') === 0) {
  process.env.UNI_OUTPUT_DIR = path.resolve(process.cwd(), process.env.UNI_OUTPUT_DIR)
}

process.env.UNI_PLATFORM = process.env.UNI_PLATFORM || 'h5'
process.env.VUE_APP_PLATFORM = process.env.UNI_PLATFORM
process.env.UNI_INPUT_DIR = process.env.UNI_INPUT_DIR || path.resolve(__dirname, defaultInputDir)
process.env.UNI_OUTPUT_DIR = process.env.UNI_OUTPUT_DIR || path.resolve(__dirname, defaultOutputDir)

fxy060608's avatar
fxy060608 已提交
71 72 73 74 75
if (process.env.UNI_SUB_PLATFORM === 'mp-360') {
  const outputDir = process.env.UNI_OUTPUT_DIR
  process.env.UNI_OUTPUT_DIR = path.resolve(outputDir.substr(0, outputDir.lastIndexOf('h5')), 'mp-360/dist')
}

fxy060608's avatar
fxy060608 已提交
76 77 78 79 80 81 82 83
if (process.env.UNI_PLATFORM === 'app-plus') {
  process.env.UNI_OUTPUT_TMP_DIR = path.resolve(process.env.UNI_OUTPUT_DIR, '../.tmp/app-plus')
}

process.env.UNI_CLI_CONTEXT = path.resolve(__dirname, '../../../../')

process.UNI_LIBRARIES = process.UNI_LIBRARIES || ['@dcloudio/uni-ui']

fxy060608's avatar
fxy060608 已提交
84
if (process.env.NODE_ENV === 'production') { // 发行模式,不启用 cache
85
  delete process.env.UNI_USING_CACHE
fxy060608's avatar
fxy060608 已提交
86 87
}

fxy060608's avatar
fxy060608 已提交
88 89 90
const {
  isSupportSubPackages,
  runByHBuilderX,
91
  // isInHBuilderXAlpha,
fxy060608's avatar
fxy060608 已提交
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
  getPagesJson,
  getManifestJson
} = require('@dcloudio/uni-cli-shared')

const pagesJsonObj = getPagesJson()
// 读取分包
process.UNI_SUBPACKAGES = {}
if (Array.isArray(pagesJsonObj.subPackages)) {
  pagesJsonObj.subPackages.forEach(subPackage => {
    if (subPackage && subPackage.root) {
      const {
        name,
        root,
        independent
      } = subPackage
      process.UNI_SUBPACKAGES[root] = {
        name,
        root,
        independent
      }
    }
  })
}

const manifestJsonObj = getManifestJson()
const platformOptions = manifestJsonObj[process.env.UNI_PLATFORM] || {}

if (manifestJsonObj.debug) {
  process.env.VUE_APP_DEBUG = true
}

process.UNI_STAT_CONFIG = {
  appid: manifestJsonObj.appid
}

127 128
// 默认启用 自定义组件模式
// if (isInHBuilderXAlpha) {
129
let usingComponentsAbsent = false
130
if (!platformOptions.hasOwnProperty('usingComponents')) {
131
  usingComponentsAbsent = true
132
}
fxy060608's avatar
fxy060608 已提交
133
platformOptions.usingComponents = true
134
// }
fxy060608's avatar
fxy060608 已提交
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164

if (process.env.UNI_PLATFORM === 'h5') {
  const optimization = platformOptions.optimization
  if (optimization) {
    // 发行模式且主动启用优化
    const treeShaking = optimization.treeShaking
    if (
      treeShaking &&
      treeShaking.enable &&
      process.env.NODE_ENV === 'production'
    ) {
      process.env.UNI_OPT_TREESHAKINGNG = true
      process.UNI_USER_APIS = new Set()
      if (Array.isArray(treeShaking.modules) && treeShaking.modules.length) {
        const {
          parseUserApis
        } = require('@dcloudio/uni-cli-shared/lib/api')
        try {
          const modules = require('@dcloudio/uni-h5/lib/modules.json')
          process.UNI_USER_APIS = parseUserApis(treeShaking.modules || [], modules)
        } catch (e) {}
      }
    }
    if (optimization.prefetch) {
      process.env.UNI_OPT_PREFETCH = true
    }
    if (optimization.preload) {
      process.env.UNI_OPT_PRELOAD = true
    }
  }
165 166
  const buffer = fs.readFileSync(require.resolve('@dcloudio/uni-h5/dist/index.css'))
  process.env.VUE_APP_INDEX_CSS_HASH = loaderUtils.getHashDigest(buffer, 'md5', 'hex', 8)
fxy060608's avatar
fxy060608 已提交
167 168 169 170 171 172
}

if (process.env.UNI_PLATFORM === 'mp-qq') { // QQ小程序 强制自定义组件模式
  platformOptions.usingComponents = true
}

173
let isNVueCompiler = true
fxy060608's avatar
fxy060608 已提交
174
if (process.env.UNI_PLATFORM === 'app-plus') {
175 176
  if (platformOptions.nvueCompiler === 'weex') {
    isNVueCompiler = false
fxy060608's avatar
fxy060608 已提交
177
  }
fxy060608's avatar
init v3  
fxy060608 已提交
178 179 180 181 182
  if (platformOptions.renderer !== 'native' && // 非 native
    (
      platformOptions.compilerVersion === '3' ||
      platformOptions.compilerVersion === 3
    )
fxy060608's avatar
fxy060608 已提交
183
  ) {
fxy060608's avatar
fxy060608 已提交
184
    delete process.env.UNI_USING_CACHE
fxy060608's avatar
init v3  
fxy060608 已提交
185 186
    process.env.UNI_USING_V3 = true
    platformOptions.usingComponents = true
Q
qiang 已提交
187
    process.env.UNI_OUTPUT_TMP_DIR = ''
188
    isNVueCompiler = true // v3 目前仅支持 uni-app 模式
fxy060608's avatar
init v3  
fxy060608 已提交
189
  }
fxy060608's avatar
fxy060608 已提交
190
  if (platformOptions.renderer === 'native') {
fxy060608's avatar
fxy060608 已提交
191
    // 纯原生目前不提供 cache
192
    delete process.env.UNI_USING_CACHE
fxy060608's avatar
fxy060608 已提交
193 194 195 196 197 198 199
    process.env.UNI_USING_NATIVE = true
    process.env.UNI_USING_V8 = true
    process.env.UNI_OUTPUT_TMP_DIR = ''
  }
} else { // 其他平台,待确认配置方案
  if (
    manifestJsonObj['app-plus'] &&
200
    manifestJsonObj['app-plus']['nvueCompiler'] === 'weex'
fxy060608's avatar
fxy060608 已提交
201
  ) {
202
    isNVueCompiler = false
fxy060608's avatar
fxy060608 已提交
203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218
  }
}

if (isNVueCompiler) {
  process.env.UNI_USING_NVUE_COMPILER = true
}

if (platformOptions.usingComponents === true) {
  if (process.env.UNI_PLATFORM !== 'h5') {
    process.env.UNI_USING_COMPONENTS = true
  }
  if (process.env.UNI_PLATFORM === 'app-plus') {
    process.env.UNI_USING_V8 = true
  }
}

fxy060608's avatar
fxy060608 已提交
219
if (
220 221
  process.env.UNI_USING_COMPONENTS ||
  process.env.UNI_PLATFORM === 'h5'
fxy060608's avatar
fxy060608 已提交
222
) { // 自定义组件模式或 h5 平台
223 224 225 226 227
  const uniStatistics = Object.assign(
    manifestJsonObj.uniStatistics || {},
    platformOptions.uniStatistics || {}
  )

228 229 230
  if (uniStatistics.enable !== false) {
    process.env.UNI_USING_STAT = true
    if (!process.UNI_STAT_CONFIG.appid && process.env.NODE_ENV === 'production') {
231 232 233 234 235 236 237
      console.log()
      console.warn(`当前应用未配置Appid,无法使用uni统计,详情参考:https://ask.dcloud.net.cn/article/36303`)
      console.log()
    }
  }
}

fxy060608's avatar
fxy060608 已提交
238 239 240 241 242 243 244 245 246
if (process.env.UNI_USING_COMPONENTS) { // 是否启用分包优化
  if (platformOptions.optimization) {
    if (
      isSupportSubPackages() &&
      platformOptions.optimization.subPackages &&
      Object.keys(process.UNI_SUBPACKAGES).length
    ) {
      process.env.UNI_OPT_SUBPACKAGES = true
    }
fxy060608's avatar
fxy060608 已提交
247 248
  }
}
249

250 251 252
const warningMsg =
  usingComponentsAbsent
    ? `该应用之前可能是非自定义组件模式,目前以自定义组件模式运行。非自定义组件将于2019年11月1日起停止支持。详见:https://ask.dcloud.net.cn/article/36385`
fxy060608's avatar
fxy060608 已提交
253
    : `uni-app将于2019年11月1日起停止支持非自定义组件模式 [详情](https://ask.dcloud.net.cn/article/36385)`
254 255

const needWarning = !platformOptions.usingComponents || usingComponentsAbsent
fxy060608's avatar
fxy060608 已提交
256
let hasNVue = false
fxy060608's avatar
fxy060608 已提交
257
// 输出编译器版本等信息
fxy060608's avatar
fxy060608 已提交
258 259 260 261
if (process.env.UNI_USING_NATIVE) {
  console.log('当前nvue编译模式:' + (isNVueCompiler ? 'uni-app' : 'weex') +
    ' 。编译模式差异见:https://ask.dcloud.net.cn/article/36074')
} else if (process.env.UNI_PLATFORM !== 'h5') {
fxy060608's avatar
fxy060608 已提交
262 263 264 265 266
  try {
    let info = ''
    if (process.env.UNI_PLATFORM === 'app-plus') {
      const pagesPkg = require('@dcloudio/webpack-uni-pages-loader/package.json')
      if (pagesPkg) {
fxy060608's avatar
fxy060608 已提交
267 268
        const v3Tips = `(v3)详见:https://ask.dcloud.net.cn/article/36599。`
        info = '编译器版本:' + pagesPkg['uni-app']['compilerVersion'] + (process.env.UNI_USING_V3 ? v3Tips : '')
fxy060608's avatar
fxy060608 已提交
269
      }
fxy060608's avatar
fxy060608 已提交
270 271 272
      if (process.env.UNI_USING_V3) {
        console.log(info)
      } else {
fxy060608's avatar
fxy060608 已提交
273 274 275 276 277 278 279 280 281 282 283 284
        const glob = require('glob')
        hasNVue = !!glob.sync('pages/**/*.nvue', {
          cwd: process.env.UNI_INPUT_DIR
        }).length
        if (hasNVue) {
          console.log(info)
          if (needWarning) {
            console.log(warningMsg)
          }
          console.log('当前nvue编译模式:' + (isNVueCompiler ? 'uni-app' : 'weex') +
            ' 。编译模式差异见:https://ask.dcloud.net.cn/article/36074')
        } else {
285
          console.log(info)
fxy060608's avatar
fxy060608 已提交
286 287 288
          if (needWarning) {
            console.log(warningMsg)
          }
289
        }
fxy060608's avatar
fxy060608 已提交
290 291
      }
    } else {
292
      if (needWarning) {
293
        console.log(warningMsg)
294
      }
fxy060608's avatar
fxy060608 已提交
295 296 297
    }
  } catch (e) {}
}
fxy060608's avatar
fxy060608 已提交
298
if (process.env.NODE_ENV !== 'production') { // 运行模式性能提示
fxy060608's avatar
fxy060608 已提交
299
  let perfMsg = `请注意运行模式下,因日志输出、sourcemap以及未压缩源码等原因,性能和包体积,均不及发行模式。`
fxy060608's avatar
fxy060608 已提交
300 301 302
  if (hasNVue) { // app-nvue
    perfMsg = perfMsg + `尤其是app-nvue的sourcemap影响较大`
  } else if (process.env.UNI_PLATFORM.indexOf('mp-') === 0) { // 小程序
fxy060608's avatar
fxy060608 已提交
303
    perfMsg = perfMsg + `若要正式发布,请点击发行菜单或使用cli发布命令进行发布`
fxy060608's avatar
fxy060608 已提交
304 305 306
  }
  console.log(perfMsg)
}
fxy060608's avatar
fxy060608 已提交
307 308 309

const moduleAlias = require('module-alias')

310
// 将 template-compiler 指向修订后的版本
fxy060608's avatar
fxy060608 已提交
311
moduleAlias.addAlias('vue-template-compiler', '@dcloudio/vue-cli-plugin-uni/packages/vue-template-compiler')
fxy060608's avatar
fxy060608 已提交
312
moduleAlias.addAlias('@megalo/template-compiler', '@dcloudio/vue-cli-plugin-uni/packages/@megalo/template-compiler')
313
moduleAlias.addAlias('mpvue-template-compiler', '@dcloudio/vue-cli-plugin-uni/packages/mpvue-template-compiler')
314 315
// vue-loader
moduleAlias.addAlias('vue-loader', '@dcloudio/vue-cli-plugin-uni/packages/vue-loader')
fxy060608's avatar
fxy060608 已提交
316

fxy060608's avatar
fxy060608 已提交
317 318
if (process.env.UNI_USING_V3 && process.env.UNI_PLATFORM === 'app-plus') {
  moduleAlias.addAlias('vue-style-loader', '@dcloudio/vue-cli-plugin-uni/packages/app-vue-style-loader')
319
}
fxy060608's avatar
fxy060608 已提交
320

Q
qiang 已提交
321 322 323
if (process.env.UNI_PLATFORM === 'h5') {
  moduleAlias.addAlias('vue-style-loader', '@dcloudio/vue-cli-plugin-uni/packages/h5-vue-style-loader')
}
fxy060608's avatar
fxy060608 已提交
324

fxy060608's avatar
fxy060608 已提交
325
if (process.env.UNI_PLATFORM === 'mp-toutiao') {
326 327 328 329 330 331 332
  // !important 始终带有一个空格
  moduleAlias.addAlias(
    'postcss-normalize-whitespace',
    '@dcloudio/vue-cli-plugin-uni/packages/postcss-normalize-whitespace'
  )
}

fxy060608's avatar
fxy060608 已提交
333 334 335 336 337 338 339 340 341 342 343 344 345 346 347
if (runByHBuilderX) {
  const oldError = console.error
  console.error = function (msg) {
    if (typeof msg === 'string' && msg.includes(
      '[BABEL] Note: The code generator has deoptimised the styling of')) {
      const filePath = msg.replace('[BABEL] Note: The code generator has deoptimised the styling of ', '').split(
        ' as ')[0]
      console.log('[警告] `' + path.relative(process.env.UNI_INPUT_DIR, filePath) +
        '` 文件体积超过 500KB,已跳过压缩以及 ES6 转 ES5 的处理,手机端使用过大的js库影响性能。')
    } else {
      oldError.apply(console, arguments)
      // TODO 如果是首次运行遇到错误直接退出
    }
  }
}
348

fxy060608's avatar
fxy060608 已提交
349 350
if (
  process.env.UNI_USING_CACHE &&
fxy060608's avatar
fxy060608 已提交
351
  process.env.UNI_PLATFORM !== 'h5' &&
fxy060608's avatar
fxy060608 已提交
352 353 354 355
  !process.env.UNI_USING_V3 &&
  !process.env.UNI_USING_NATIVE
) { // 使用 cache, 拷贝 cache 的 json
  const cacheJsonDir = path.resolve(
fxy060608's avatar
fxy060608 已提交
356
    process.env.UNI_CLI_CONTEXT,
fxy060608's avatar
fxy060608 已提交
357
    'node_modules/.cache/uni-pages-loader/' + process.env.UNI_PLATFORM
fxy060608's avatar
fxy060608 已提交
358 359 360 361
  )
  if (!fs.existsSync(cacheJsonDir)) { //  创建 cache 目录
    mkdirp(cacheJsonDir)
  } else {
fxy060608's avatar
fxy060608 已提交
362
    require('@dcloudio/uni-cli-shared/lib/cache').restore()
fxy060608's avatar
fxy060608 已提交
363 364 365
  }
}

366
const {
367
  initAutoImportComponents,
fxy060608's avatar
fxy060608 已提交
368
  initAutoImportScanComponents
369 370 371 372 373 374 375
} = require('@dcloudio/uni-cli-shared/lib/pages')

process.UNI_AUTO_SCAN_COMPONENTS = !(pagesJsonObj.easycom && pagesJsonObj.easycom.autoscan === false)
initAutoImportComponents(pagesJsonObj.easycom)
if (process.UNI_AUTO_SCAN_COMPONENTS) {
  initAutoImportScanComponents()
}
376

fxy060608's avatar
fxy060608 已提交
377
runByHBuilderX && console.log(`正在编译中...`)
fxy060608's avatar
fxy060608 已提交
378 379 380

module.exports = {
  manifestPlatformOptions: platformOptions
381
}