File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " auto-ellipsis" ,
3- "version" : " 1.1.5 " ,
3+ "version" : " 1.2.0 " ,
44 "description" : " auto-ellipsis is a React component for truncation when content overlength." ,
55 "main" : " ./lib/index.js" ,
66 "scripts" : {
Original file line number Diff line number Diff line change @@ -34,7 +34,6 @@ module.exports = {
3434 postcss : [ autoprefixer ] ,
3535 plugins : [
3636 new webpack . HotModuleReplacementPlugin ( ) ,
37- new webpack . optimize . OccurenceOrderPlugin ( ) ,
3837 new webpack . DefinePlugin ( {
3938 'process.env.NODE_ENV' : JSON . stringify ( 'development' ) ,
4039 } ) ,
Original file line number Diff line number Diff line change @@ -7,8 +7,10 @@ var autoprefixer = require('autoprefixer')
77var host = 'http://127.0.0.1:3001'
88
99module . exports = {
10+ devtool : '#eval-source-map' ,
1011 entry : [
1112 'webpack-dev-server/client?' + host ,
13+ 'webpack/hot/dev-server' ,
1214 'mocha!./test/index.js' ,
1315 ] ,
1416 output : {
@@ -31,7 +33,7 @@ module.exports = {
3133 } ,
3234 postcss : [ autoprefixer ] ,
3335 plugins : [
34- new webpack . optimize . OccurenceOrderPlugin ( ) ,
36+ new webpack . HotModuleReplacementPlugin ( ) ,
3537 new webpack . DefinePlugin ( {
3638 'process.env.NODE_ENV' : JSON . stringify ( 'test' ) ,
3739 } ) ,
You can’t perform that action at this time.
0 commit comments