Skip to content

Commit 314b0d6

Browse files
tem save
1 parent 466c683 commit 314b0d6

File tree

9 files changed

+9
-6
lines changed

9 files changed

+9
-6
lines changed

.babelrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"presets": [
3-
["@babel/preset-env",{
3+
["@babel/preset-env", {
44
"useBuiltIns": "usage",
55
"targets": {
66
"chrome": "49",

.circleci/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,3 +80,4 @@ workflows:
8080
branches:
8181
only:
8282
- master
83+

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
/app/configs/__mocks__/ajax.js
1111
/app/resource
12+
app/images
1213

1314
# app/configs
1415
# app/components

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
*.js eol=lf
22
*.json eol=lf
33
*.jsx eol=lf
4-
*.ts eol=lf
4+
*.ts eol=lf

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,6 @@ jspm_packages
5454
#cashe
5555
.cache
5656

57-
#app/components/condition1.0
58-
5957
#don't upload node_modules.rar
6058
node_modules.rar
6159

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2017-present, dupi, Inc.
3+
Copyright (c) 2017-present, doupi, Inc.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

readme.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@ login(){
129129
- [] axios异步请求跨域的设置
130130
- [] 实时的webpack包大小预览,方便优化
131131
- [] draftjs编辑器
132+
- [] cypress自动化测试
132133

133134

134135

scripts/webpack.base.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ const webpackConfigBase = {
7777
// },
7878
test: /[\\/]node_modules[\\/]/,
7979
name: 'vendor',
80-
// minChunks: 1,
80+
// minChunks: 2,
8181
priority: -10,// 确定模块打入的优先级
8282
reuseExistingChunk: true,// 使用复用已经存在的模块
8383
enforce: true,

test/Enzyme.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,5 @@ Enzyme.configure({
66
});
77

88
export default Enzyme;
9+
10+

0 commit comments

Comments
 (0)