Skip to content

Commit 5e0caa6

Browse files
committed
fix(src): update path to src
1 parent c883281 commit 5e0caa6

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

webpack.base.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ module.exports = function (env) {
3232

3333
config = {
3434
devtool: 'source-map',
35-
entry: [__dirname + '/lib/index.js'],
35+
entry: [__dirname + '/src/index.js'],
3636
devtool: 'source-map',
3737
output: {
3838
path: __dirname + '/dist',
@@ -78,7 +78,7 @@ module.exports = function (env) {
7878
},
7979
resolve: {
8080
alias: {
81-
reactstrap: 'lib/index'
81+
reactstrap: 'src/index'
8282
},
8383
extensions: ['', '.js', '.jsx', '.json'],
8484
root: [

webpack.test.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ var webpackConfig = {
3232
},
3333
resolve: {
3434
alias: {
35-
reactstrap: path.resolve('./lib/index.js')
35+
reactstrap: path.resolve('./src/index.js')
3636
},
3737
extensions: ['', '.js', '.jsx', '.json']
3838
},

0 commit comments

Comments
 (0)