Skip to content
This repository has been archived by the owner on Aug 12, 2023. It is now read-only.

Commit

Permalink
Merge pull request #21 from cbovis/redux-rematch-migration
Browse files Browse the repository at this point in the history
Migrate redux logic to rematch
  • Loading branch information
cbovis committed Sep 30, 2018
2 parents 4d2f45d + 2df7d97 commit d020376
Show file tree
Hide file tree
Showing 71 changed files with 513 additions and 3,634 deletions.
8 changes: 8 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
language: node_js
cache:
directories:
- 'node_modules'
script:
- npm run lint
- npm test
- npm run build
4 changes: 2 additions & 2 deletions config/webpack/production.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const _ = require('lodash');
const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer');
const { compact } = require('lodash');
const CleanWebpackPlugin = require('clean-webpack-plugin');
const merge = require('webpack-merge');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
Expand Down Expand Up @@ -44,7 +44,7 @@ module.exports = (env = {}) =>
output: {
filename: 'assets/js/[name].[chunkhash].bundle.js',
},
plugins: compact([
plugins: _.compact([
new CleanWebpackPlugin([paths.output], {
root: path.resolve(__dirname, '../../'),
}),
Expand Down

0 comments on commit d020376

Please sign in to comment.