- 30 Jun, 2018 1 commit
-
-
Ideveloper authored
* Suggest `reactstrap` instead of `react-bootstrap` * Update README.md
-
- 25 Jun, 2018 1 commit
-
-
Jack Zhao authored
-
- 23 Jun, 2018 1 commit
-
-
Dan Abramov authored
-
- 20 Jun, 2018 1 commit
-
-
Anton Rusinov authored
-
- 18 Jun, 2018 2 commits
-
-
Jack Zhao authored
* node10 * token * rerun tests
-
Alex Brazier authored
-
- 07 Jun, 2018 1 commit
-
-
Dmitriy Sadkovoy authored
-
- 05 Jun, 2018 3 commits
-
-
Dmitriy Sadkovoy authored
-
Marius Gedminas authored
-
Dan Abramov authored
-
- 04 Jun, 2018 1 commit
-
-
Jack Zhao authored
Allow bundles to be analyzed with Webpack-specific tools
-
- 03 Jun, 2018 1 commit
-
-
Josh Comeau authored
-
- 01 Jun, 2018 1 commit
-
-
Reuben Antz authored
Update file tree view
-
- 31 May, 2018 3 commits
-
-
Jack Zhao authored
enable manifest plugin on dev
-
Joshua Comeau authored
To analyze Webpack bundles, a "stats" JSON is required. This PR allows that file to be created and saved to the `build` directory, so that users can use it with Webpack-specific insight tools like `webpack-bundle-analyzer` without ejecting their application. Updated the README to include details for how to do this.
-
Jack Zhao authored
Remove trailing spaces from copyright
-
- 24 May, 2018 2 commits
-
-
Joe Haddad authored
-
Jack Zhao authored
-
- 23 May, 2018 1 commit
-
-
Graeme authored
* Update paths.js, rename shadow path variable This file requires the "path" module and sets it to a variable `path`. The function `ensureSlash` also has a variable `path` that then shadows the `path` module. * Update paths.js
-
- 22 May, 2018 1 commit
-
-
Saimon Moore authored
-
- 20 May, 2018 5 commits
-
-
Luis Nell authored
* Removes Chokidar Recursive Flag According to the changelog it is not necessary anymore as it doesn't do anything. * Removes initial build on SCSS watch Chokidar now does this on it's own. * Removes sass watch recursive, default include-path as proposed by @michaelwayman * Removes another left-over build-css
-
jamesvsshark authored
-
Craig Mulligan authored
Support for .mjs files added in #3239 did not account for npm libraries which ship native mjs files alongside js files. This accounts for this by ensuring .js files resolve before their accompanying .mjs file. Note that this is not an ideal end state since selecting a .mjs over a .js extension should be the result of whether `import` was used instead of `require()` in a node environment with native ESM support (currently via `--experimental-modules`). Instead, this change just *always* selects a .js extension before the .mjs extension if it exists. This unbreaks support for using GraphQL (relay, apollo, etc) within create-react-app projects.
-
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 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
-
- 16 May, 2018 1 commit
-
-
Mike Kusold authored
-
- 14 May, 2018 2 commits
-
-
Ian Sutherland authored
* Update svgr to 1.9.2 in order to reduce install size
-
Jack Zhao authored
* verdaccio configs * verdaccio configs * fix typo * revert e2e-installs * move config to tasks
-
- 12 May, 2018 1 commit
-
-
shawn wang authored
Add create-react-app-parcel to alternatives section in README
-
- 11 May, 2018 1 commit
-
-
stereobooster authored
Update babel-plugin-macros to 2.2.1.
-
- 09 May, 2018 1 commit
-
-
Marco Fugaro authored
-
- 08 May, 2018 2 commits
-
-
William Chargin authored
Summary: The `hasSlash` method uses `path.substr(path, path.length - 1)` to remove the last character from `path`. Clearly, the first parameter is suspect; it should be `0`. The code works as written, but only very accidentally: the first parameter is coerced by `ToNumber` to `NaN`, which is then coerced by `ToInteger` to `+0`, per [the spec][1]. [1]: https://www.ecma-international.org/ecma-262/6.0/#sec-string.prototype.substr Test Plan: Reading the spec should be sufficient. To verify in the Real World: ```js const path = "has-slash-but-does-not-need-slash/" const a = path.substr(path, path.length - 1); const b = path.substr(0, path.length - 1); console.log(a === b); // true console.log(a); // has-slash-but-does-not-need-slash ``` wchargin-branch: ensureslash-accidental-coercion
-
arianon authored
* Update getCSSModuleLocalIdent to support Sass * Fix Sass/SCSS index module tests Also make them more consistent with the non-index variants.
-
- 30 Apr, 2018 1 commit
-
-
Trevor Brindle authored
* fix: update envinfo + implementation, update issue_template * update envinfo to 5.4.0, add IE and Edge to —info command,
-
- 28 Apr, 2018 1 commit
-
-
Mikhail Osher authored
* Update sass-loader (#4363) * Added bootstrap scss test (#4376)
-
- 27 Apr, 2018 5 commits
-
-
Mikhail Osher authored
* Support package distribution tags (#4348) * Remove redundand variable check in `getInstallPackage` * Simplify react-scripts version using `--scripts-version=@tagname` notation * Add dist-tag tests to e2e-installs
-
Andreas Cederström authored
-
Chad Greenburg authored
* Updated jest version.
-
Andreas Cederström authored
-
Andreas Cederström authored
-