Skip to content

Commit c61c466

Browse files
committed
fix(src): update paths to src
1 parent 7efac7b commit c61c466

4 files changed

Lines changed: 4 additions & 5 deletions

File tree

test/utils.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import * as Utils from '../lib/utils';
1+
import * as Utils from '../src/utils';
22

33
describe('Utils', () => {
44
describe('getTetherAttachments', () => {

webpack.base.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ module.exports = function (env) {
8282
},
8383
extensions: ['', '.js', '.jsx', '.json'],
8484
root: [
85-
path.resolve('./lib')
85+
path.resolve('./src')
8686
]
8787
},
8888
plugins: plugins

webpack.dev.config.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ var paths = [
2828
];
2929

3030
var config = [{
31-
// context: path.join(__dirname, './lib'),
3231
devtool: 'source-map',
3332
devServer: {
3433
contentBase: './build',
@@ -84,7 +83,7 @@ var config = [{
8483
extensions: ['', '.js', '.jsx', '.json'],
8584
alias: {
8685
'bootstrap-css': path.join(__dirname,'node_modules/bootstrap/dist/css/bootstrap.css'),
87-
reactstrap: path.resolve('./lib')
86+
reactstrap: path.resolve('./src')
8887
}
8988
}
9089
}];

webpack.test.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ var path = require('path');
22
var webpack = require('webpack');
33

44
var webpackConfig = {
5-
context: path.join(__dirname, './lib'),
5+
context: path.join(__dirname, './src'),
66
devtool: 'eval',
77
entry: {
88
reactstrap: ['./index.js']

0 commit comments

Comments
 (0)