Skip to content

Commit

Permalink
Webpack config should use full path for dist folder.
Browse files Browse the repository at this point in the history
  • Loading branch information
Marina Samuel committed Aug 1, 2017
1 parent f69df03 commit 7064a47
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion webpack.addon.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const webpack = require("webpack");
module.exports = {
entry: "./src/ping-centre.js",
output: {
path: "/dist",
path: __dirname + "/dist",
filename: "ping-centre.addon.min.js",
libraryTarget: "commonjs2",
library: "PingCentre"
Expand Down
2 changes: 1 addition & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module.exports = {
entry: "./src/ping-centre.js",
output: {
path: "/dist",
path: __dirname + "/dist",
filename: "ping-centre.min.js",
library: "PingCentre"
},
Expand Down

0 comments on commit 7064a47

Please sign in to comment.