Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Speedometer: Make React/Redux item order consistent
https://bugs.webkit.org/show_bug.cgi?id=175818 Reviewed by Joseph Pecoraro. Based on the patch made by Mathias Bynens. Re-generated project files. Also tweaked the instruction in package.json so that newly generated files in build/* replace dist/* instead of being moved under dist/build/ by rm -rf'ing dist directory first. * Speedometer/resources/todomvc/architecture-examples/react-redux/dist/index.html: * Speedometer/resources/todomvc/architecture-examples/react-redux/dist/static/js/main.43a0948c.js: Removed. * Speedometer/resources/todomvc/architecture-examples/react-redux/dist/static/js/main.43a0948c.js.map: Removed. * Speedometer/resources/todomvc/architecture-examples/react-redux/dist/static/js/main.69cd9655.js: Added. * Speedometer/resources/todomvc/architecture-examples/react-redux/dist/static/js/main.69cd9655.js.map: Added. * Speedometer/resources/todomvc/architecture-examples/react-redux/package.json: * Speedometer/resources/todomvc/architecture-examples/react-redux/src/reducers/todos.js: Forced new items to be appended rather than prepended. * Speedometer/resources/todomvc/architecture-examples/react-redux/yarn.lock: Removed unnecessary file. Canonical link: https://commits.webkit.org/192559@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@221105 268f45cc-cd09-0410-ab3c-d52691b4dbfc
- Loading branch information
Showing
with
34 additions
and 5,541 deletions.
- +21 −0 PerformanceTests/ChangeLog
- +1 −1 PerformanceTests/Speedometer/resources/todomvc/architecture-examples/react-redux/dist/index.html
- +0 −8 ...s/Speedometer/resources/todomvc/architecture-examples/react-redux/dist/static/js/main.43a0948c.js
- +0 −1 ...eedometer/resources/todomvc/architecture-examples/react-redux/dist/static/js/main.43a0948c.js.map
- +8 −0 ...s/Speedometer/resources/todomvc/architecture-examples/react-redux/dist/static/js/main.69cd9655.js
- +1 −0 ...eedometer/resources/todomvc/architecture-examples/react-redux/dist/static/js/main.69cd9655.js.map
- +1 −1 PerformanceTests/Speedometer/resources/todomvc/architecture-examples/react-redux/package.json
- +2 −2 ...rmanceTests/Speedometer/resources/todomvc/architecture-examples/react-redux/src/reducers/todos.js
- +0 −5,528 PerformanceTests/Speedometer/resources/todomvc/architecture-examples/react-redux/yarn.lock
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -1 +1 @@ | ||
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1"><title>React Redux TodoMVC example</title><link href="./static/css/main.f04a7319.css" rel="stylesheet"></head><body><div class="todoapp" id="root"></div><script type="text/javascript" src="./static/js/main.69cd9655.js"></script></body></html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -15,7 +15,7 @@ | ||
}, | ||
"scripts": { | ||
"start": "react-scripts start", | ||
"build": "rm -rf dist && react-scripts build && mv build dist", | ||
"test": "react-scripts test" | ||
}, | ||
"homepage": "./" | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.