1. 21 Sep, 2018 2 commits
  2. 19 Sep, 2018 1 commit
  3. 20 May, 2018 1 commit
    • Andreas Cederström's avatar
      - [x] Upgrade to webpack 4.8.X (#4077) · d72678fb
      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
      d72678fb
  4. 13 Apr, 2018 1 commit
  5. 23 Mar, 2018 1 commit
  6. 22 Jan, 2018 1 commit
  7. 16 Aug, 2017 1 commit
  8. 02 Aug, 2017 3 commits
    • iamdoron's avatar
      Allow importing package.json (#2468) · 24b18aed
      iamdoron authored
      * Allow importing package.json
      
      * Remove package.json import from App.js template
      
      * fix importing package.json
      
      * Rename variable to reflect path is relative to root
      
      * Check for both package & package.json in ModuleScopePlugin
      
      * Use regex to check relative path to package.json
      
      * Strictly enforce package.json extension on scope plugin
      
      * Add allowedPaths to ModuleScopePlugin ctor and use it to allow app package.json
      
      * Remove package.json import from App.js template
      
      * Add package.json to react-scripts/template, show package version and name in the template
      
      * Remove import package.json from template
      
      * Remove template/package.json and its references in code
      
      * Update ModuleScopePlugin.js
      
      * Update README.md
      24b18aed
    • Ade Viankakrisna Fadlil's avatar
      Format UglifyJs error (#2650) · b643f571
      Ade Viankakrisna Fadlil authored
      * format UglifyJs error
      
      * move formatBuildError to react-dev-utils
      
      * fix readme
      
      * use regex for plucking the path from stack
      
      * make path human readable and fallback to show error if regex not matched
      
      * rename to printBuildError and add link to the docs
      
      * fix link indentation
      
      * improve readibility + shorten link
      b643f571
    • Forbes Lindesay's avatar
      Update webpack version note (#2798) · 13c73603
      Forbes Lindesay authored
      * Remove note about webpackHotDevClient being webpack 1.0 only
      
      It must work in webpack 2 since create-react-app is still using it and is using webpack 2 now.
      
      It would be great if you could add some kind of note about how it differs from the default webpack hot reloaders.
      
      * Update README.md
      
      * Update README.md
      13c73603
  9. 22 May, 2017 1 commit
  10. 20 May, 2017 1 commit
  11. 18 May, 2017 3 commits
  12. 17 May, 2017 2 commits
  13. 14 May, 2017 2 commits
  14. 06 Mar, 2017 1 commit
    • Ade Viankakrisna Fadlil's avatar
      extract generic build functions to react-dev-utils (#1726) · fbdff9d7
      Ade Viankakrisna Fadlil authored
      * Temp rename
      
      * Rename to change the case
      
      * extract generic build functions to react-dev-utils
      
      * tweak package json files and move removeFileNameHash
      
      * revert removeFileNameHash
      
      * use paths.appBuild in printFileSizes
      
      * use paths.appBuild in removeFileNameHash
      
      * change curried functions to regular functions
      
      * add fs-extra to react-dev-utils deps
      
      * move getDifferenceLabel inside printFileSizes
      
      * inline copyPublicFolder
      
      * combine printFileSizes and removeFileNameHash to fileSizeReporter
      
      * fix typo
      
      * Tweak APIs and fix issues
      
      * Fix heading
      
      * Remove missing file
      
      * Newline
      
      * Newline
      
      * Trailing space
      
      * Update FileSizeReporter.js
      
      * Update build.js
      fbdff9d7
  15. 22 Feb, 2017 1 commit
  16. 11 Jan, 2017 2 commits
  17. 10 Dec, 2016 1 commit
  18. 22 Nov, 2016 1 commit
    • Ian McNally's avatar
      add logging of existing default port process on start (#816) · 05c3b55c
      Ian McNally authored
      * add logging of existing port process on start
      
      * Move port process wording in start command on to next line
      
      * Color the named processes as cyan in terminal output
      
      * Add handling for multiple processes on a part
      
      - With the currently process filtering, if multiple processes are returned as running on port 3000, this command would fail. This splits apart the process IDing and the process naming, to support multiple processes.
      - One curious thing about the bash command to get processes, is that it'll include browsers with a window open on localhost:3000. May want to reconsider that.
      
      * Add process directory to existing port warning
      
      - also moved terminal coloring up, when getting the process, to be able to distinguish the process command from the directory
      
      * Change output color to all cyan, except "in"
      
      * Rename getProcessNameOnPort -> getProcessForPort
      
      - better reflects its broadened scope (both command and directory)
      
      * Add checking if process is a CRA instance, to customize port running message
      
      - moved from using package.json to a regex, for reliability
      
      * Move getProcessForPort to react-dev-utils
      
      - also allowed for breakdown of commands into helper methods
      
      * Add documentation for getProcessForPort
      
      * Add getProcessForPort to list of dev-scripts files
      
      * Use app's package name when CRA app is running on another port
      
      * Filter port process by those listening
      
      - Removed the handling of multiple process IDs since you can filtering by listening process (and not have the browser in the list of processes)
      - Trimmed the terminal outputs for better matching (process id) and better terminal output (directory of process)
      
      * Update README on port helpers, to specify only one port returned
      
      * Add ignore of stderr when executing process commands
      
      - Make sure any potential errors don't leak to the user
      05c3b55c
  19. 30 Sep, 2016 1 commit
  20. 25 Sep, 2016 1 commit
  21. 23 Sep, 2016 2 commits