Skip to content

Commit 246de36

Browse files
upgrade to v0.20.0-alpha.0 and node 14 (#53)
* upgrade to v0.20.0-alpha.0 and node 14 * fix linting and upgrade deps * upgrade alpha.1 * upgrade to final release version
1 parent 7832e57 commit 246de36

File tree

7 files changed

+3973
-5319
lines changed

7 files changed

+3973
-5319
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Use Node.js ${{ matrix.node-version }}
1616
uses: actions/setup-node@v1
1717
with:
18-
node-version: 12.13.0
18+
node-version: 14.17.0
1919
- name: Installing project dependencies
2020
run: |
2121
npm ci

.github/workflows/master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Use Node.js ${{ matrix.node-version }}
1919
uses: actions/setup-node@v1
2020
with:
21-
node-version: 12.13.0
21+
node-version: 14.17.0
2222
- name: Installing project dependencies
2323
run: |
2424
npm ci

greenwood.config.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
const pkg = require('./package.json');
1+
import fs from 'fs';
22

3-
module.exports = {
3+
const pkg = JSON.parse(fs.readFileSync('./package.json', 'utf-8'));
4+
5+
export default {
46
title: 'My Personal Blog',
57
meta: [
68
{ rel: 'icon', href: '/assets/favicon.ico' },

netlify.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77

88

99
[build.environment]
10-
NODE_VERSION = "12.13.0"
10+
NODE_VERSION = "14.17.0"

0 commit comments

Comments
 (0)