git ssb

0+

Rômulo Alves / plainbudget-next



Commit 9b063e0cf3edbe946b4d70c56fee7a6402b2211b

Upgrades deps

romuloalves committed on 6/24/2019, 12:28:10 PM
Parent: bd4bfedca4b0bd09f8505a662478749de1fe663f

Files changed

next.config.jschanged
now.jsonchanged
package-lock.jsonchanged
package.jsonchanged
static/manifest.jsonchanged
next.config.jsView
@@ -1,1 +1,3 @@
1-module.exports = {};
1 +const withOffline = require('next-offline');
2 +
3 +module.exports = withOffline({});
now.jsonView
@@ -17,17 +17,24 @@
1717 "src": "/.well-known/(.*)",
1818 "dest": "/.well-known/$1",
1919 "headers": {
2020 "content-type": "text/plain",
21- "content-disposition": "inline; filename=\"$1\""
21 + "content-disposition": "inline; filename=\"$1\"",
22 + "Access-Control-Allow-Origin": "*"
2223 }
2324 },
2425 {
2526 "src": "/static/(.*)",
26- "dest": "/static/$1"
27 + "dest": "/static/$1",
28 + "headers": {
29 + "Access-Control-Allow-Origin": "*"
30 + }
2731 },
2832 {
2933 "src": "/(.*)",
30- "dest": "/$1"
34 + "dest": "/$1",
35 + "headers": {
36 + "Access-Control-Allow-Origin": "*"
37 + }
3138 }
3239 ]
33-}
40 +}
package-lock.jsonView
The diff is too large to show. Use a local git client to view these changes.
Old file size: 221841 bytes
New file size: 250736 bytes
package.jsonView
@@ -22,11 +22,12 @@
2222 "url": "https://github.com/romuloalves/plainbudget-next/issues"
2323 },
2424 "homepage": "https://github.com/romuloalves/plainbudget-next#readme",
2525 "dependencies": {
26- "next": "^7.0.2",
26 + "next": "^8.1.0",
27 + "next-offline": "^4.0.2",
2728 "plainbudget": "1.0.0",
28- "prop-types": "15.6.2",
29- "react": "^16.6.3",
30- "react-dom": "^16.6.3"
29 + "prop-types": "^15.7.2",
30 + "react": "^16.8.6",
31 + "react-dom": "^16.8.6"
3132 }
3233 }
static/manifest.jsonView
@@ -1,7 +1,7 @@
11 {
2- "name": "PlainBudget",
3- "short_name": "PlainBudget",
2 + "name": "plainbudget",
3 + "short_name": "plainbudget",
44 "theme_color": "#49cf8b",
55 "background_color": "#49cf8b",
66 "display": "standalone",
77 "Scope": "/",

Built with git-ssb-web