Skip to content

Commit c24380f

Browse files
Upgrade node requirement to 14 (#47)
1 parent 9e2df1f commit c24380f

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ jobs:
88
- name: Begin CI...
99
uses: actions/checkout@v2
1010

11-
- name: Use Node 12
11+
- name: Use Node 14
1212
uses: actions/setup-node@v2
1313
with:
14-
node-version: 12.x
14+
node-version: 14.x
1515

1616
- name: Use cached node_modules
1717
uses: actions/cache@v2
1818
with:
1919
path: node_modules
20-
key: nodeModules-${{ hashFiles('**/yarn.lock') }}
20+
key: nodeModules2-${{ hashFiles('**/yarn.lock') }}
2121
restore-keys: |
2222
nodeModules-
2323

.node-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
14.17.4

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
[![](https://github.com/gregplaysguitar/react-object-input/workflows/Build/badge.svg)](https://github.com/gregplaysguitar/react-object-input/actions?query=workflow%3ABuild)
44
[![NPM](https://img.shields.io/npm/v/react-object-input.svg)](https://www.npmjs.com/package/react-object-input)
5+
[![Netlify Status](https://api.netlify.com/api/v1/badges/3a742aea-603f-46cf-9d59-145bdb59cc88/deploy-status)](https://app.netlify.com/sites/react-object-input/deploys)
56

67
A React component which facilitates user-friendly editing of plain javascript objects. The result acts as a [controlled component](https://reactjs.org/docs/forms.html#controlled-components), suitable for use in a React form - no internal state to get out of sync. The UI maintains consistent order of items, despite `object` giving no order guarantees.
78

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"src"
2121
],
2222
"engines": {
23-
"node": ">=10"
23+
"node": ">=12"
2424
},
2525
"scripts": {
2626
"start": "tsdx watch",

0 commit comments

Comments
 (0)