Skip to content

Commit 90bfd4f

Browse files
committed
fix: missing files in dist #2219
1 parent cb36507 commit 90bfd4f

File tree

5 files changed

+18
-4
lines changed

5 files changed

+18
-4
lines changed

CHANGELOG.en-US.md

+6
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@
1010

1111
---
1212

13+
## 1.5.6
14+
15+
`2020-05-09`
16+
17+
- 🐞 Fix the problem of missing css, min.js and other files in the dist folder
18+
1319
## 1.5.5
1420

1521
`2020-05-08`

CHANGELOG.zh-CN.md

+6
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@
1010

1111
---
1212

13+
## 1.5.6
14+
15+
`2020-05-09`
16+
17+
- 🐞 修复 dist 文件夹丢失 css、min.js 等文件问题
18+
1319
## 1.5.5
1420

1521
`2020-05-08`

antd-tools/getWebpackConfig.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,10 @@ function getWebpackConfig(modules) {
132132
{
133133
loader: 'less-loader',
134134
options: {
135-
sourceMap: true,
136-
javascriptEnabled: true,
135+
lessOptions: {
136+
sourceMap: true,
137+
javascriptEnabled: true,
138+
},
137139
},
138140
},
139141
],

antdv-demo

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ant-design-vue",
3-
"version": "1.5.5",
3+
"version": "1.5.6",
44
"title": "Ant Design Vue",
55
"description": "An enterprise-class UI design language and Vue-based implementation",
66
"keywords": [

0 commit comments

Comments
 (0)