Commit Graph

2028 Commits

Author SHA1 Message Date
Kristofer Selbekk
1f61e8d834 Move generating dynamic meta tags on the server to its own file 2018-10-07 20:04:32 +02:00
Kristofer Selbekk
5c44972a4c Move using https in development to its own file 2018-10-07 20:03:07 +02:00
Kristofer Selbekk
4e7e32f57c Move integrating with an API backend to its own file 2018-10-07 20:01:18 +02:00
Kristofer Selbekk
aec99b5678 Move fetching data with ajax requests to its own file 2018-10-07 19:59:28 +02:00
Kristofer Selbekk
8bcfcc4bb6 Move can i use decorators to its own file 2018-10-07 19:55:33 +02:00
Kristofer Selbekk
44e485452c Move adding custom environment variables to its own file 2018-10-07 19:50:33 +02:00
Kristofer Selbekk
56a5b33c39 Move adding a router to its own file 2018-10-07 19:47:52 +02:00
Kristofer Selbekk
ac098880a7 Move adding relay to its own file 2018-10-07 19:46:41 +02:00
Kristofer Selbekk
c6328d6a31 Move adding flow to its own file 2018-10-07 19:45:27 +02:00
Kristofer Selbekk
831b3045c2 Move adding bootstrap to its own file 2018-10-07 19:44:15 +02:00
Kristofer Selbekk
077d72e3e9 Move using global variables to its own file 2018-10-07 19:42:31 +02:00
Kristofer Selbekk
64df12454a Move using the public folder to its own file 2018-10-07 19:41:00 +02:00
Kristofer Selbekk
8390f85000 Move adding images, fonts and files to its own file 2018-10-07 19:39:22 +02:00
Kristofer Selbekk
b10600eec4 Move post-processing css to its own file 2018-10-07 19:36:38 +02:00
Kristofer Selbekk
323cd742fe Move adding a sass stylesheet to its own file 2018-10-07 19:35:17 +02:00
Kristofer Selbekk
4249b3f8d7 Move adding a css modules stylesheet to its own file 2018-10-07 19:33:57 +02:00
Kristofer Selbekk
a6ce4c281d Move adding a stylesheet to its own file 2018-10-07 19:32:17 +02:00
Kristofer Selbekk
4b58d94fc4 Move code splitting to its own file 2018-10-07 19:30:56 +02:00
Kristofer Selbekk
12ed327f05 Move importing a component to its own file 2018-10-07 19:28:08 +02:00
Kristofer Selbekk
a1d3a58543 Move installing a dependency to its own file 2018-10-07 19:26:20 +02:00
Kristofer Selbekk
b4b3581f5c Move changing the page title to its own file 2018-10-07 19:24:10 +02:00
Kristofer Selbekk
7452933216 Move supported language features into its own file 2018-10-07 19:21:57 +02:00
Kristofer Selbekk
46da78ad4f Move supported browsers to its own file 2018-10-07 19:17:18 +02:00
Kristofer Selbekk
eb91435505 Move developing components in isolation into its own file 2018-10-07 19:15:24 +02:00
Kristofer Selbekk
621943d5ce Move updating to new releases to its own file 2018-10-07 19:12:06 +02:00
Kristofer Selbekk
3692e7b9f4 Move analyzing the bundle size into its own file 2018-10-07 19:10:09 +02:00
Kristofer Selbekk
eee5197d37 Move proxying api requests in development to its own file 2018-10-07 19:06:47 +02:00
Kristofer Selbekk
b86344ffe1 Move formatting code automatically to its own file 2018-10-07 19:01:54 +02:00
Kristofer Selbekk
15bc819d14 Move debugging in the editor to its own file 2018-10-07 18:58:51 +02:00
Kristofer Selbekk
f5dfa21d7f Move lint output to its own file 2018-10-07 18:56:53 +02:00
Kristofer Selbekk
e9fff0fd7e Move syntax highlighting to its own file 2018-10-07 18:54:28 +02:00
Kristofer Selbekk
88e5de2ea9 fixup! Move available scripts into its own file 2018-10-07 18:49:36 +02:00
Kristofer Selbekk
c5590b72f3 Move folder structure into its own file 2018-10-07 18:48:49 +02:00
Kristofer Selbekk
196fa46d1d Move something missing to its own page 2018-10-07 18:43:35 +02:00
Kristofer Selbekk
4c90f07e04 Move sending feedback to its own file 2018-10-07 18:40:50 +02:00
Kristofer Selbekk
f9ab037907 Move publishing components to npm to its own file 2018-10-07 18:40:38 +02:00
Kristofer Selbekk
0651a47661 Move troubleshooting to its own file 2018-10-07 18:34:29 +02:00
Kristofer Selbekk
cd1522a890 Move deployment to its own file 2018-10-07 18:29:28 +02:00
Kristofer Selbekk
4720741a5e Move debugging tests to its own file 2018-10-07 18:24:26 +02:00
Kristofer Selbekk
c9d4da2fe8 Move running tests into its own file 2018-10-07 18:22:04 +02:00
Kristofer Selbekk
d1b54c4dcc Move available scripts into its own file 2018-10-07 18:18:49 +02:00
Kristofer Selbekk
c17858fdea Add some headings to the getting started section 2018-10-07 17:51:45 +02:00
Mikhail Vasin
4879425e69 Fix typo (#5337)
* Fix typo

* Clean up change description
2018-10-07 11:49:25 -04:00
Kristofer Selbekk
ca49a97a0f Simplify the front page and add some styles 2018-10-07 17:23:16 +02:00
Oskar Persson
9fd98447d8 Fix file size report after build (#5335)
Fixes #5333

printFileSizesAfterBuild calls canReadAsset with an object containing
the file name while measureFileSizesBeforeBuild calls it with just the
name. When canReadAsset only receives the name it returns false since
accessing the `name` property results in undefined.

This commit fixes that by having canReadAssset instead expect only the
file name and making printFileSizesAfterBuild just like
measureFileSizesBeforeBuild only provide the name as argument.
2018-10-06 18:27:30 -04:00
simonCordovaByte9
b201aee073 Update README.md (#5302) 2018-10-06 18:22:39 -04:00
Ragnar Rebase
12f794cfdb Update README due to deprecation of react-testing-library's toBeInTheDOM (#5334) 2018-10-06 18:20:27 -04:00
Almero Steyn
81830dc9a2 Update eslint-plugin-jsx-a11y version (#5330) 2018-10-06 15:13:34 -04:00
David Gilbertson
f9c1a76037 README link fixes (#5326)
* Fix broken link in main README

* Fix incorrect link in user guide README
2018-10-05 19:59:51 -04:00
Behzod Saidov
fcb4f98c4e Updated the URL in index.html (#5327)
It seems correct URL is https://developers.google.com/web/fundamentals/web-app-manifest/
Current URL (https://developers.google.com/web/fundamentals/engage-and-retain/web-app-manifest/) is redirecting to there.
2018-10-05 19:58:55 -04:00