1 Star 0 Fork 23

netopsoft / AdminLTE2-itcast

forked from taozhiwei / AdminLTE2-itcast 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
fis-plus.js 649 Bytes
一键复制 编辑 原始数据 按行查看 历史
taoshiwei 提交于 2018-03-23 15:01 . 添加 => 加入日期选择
var os = require('os');
var copydir = require('copy-dir');
// ==================================================
// release时同步plugins
// ==================================================
function cpdir(fromPath, toPath) {
var homedir = os.homedir();
var platform = os.platform();
console.log(platform);
var distPath = homedir + '/.fis3-tmp/www/dist/' + toPath;
if (platform == 'win32') {
distPath = homedir + '\\AppData\\Local\\.fis3-tmp\\www\\dist\\' + toPath;
}
// 同步文件
console.log('同步文件 from:' + fromPath + ' , to:' + distPath);
copydir.sync(fromPath, distPath);
}
cpdir('./plugins', 'plugins');
JavaScript
1
https://gitee.com/phpmvcv2/adminlte2-itcast.git
git@gitee.com:phpmvcv2/adminlte2-itcast.git
phpmvcv2
adminlte2-itcast
AdminLTE2-itcast
master

搜索帮助