Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Polymer/pwa-starter-kit-hn
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: Polymer/pwa-starter-kit-hn
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: push-proxy
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 13 commits
  • 9 files changed
  • 1 contributor

Commits on Jun 13, 2018

  1. Copy the full SHA
    79e5c31 View commit details

Commits on Jun 21, 2018

  1. Copy the full SHA
    4ea14df View commit details

Commits on Aug 6, 2018

  1. Copy the full SHA
    33d5bfb View commit details

Commits on Oct 12, 2018

  1. Copy the full SHA
    3184078 View commit details

Commits on Oct 19, 2018

  1. Copy the full SHA
    d23907b View commit details

Commits on Oct 22, 2018

  1. Copy the full SHA
    e4265c2 View commit details

Commits on Nov 12, 2018

  1. Copy the full SHA
    68a2262 View commit details
  2. Copy the full SHA
    68fff21 View commit details

Commits on Nov 16, 2018

  1. Copy the full SHA
    437d744 View commit details

Commits on Dec 7, 2018

  1. Copy the full SHA
    f1f910d View commit details
  2. Copy the full SHA
    6e829f4 View commit details

Commits on Jan 12, 2019

  1. Copy the full SHA
    0673a33 View commit details

Commits on Feb 8, 2019

  1. Copy the full SHA
    cb7ed5e View commit details
Showing with 819 additions and 7 deletions.
  1. +2 −1 polymer.json
  2. +71 −0 push-manifest.json
  3. +689 −0 server/package-lock.json
  4. +4 −2 server/package.json
  5. +49 −0 server/server.js
  6. +1 −1 src/actions/items.ts
  7. +1 −1 src/actions/lists.ts
  8. +1 −1 src/actions/users.ts
  9. +1 −1 sw-precache-config.js
3 changes: 2 additions & 1 deletion polymer.json
Original file line number Diff line number Diff line change
@@ -6,7 +6,8 @@
],
"extraDependencies": [
"manifest.json",
"node_modules/@webcomponents/webcomponentsjs/**"
"node_modules/@webcomponents/webcomponentsjs/**",
"push-manifest.json"
],
"builds": [
{
71 changes: 71 additions & 0 deletions push-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
{
"/": {
"node_modules/@webcomponents/webcomponentsjs/webcomponents-loader.js": {
"type": "script",
"weight": 1
},
"src/components/hn-app.js": {
"crossorigin": "anonymous",
"type": "script",
"weight": 1
},
"src/components/hn-list.js": {
"crossorigin": "anonymous",
"type": "script",
"weight": 1
},
"/api/news?page=1": {
"crossorigin": "anonymous",
"type": "fetch",
"weight": 1
}
},
"/(new|ask|show|jobs|favorites)": {
"node_modules/@webcomponents/webcomponentsjs/webcomponents-loader.js": {
"type": "script",
"weight": 1
},
"src/components/hn-app.js": {
"crossorigin": "anonymous",
"type": "script",
"weight": 1
},
"src/components/hn-list.js": {
"crossorigin": "anonymous",
"type": "script",
"weight": 1
}
},
"/item": {
"node_modules/@webcomponents/webcomponentsjs/webcomponents-loader.js": {
"type": "script",
"weight": 1
},
"src/components/hn-app.js": {
"crossorigin": "anonymous",
"type": "script",
"weight": 1
},
"src/components/hn-item.js": {
"crossorigin": "anonymous",
"type": "script",
"weight": 1
}
},
"/user": {
"node_modules/@webcomponents/webcomponentsjs/webcomponents-loader.js": {
"type": "script",
"weight": 1
},
"src/components/hn-app.js": {
"crossorigin": "anonymous",
"type": "script",
"weight": 1
},
"src/components/hn-user.js": {
"crossorigin": "anonymous",
"type": "script",
"weight": 1
}
}
}
Loading