- 29 Sep, 2018 1 commit
-
-
Joe Haddad authored
* Correctly lookup assets when using a relative build directory * Hah, var ... * Add e2e test for relative paths * Format svg
-
- 28 Sep, 2018 2 commits
-
-
Maël Nison authored
* Forwards args through thread-loader * Comments & dev
-
Joe Haddad authored
-
- 27 Sep, 2018 6 commits
-
-
Ian Sutherland authored
* Switch back to babel-loader * Preserve existing caller options. Use Object.assign instead of object spread. * Updated filename in package.json * Update comment about cache identifier * Update macro check to use a regex * Move macro check regex out of function
-
Joe Haddad authored
* Remove runtime alias hack * Pass absolute path to preset * Change comment * Give a relative path to absolute runtime * Clean up config * Tweak again * Make absolute runtime the default * Remove runtime package from error overlay
-
David Moodie authored
* Add workbox service worker functionality * Remove debug * Set workboxConfig for when there isn't a cra config file * Remove workbox configuration options as c-r-a isn't planning on supporting optional configuration * Remove c-r-a config path from paths * Add workbox service worker functionality * Remove c-r-a config path from paths * Inline the webpack workbox config * Use settings reccommended by @jeffposnick https://github.com/facebook/create-react-app/pull/4169/#issuecomment-422963072 * Fallback to public url index.html, not root * Add one comment * Update comment * Correct regex
-
Joe Haddad authored
* Output CSS sourcemaps in separate file * explain options
-
Marco Fugaro authored
-
- 26 Sep, 2018 3 commits
-
-
XiaoYan Li authored
-
Joe Haddad authored
-
Joe Haddad authored
-
- 25 Sep, 2018 5 commits
-
-
Joe Haddad authored
* Turn on helpers and test importing something with async/await works * Compiling babel runtime breaks itself * Add helpers option to babel plugin with defaults * Make helpers off by default and on in our configuration * Hit eject and e2e * meh * copy'n'paste * change again * Turn off helpers by default in /prod, /dev, /test * oops * Spread undefined * Use object assign not object spread * Put preset in template since it's needed * Fix e2e tests
-
Joe Haddad authored
* Drop ie 11 support and move polyfills to a new package * More useful directions for what entry point to use https://github.com/facebook/create-react-app/pull/5090#discussion_r220313783 * Clear up what file this polyfill goes in https://github.com/facebook/create-react-app/pull/5090#discussion_r220313980 * Polyfill `window`, not `global` * Remove proxy polyfill file
-
Joe Haddad authored
* Switch to stage 3 css * Tweak default browsers, too
-
Grady Kuhnline authored
* add postcss-preset-env, remove autoprefixer * limit to stage 4
-
Joe Haddad authored
* Add new overrides option * Add file to package.json * Create our own loader * Remove overrides * We have to use a real babel option * Add comments
-
- 24 Sep, 2018 1 commit
-
-
Joe Haddad authored
-
- 21 Sep, 2018 4 commits
-
-
Joe Haddad authored
-
Joe Haddad authored
-
Joe Haddad authored
-
Joe Haddad authored
-
- 20 Sep, 2018 1 commit
-
-
Joe Haddad authored
This is the best behavior so people have seamless upgrades to new React majors. This is probably a terrible default warning from the ESLint plugin, and we need to wait for https://github.com/yannickcr/eslint-plugin-react/issues/1955 before changing this hardcoded behavior. Closes #5034
-
- 19 Sep, 2018 4 commits
-
-
Joe Haddad authored
* No lock files prevents the use of yarn upgrade & outdated * Update deps * Bump Jest across the board * Add safe postcss parser
-
Jeffrey Posnick authored
* Updates to reflect service worker registration being opt-in. * Fixed an anchor link. * Updates to SWPrecacheWebpackPlugin config, and corresponding docs.
-
Joe Haddad authored
* Upgrade html webpack plugin * Fix build
-
Joe Haddad authored
* Disable webpack chunk rollup * Bump timeout * Revert "Bump timeout" This reverts commit 84632115d178b48e08eb75dc5e9a921ece6aa759.
-
- 18 Sep, 2018 3 commits
-
-
Joe Haddad authored
* Revert Lerna dependency, there's too many bugs in v3 * Remove `mjs` support
-
Joe Haddad authored
This reverts commit b43ad04b.
-
Joe Haddad authored
Uglify is no longer maintained and has bugs not present in Terser (its successor)
-
- 17 Sep, 2018 1 commit
-
-
Joe Haddad authored
The `formatter` option is incompatible with with `thread-loader`. The `formatter` option previously accepted a function which was lost during JSON serialization.
-
- 23 Jul, 2018 1 commit
-
- 24 May, 2018 1 commit
-
-
Jack Zhao authored
-
- 20 May, 2018 2 commits
-
-
Jack Zhao authored
* - [x] Upgrade to webpack 4.8.X - [x] Utilize webpack 4 development and production modes - [x] Upgrade webpack dev server - [x] Webpack 4 compatible release of thread-loader - [x] Webpack 4 compatible release of HtmlWebpackPlugin - [x] Webpack 4 compatible release of SwPrecacheWebpackPlugin - [x] Webpack 4 compatible release of WebpackManifestPlugin - [x] Update README - [x] Update WebpackDevServerUtils - [x] Update InterpolateHtmlPlugin - [x] Update ModuleScopePlugin - [x] Update WatchMissingNodeModulesPlugin - [x] Move UglifyJS options to webpack 4 optimize - [x] Move InterpolateHtmlPlugin to make it tapable on HtmlWebpackPlugin - [x] vendor splitting via splitChunks.splitChunks (https://twitter.com/wSokra/status/969633336732905474) - [x] long term caching via splitChunks.runtimeChunk (https://twitter.com/wSokra/status/969679223278505985) - [x] Make sure process.env.NODE_ENV is proxied correctly to `react-error-overlay` - [x] Implicit webpack.NamedModulesPlugin in dev config as its default in webpack 4 - [x] Disable webpack performance hints as we have our own filesize reporter - [x] Replace ExtractTextPlugin with MiniCssExtractPlugin - [x] Switch to css whole file minification via OptimizeCSSAssetsPlugin rather than per module css minification to gain performance * disable module concatenation * fix cleanup * fix optimization * restore tmp removal * preserve * fix css tests * fix test run * fix svg test * revert tmp dir * fix import * fix import * help debugging * fix tests * fix sass test * restore cleanup
-
Andreas Cederström authored
- [x] Utilize webpack 4 development and production modes - [x] Upgrade webpack dev server - [x] Webpack 4 compatible release of thread-loader - [x] Webpack 4 compatible release of HtmlWebpackPlugin - [x] Webpack 4 compatible release of SwPrecacheWebpackPlugin - [x] Webpack 4 compatible release of WebpackManifestPlugin - [x] Update README - [x] Update WebpackDevServerUtils - [x] Update InterpolateHtmlPlugin - [x] Update ModuleScopePlugin - [x] Update WatchMissingNodeModulesPlugin - [x] Move UglifyJS options to webpack 4 optimize - [x] Move InterpolateHtmlPlugin to make it tapable on HtmlWebpackPlugin - [x] vendor splitting via splitChunks.splitChunks (https://twitter.com/wSokra/status/969633336732905474) - [x] long term caching via splitChunks.runtimeChunk (https://twitter.com/wSokra/status/969679223278505985) - [x] Make sure process.env.NODE_ENV is proxied correctly to `react-error-overlay` - [x] Implicit webpack.NamedModulesPlugin in dev config as it...
-
- 27 Apr, 2018 1 commit
-
-
Andreas Cederström authored
-
- 18 Apr, 2018 1 commit
-
-
Fabiano Brito authored
* Installs and adds sass loader task in webpack for dev environment. * Uses Timer's branch of sass-loader without node-sass dependency. * Adds method for handling SASS modules. * Fixes extension of excluded files when looking for scss modules. * Adds support for both .scss and .sass extensions. * Uses ExtractTextPlugin with sass-loader to bundle styles for the production build. * Bundles SASS modules for the production build. * Uses the latest version of sass-loader. * Adds function to create different rules for style loaders in dev environment. * Abstracts style loaders to a common function to avoid repetition. * Simplifies the common function that creates style loaders. * Creates assets for testing SASS/SCSS support. * Creates mock components and unit tests for SASS and SCSS with and without modules. * Creates integration tests for SASS/SCSS support. * Adds node-sass as a template dependency so sass-loader can be tested. * Includes sass tests when test component is mounted. * Fixes asserted module name for sass and scss modules tests. * Removes tests against css imports in SCSS and SASS files. * Updates sass-loader to v7. * Uses getCSSModuleLocalIdent from react-dev-utils. * Fixes tests to match the use of getCSSModuleLocalIdent. * Improves readability of getStyleLoader function. * Uses postcss after sass. * Refactors dev config to simplify common function for style loaders. * Refactors prod config to simplify common function for style loaders. * Use importLoaders config according to css-loader docs.
-
- 13 Apr, 2018 1 commit
-
-
Ro Savage authored
* Update CSS Modules localIndetName * Add missing file to package * Correct regex * plz plz plz
-
- 02 Apr, 2018 2 commits