Skip to content

Commit

Permalink
Rename modules folder to src
Browse files Browse the repository at this point in the history
  • Loading branch information
jdlehman committed Jul 25, 2015
1 parent 34324c9 commit 48ba046
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ module.exports = function(config) {
cache: true,
resolve: {
extensions: ['', '.js'],
modulesDirectories: ['node_modules', 'modules'],
modulesDirectories: ['node_modules', 'src'],
fallback: __dirname
},
module: {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"main": "dist/switcheroo.min.js",
"scripts": {
"build": "./node_modules/.bin/webpack",
"lint-src": "./node_modules/.bin/eslint ./modules",
"lint-src": "./node_modules/.bin/eslint ./src",
"lint-test": "./node_modules/.bin/eslint ./test",
"lint": "npm run lint-src && npm run lint-test",
"test": "./node_modules/.bin/karma start --single-run"
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var webpack = require('webpack');

module.exports = {
entry: './modules/index',
entry: './src/index',
module: {
loaders: [
{ test: /\.js$/, loader: 'babel-loader', exclude: /node_modules/ }
Expand Down

0 comments on commit 48ba046

Please sign in to comment.