Skip to content

Commit

Permalink
docs: Small writing style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bryankennedy committed Feb 19, 2019
1 parent 8733cc7 commit 2cfe771
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/webpack.config.base.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
import path from 'path';
import webpack from 'webpack';

// style files regexes
// Style files regular expressions
const cssRegex = /\.css$/;
const cssModuleRegex = /\.module\.css$/;
const sassRegex = /\.(scss|sass)$/;
const sassModuleRegex = /\.module\.(scss|sass)$/;

// common function to get style loaders
// Common function to get style loaders
const getStyleLoaders = (cssOptions, preProcessor) => {
const loaders = [
require.resolve('style-loader'),
Expand Down

0 comments on commit 2cfe771

Please sign in to comment.