Skip to content

Commit f1b3042

Browse files
authored
Merge pull request #646 from devrnt/638-use-lower-node-version-to-prevent-npm-claims-about-node-18
638 use lower node version to prevent npm claims about node 18
2 parents 482fe50 + d86105a commit f1b3042

File tree

7 files changed

+10
-7
lines changed

7 files changed

+10
-7
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'react-use-intercom': patch
3+
---
4+
5+
Fix incompatible node engine version

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-20.04
1111
strategy:
1212
matrix:
13-
node-version: [18.14]
13+
node-version: [18.16]
1414
steps:
1515
- name: Checkout
1616
uses: actions/checkout@v3

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
runs-on: ubuntu-20.04
66
strategy:
77
matrix:
8-
node-version: [18.14]
8+
node-version: [18.16]
99

1010
steps:
1111
- name: Checkout

.github/workflows/pull-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
runs-on: ubuntu-20.04
66
strategy:
77
matrix:
8-
node-version: [18.14]
8+
node-version: [18.16]
99

1010
steps:
1111
- name: Checkout

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-20.04
1414
strategy:
1515
matrix:
16-
node-version: [18.14]
16+
node-version: [18.16]
1717

1818
steps:
1919
- name: Checkout

.nvmrc

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

packages/react-use-intercom/package.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,6 @@
1919
"files": [
2020
"dist"
2121
],
22-
"engines": {
23-
"node": ">=18"
24-
},
2522
"exports": {
2623
".": {
2724
"types": "./dist/index.d.ts",

0 commit comments

Comments
 (0)