Skip to content

Commit

Permalink
Remove limitation to Node version (#86)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcomontalbano committed Jun 17, 2021
1 parent f9736c6 commit 168b1e7
Show file tree
Hide file tree
Showing 17 changed files with 19 additions and 19 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

strategy:
matrix:
node: [10.x, 12.x, 13.x, 14.x]
node: [10.13.0, 10.x, 12.x, 13.x, 14.x, 15.x, 16.x]

steps:
- name: Checkout 🛎️
Expand Down Expand Up @@ -40,7 +40,7 @@ jobs:
- name: Node 🧰
uses: actions/setup-node@v1
with:
node-version: 12.x
node-version: 14.x

- name: Install 📦
run: yarn --frozen-lockfile
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
# - name: Node 🧰
# uses: actions/setup-node@v1
# with:
# node-version: 12.x
# node-version: 14.x

# - name: Install 📦
# run: yarn --frozen-lockfile
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Node 🧰
uses: actions/setup-node@v1
with:
node-version: 12.x
node-version: 14.x

- name: Install 📦
run: yarn --frozen-lockfile
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
},
"dependencies": {},
"engines": {
"node": ">= 10.13 <= 14.x"
"node": ">= 10.13"
},
"husky": {
"hooks": {
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"globby": "~11.0.3"
},
"engines": {
"node": ">= 10.13 <= 14.x"
"node": ">= 10.13"
},
"files": [
"/bin",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@
"p-limit": "^3.1.0"
},
"engines": {
"node": ">= 10.13 <= 14.x"
"node": ">= 10.13"
}
}
2 changes: 1 addition & 1 deletion packages/output-components-as-es6/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@
"mini-svg-data-uri": "~1.2.3"
},
"engines": {
"node": ">= 10.13 <= 14.x"
"node": ">= 10.13"
}
}
2 changes: 1 addition & 1 deletion packages/output-components-as-stdout/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@
"@figma-export/types": "^3.2.0"
},
"engines": {
"node": ">= 10.13 <= 14.x"
"node": ">= 10.13"
}
}
2 changes: 1 addition & 1 deletion packages/output-components-as-svg/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@
"make-dir": "~3.1.0"
},
"engines": {
"node": ">= 10.13 <= 14.x"
"node": ">= 10.13"
}
}
2 changes: 1 addition & 1 deletion packages/output-components-as-svgr/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@
"make-dir": "~3.1.0"
},
"engines": {
"node": ">= 10.13 <= 14.x"
"node": ">= 10.13"
}
}
2 changes: 1 addition & 1 deletion packages/output-components-as-svgstore/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@
"svgstore": "~3.0.0-2"
},
"engines": {
"node": ">= 10.13 <= 14.x"
"node": ">= 10.13"
}
}
2 changes: 1 addition & 1 deletion packages/output-styles-as-css/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@
"make-dir": "~3.1.0"
},
"engines": {
"node": ">= 10.13 <= 14.x"
"node": ">= 10.13"
}
}
2 changes: 1 addition & 1 deletion packages/output-styles-as-less/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@
"make-dir": "~3.1.0"
},
"engines": {
"node": ">= 10.13 <= 14.x"
"node": ">= 10.13"
}
}
2 changes: 1 addition & 1 deletion packages/output-styles-as-sass/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@
"make-dir": "~3.1.0"
},
"engines": {
"node": ">= 10.13 <= 14.x"
"node": ">= 10.13"
}
}
2 changes: 1 addition & 1 deletion packages/transform-svg-with-svgo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@
"svgo": "~1.3.2"
},
"engines": {
"node": ">= 10.13 <= 14.x"
"node": ">= 10.13"
}
}
2 changes: 1 addition & 1 deletion packages/types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"access": "public"
},
"engines": {
"node": ">= 10.13 <= 14.x"
"node": ">= 10.13"
},
"dependencies": {
"figma-js": "~1.13.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@
"access": "public"
},
"engines": {
"node": ">= 10.13 <= 14.x"
"node": ">= 10.13"
}
}
2 changes: 1 addition & 1 deletion packages/website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,6 @@
"preact": "~10.5.13"
},
"engines": {
"node": ">= 10.13 <= 14.x"
"node": ">= 10.13"
}
}

0 comments on commit 168b1e7

Please sign in to comment.