Skip to content

Commit

Permalink
Merge pull request #127 from Sparticuz/feature/deprecations
Browse files Browse the repository at this point in the history
  • Loading branch information
Sparticuz authored Oct 31, 2023
2 parents b9b75fd + 7efd2db commit 3b53ecf
Show file tree
Hide file tree
Showing 7 changed files with 172 additions and 155 deletions.
2 changes: 2 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ module.exports = {
"plugin:etc/recommended",
"plugin:import/typescript",
"plugin:n/recommended-module",
"plugin:deprecation/recommended",
"prettier",
],
files: ["**/*.ts", "**/*.tsx"],
Expand Down Expand Up @@ -90,6 +91,7 @@ module.exports = {
"plugin:etc/recommended",
"plugin:import/typescript",
"plugin:n/recommended-module",
"plugin:deprecation/recommended",
"plugin:ava/recommended",
"prettier",
],
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 18
registry-url: https://registry.npmjs.org/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- run: cat ./package.json
- name: Automated Version Bump
id: version-bump
uses: phips28/gh-action-bump-version@v10.0.1
uses: phips28/gh-action-bump-version@v10.1.1
with:
tag-prefix: "v"
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ const config = {
"",
"^@/(.*)$",
"",
"",
"^[.]",
"",
".json$",
Expand All @@ -56,7 +55,7 @@ const config = {
"jsx",
"typescript",
],
importOrderTypeScriptVersion: "5.1.3",
importOrderTypeScriptVersion: "5.2.2",
// eslint-disable-next-line n/no-unpublished-require
plugins: [require.resolve("@ianvs/prettier-plugin-sort-imports")],
trailingComma: "all",
Expand Down
Loading

0 comments on commit 3b53ecf

Please sign in to comment.