Skip to content

Commit

Permalink
fix(src): update path to src
Browse files Browse the repository at this point in the history
  • Loading branch information
eddywashere committed Mar 28, 2016
1 parent c883281 commit 5e0caa6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions webpack.base.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ module.exports = function (env) {

config = {
devtool: 'source-map',
entry: [__dirname + '/lib/index.js'],
entry: [__dirname + '/src/index.js'],
devtool: 'source-map',
output: {
path: __dirname + '/dist',
Expand Down Expand Up @@ -78,7 +78,7 @@ module.exports = function (env) {
},
resolve: {
alias: {
reactstrap: 'lib/index'
reactstrap: 'src/index'
},
extensions: ['', '.js', '.jsx', '.json'],
root: [
Expand Down
2 changes: 1 addition & 1 deletion webpack.test.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ var webpackConfig = {
},
resolve: {
alias: {
reactstrap: path.resolve('./lib/index.js')
reactstrap: path.resolve('./src/index.js')
},
extensions: ['', '.js', '.jsx', '.json']
},
Expand Down

0 comments on commit 5e0caa6

Please sign in to comment.