Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
A
app-manage-console
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
ReactNative
app-manage-console
Commits
a7821093
提交
a7821093
authored
3月 13, 2018
作者:
vipcxj
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
1.generate a webpack config file for ide.
2.update antd to 3.x
上级
eaa3190c
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
47 行增加
和
6 行删除
+47
-6
.gitignore
.gitignore
+1
-0
package.json
package.json
+1
-1
webpack.config.js
webpack.config.js
+45
-5
没有找到文件。
.gitignore
浏览文件 @
a7821093
...
...
@@ -14,3 +14,4 @@ npm-debug.log*
/storybook-static
jsCodeStructure.html
/webpack
package.json
浏览文件 @
a7821093
...
...
@@ -13,7 +13,7 @@
"install-node"
:
"6.9.2"
},
"dependencies"
:
{
"
antd
"
:
"^
2.13.11
"
,
"
antd
"
:
"^
3.3.0
"
,
"
axo
"
:
"0.0.2"
,
"
bowser
"
:
"^1.8.1"
,
"
dva
"
:
"^2.2.0-beta.2"
,
...
...
webpack.config.js
浏览文件 @
a7821093
const
LodashModuleReplacementPlugin
=
require
(
'lodash-webpack-plugin'
);
/* eslint-disable no-param-reassign */
const
path
=
require
(
'path'
);
const
omit
=
require
(
'lodash/omit'
);
const
isFunction
=
require
(
'lodash/isFunction'
);
const
isUndefined
=
require
(
'lodash/isUndefined'
);
const
isObject
=
require
(
'lodash/isObject'
);
const
isEmpty
=
require
(
'lodash/isEmpty'
);
const
isArray
=
require
(
'lodash/isArray'
);
const
iteratee
=
require
(
'lodash/iteratee'
);
const
flatten
=
require
(
'lodash/flatten'
);
const
includes
=
require
(
'lodash/includes'
);
const
transform
=
require
(
'lodash/transform'
);
const
inspect
=
require
(
'util'
).
inspect
;
const
writeFileSync
=
require
(
'fs'
).
writeFileSync
;
function
pickDeep
(
collection
,
...
args
)
{
let
predicate
=
args
[
0
];
if
(
isFunction
(
predicate
))
{
predicate
=
iteratee
(
predicate
);
}
else
{
const
keys
=
flatten
(
args
);
predicate
=
(
val
,
key
)
=>
{
return
includes
(
keys
,
key
);
};
}
return
transform
(
collection
,
(
memo
,
val
,
key
)
=>
{
let
include
=
predicate
(
val
,
key
);
if
(
include
&&
(
isObject
(
val
)
||
isArray
(
val
)))
{
val
=
pickDeep
(
val
,
predicate
);
include
=
!
isEmpty
(
val
);
}
if
(
include
)
{
if
(
isArray
(
collection
))
{
memo
.
push
(
val
);
}
else
{
memo
[
key
]
=
val
;
}
}
});
}
module
.
exports
=
function
webpack
(
config
)
{
console
.
log
(
config
);
config
.
module
.
rules
.
push
({
test
:
/
\.
ejs$/
,
loader
:
'ejs-loader'
,
});
// config.plugins.push(
// new LodashModuleReplacementPlugin(),
// );
let
cleanedConfig
=
omit
(
config
,
'plugins'
);
cleanedConfig
.
resolve
=
omit
(
cleanedConfig
.
resolve
,
'plugins'
);
cleanedConfig
=
pickDeep
(
cleanedConfig
,
v
=>
!
isFunction
(
v
)
&&
!
isUndefined
(
v
));
writeFileSync
(
path
.
resolve
(
__dirname
,
'webpack/webpack.config.js'
),
`module.exports =
${
inspect
(
cleanedConfig
,
false
,
null
)}
;`
);
return
config
;
};
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论