Skip to content

Commit

Permalink
Updated README, small refactor for build.
Browse files Browse the repository at this point in the history
  • Loading branch information
sergioavazquez committed Feb 19, 2019
1 parent aacff1b commit 9720c07
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
[![npm version](https://badge.fury.io/js/meeseeks-js.svg)](https://badge.fury.io/js/meeseeks-js)
[![Build Status](https://travis-ci.com/sergioavazquez/meeseeks-js.svg?branch=master)](https://travis-ci.com/sergioavazquez/meeseeks-js)
[![Coverage Status](https://coveralls.io/repos/github/sergioavazquez/meeseeks-js/badge.svg?branch=master)](https://coveralls.io/github/sergioavazquez/meeseeks-js?branch=master)
![MIT](https://badgen.net/badge/license/MIT/blue)


Simple helper methods for `javaScript` projects.
Expand Down
6 changes: 4 additions & 2 deletions config/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const path = require('path');
const CleanWebpackPlugin = require('clean-webpack-plugin');
const nodeExternals = require('webpack-node-externals');

module.exports = (env, argv) => {
const serverSide = (env, argv) => {
// console.log('webpack production config: ', env, argv);
return{
entry: ['./src/index.js'],
Expand Down Expand Up @@ -50,4 +50,6 @@ module.exports = (env, argv) => {
})
]
}
};
};

module.exports = [ serverSide ]

0 comments on commit 9720c07

Please sign in to comment.