Skip to content

Commit 4878b84

Browse files
author
kiran
committed
Fixed an issue with building dist files
1 parent 52be54d commit 4878b84

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "react-slick",
33
"main": "dist/react-slick.min.js",
4-
"version": "0.6.5",
4+
"version": "0.6.6",
55
"homepage": "https://github.com/akiran/react-slick",
66
"authors": [
77
"Kiran Abburi"

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-slick",
3-
"version": "0.6.5",
3+
"version": "0.6.6",
44
"description": " React port of slick carousel",
55
"main": "./lib",
66
"scripts": {

webpack.config.dist.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ module.exports = {
1212

1313
module: {
1414
loaders: [
15-
{test: /\.jsx$/, loaders: ['babel']}
15+
{test: /\.jsx$/, loaders: ['babel']},
16+
{test: /\.js$/, loaders: ['babel'], exclude: /node_modules/}
1617
]
1718
},
1819

0 commit comments

Comments
 (0)