Skip to content

Commit

Permalink
Fixlib (#5)
Browse files Browse the repository at this point in the history
* fix(test): Naming of lib file

Fixed naming for test to execute correctly

* fix(umd): Corrected build for UMB library generation
  • Loading branch information
Tzaphkiel committed Apr 26, 2016
1 parent 3831b7b commit 9800076
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "sdmxmllib",
"description": "Javascript library for converting SDMX-ML structure messages",
"version": "0.0.0-semantically-released",
"main": "lib/sdmxmllib.js",
"main": "./lib/sdmxmllib.js",
"scripts": {
"clean": "rm -rf lib/",
"prebuild": "npm run clean",
Expand Down
2 changes: 2 additions & 0 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ const common = {
output: {
path: './lib',
filename: '[name].js',
library: "sdmxmllib",
libraryTarget: "umd"
},

resolve: {
Expand Down

0 comments on commit 9800076

Please # to comment.