Skip to content
This repository has been archived by the owner on Oct 17, 2019. It is now read-only.

ts-react/update-deploy-config

Repository files navigation

update-deploy-config

修改部署配置的工具,主要供CI使用

注意: 功能已迁移至walrus-plugin-update-config 本项目停止维护

本项目主要为了配合 @alitajs/umi-plugin-deploy-config 插件 解决CI流程自动化修改配置

安装

// npm 
npm install --dev update-deploy-config

// yarn
yarn add --dev update-deploy-config

或者安装到全局

使用

  • 添加配置文件
// deploy.config.ts || deploy.config.js
import { resolve } from 'path';

export default {
  // config.js 存在的目录 必须设置
  filePath: resolve(__dirname),
  // 配置文件名称 默认config.js
  fileName: 'config.js',
  // 迭代器 
  iterator: (key, obj) => {
    if (key === 'baseURL') {
      return 'test';
    }
    return obj[key];
  }
}
  • 执行命令
update-deploy

Releases

No releases published

Packages

No packages published