Files
.github
.storybook
__mocks__
docs
example
src
.babelrc
.editorconfig
.eslintrc
.gitignore
.nvmrc
.stylelintrc
.travis.yml
CODE_OF_CONDUCT.md
CONTRIBUTING.md
LICENSE
README.md
netlify.toml
package.json
wallaby.config.js
webpack.base.js
webpack.dev.js
webpack.prod.js
yarn.lock
static-cms/.babelrc
Andrey Okonetchnikov 434f45c97c Webpack optimizations ()
* Less repetition in webpack configs. Minify CSS classnames in production.

* Ignore all optional deps of moment.js. Fixes 

* Added target to webpack config

* Automatically extract all 3rd party modules into a separate 'vendor' chunk

* Inline only assets that are smaller than 10KB

* Added autoprefixer options

* Replaced sinfle babel transforms with the stage-1 preset. Cleaned up webpack configs.

* Do not include hot module replacement in production
2016-10-26 15:51:35 -02:00

5 lines
73 B
Plaintext

{
"presets": ["es2015", "stage-1", "react"],
"plugins": ["lodash"]
}