Skip to content

Commit

Permalink
fix: update to node 18 +
Browse files Browse the repository at this point in the history
  • Loading branch information
The-Code-Monkey committed Jun 19, 2023
1 parent 15e20a2 commit 1084a50
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ jobs:
- uses: actions/checkout@v3
with:
fetch-depth: 0

- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*

- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '16'
node-version: '18'

- name: Cache dependencies
uses: actions/cache@v3
Expand All @@ -32,7 +32,7 @@ jobs:
- name: Install deps
uses: bahmutov/npm-install@v1

- name: Build
run: yarn build

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ['16.x']
node: ['18.x', '20.x']
os: [ubuntu-latest]

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/storybook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ['16.x']
node: ['18.x', '20.x']
os: [ubuntu-latest]

steps:
Expand Down
2 changes: 1 addition & 1 deletion packages/components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"src"
],
"engines": {
"node": ">=16"
"node": ">=18"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion packages/font-picker/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"src"
],
"engines": {
"node": ">=16"
"node": ">=18"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion packages/memoize/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"src"
],
"engines": {
"node": ">=16"
"node": ">=18"
},
"keywords": [
"memoize",
Expand Down
2 changes: 1 addition & 1 deletion packages/react-feather/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"build": "tcm build"
},
"engines": {
"node": ">=16"
"node": ">=18"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion packages/react-lazy-named/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"url": "https://github.com/The-Code-Monkey/TechStack/issues"
},
"engines": {
"node": ">=16"
"node": ">=18"
},
"license": "MIT",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion packages/react-textfit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"url": "https://github.com/The-Code-Monkey/TechStack/issues"
},
"engines": {
"node": ">=16"
"node": ">=18"
},
"main": "./dist/index.js",
"module": "./dist/react-textfit.esm.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/tcm-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"src/conf"
],
"engines": {
"node": ">=16"
"node": ">=18"
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
Expand Down
2 changes: 1 addition & 1 deletion packages/theme/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"src"
],
"engines": {
"node": ">=16"
"node": ">=18"
},
"scripts": {
"build": "tsc -p tsconfig.json && yarn copy",
Expand Down

0 comments on commit 1084a50

Please sign in to comment.