File tree Expand file tree Collapse file tree 3 files changed +13
-8
lines changed Expand file tree Collapse file tree 3 files changed +13
-8
lines changed Original file line number Diff line number Diff line change 1+ lib /*
2+ dist /*
3+ node_modules /*
4+ ** /node_modules /*
Original file line number Diff line number Diff line change 11module . exports = function ( config ) {
22 config . set ( {
33
4- basePath : '' ,
4+ basePath : "" ,
55
6- frameworks : [ ' mocha' , ' chai' ] ,
6+ frameworks : [ " mocha" , " chai" ] ,
77
88 files : [
9- ' test_bundle.js'
9+ " test_bundle.js"
1010 ] ,
1111
12- reporters : [ ' progress' ] ,
12+ reporters : [ " progress" ] ,
1313
1414 port : 9876 ,
1515
@@ -19,10 +19,10 @@ module.exports = function (config) {
1919
2020 autoWatch : true ,
2121
22- browsers : [ ' Chrome' ] ,
22+ browsers : [ " Chrome" ] ,
2323
2424 captureTimeout : 60000 ,
2525
2626 singleRun : false
2727 } ) ;
28- } ;
28+ } ;
Original file line number Diff line number Diff line change 11var webpack = require ( "webpack" ) ;
2+ var path = require ( "path" ) ;
23
34var plugins = [
45 new webpack . DefinePlugin ( {
@@ -21,9 +22,9 @@ module.exports = {
2122 entry : [ "./src/DateTimeField.js" ] ,
2223
2324 output : {
24- path : __dirname + "/dist/" ,
25+ path : path . join ( __dirname , "/dist/" ) ,
2526 library : "ReactBootstrapDatetimepicker" ,
26- libraryTarget : "umd" ,
27+ libraryTarget : "umd"
2728 } ,
2829
2930 resolve : {
You can’t perform that action at this time.
0 commit comments