Skip to content

Commit

Permalink
chore(deps): update all dependencies (#12)
Browse files Browse the repository at this point in the history
* chore: update all packages

* test: use fixtures

* chore: remove unused code and dependencies

* chore: add `@types/node`

* chore: rebuild `package-lock.json`

* ci: update Node.js version

* chore: rebuild `package-lock.json`

* test: remove `only`
  • Loading branch information
angeloashmore committed Jan 27, 2024
1 parent 77474e6 commit 2c5330e
Show file tree
Hide file tree
Showing 31 changed files with 4,543 additions and 9,126 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node: [14]
node: [18]

steps:
- name: Set up Node
Expand Down Expand Up @@ -49,11 +49,11 @@ jobs:
run: npm run build

- name: Coverage
if: matrix.os == 'ubuntu-latest' && matrix.node == 14
if: matrix.os == 'ubuntu-latest' && matrix.node == 18
uses: codecov/codecov-action@v3

- name: Size
if: github.event_name == 'pull_request' && matrix.os == 'ubuntu-latest' && matrix.node == 14
if: github.event_name == 'pull_request' && matrix.os == 'ubuntu-latest' && matrix.node == 18
uses: andresz1/size-limit-action@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
31 changes: 26 additions & 5 deletions .prettierrc
@@ -1,10 +1,31 @@
{
"plugins":[
"prettier-plugin-jsdoc"
],
"plugins": ["@trivago/prettier-plugin-sort-imports", "prettier-plugin-jsdoc"],
"jsdocCapitalizeDescription": false,
"jsdocSeparateReturnsFromParam": true,
"jsdocSingleLineComment": false,
"jsdocSeparateTagGroups": true,
"jsdocCommentLineStrategy": "multiline",
"tsdoc": true,
"importOrder": [
"^vitest(/|$)",
"^node:",
"<THIRD_PARTY_MODULES>",
"^(?!.*/src(/|$)).*/__testutils__(/|$)",
"^(?!.*/src(/|$)).*/__fixtures__(/|$)",
"^(?!.*/src(/|$)).*/lib(/|$)",
"^(?!.*/src(/|$)).*/types(/|$)",
"^(?!.*/src(/|$)).*/errors(/|$)",
"^(?!.*/src(/|$))../../../../../",
"^(?!.*/src(/|$))../../../../",
"^(?!.*/src(/|$))../../../",
"^(?!.*/src(/|$))../../",
"^(?!.*/src(/|$))../",
"^(?!.*/src(/|$))./(.*/)+",
"^(?!.*/src(/|$))./",
"/src(/|$)"
],
"importOrderSeparation": true,
"importOrderSortSpecifiers": true,
"importOrderGroupNamespaceSpecifiers": true,
"printWidth": 80,
"useTabs": true,
"semi": true,
Expand All @@ -13,7 +34,7 @@
"jsxSingleQuote": false,
"trailingComma": "all",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"bracketSameLine": false,
"arrowParens": "always",
"requirePragma": false,
"insertPragma": false,
Expand Down
4 changes: 2 additions & 2 deletions examples/custom-types/tsconfig.json
Expand Up @@ -4,7 +4,7 @@
"target": "ESNext",
"module": "ESNext",
"lib": ["ESNext"],
"moduleResolution": "Node"
"moduleResolution": "Node",
},
"include": ["index.ts"]
"include": ["index.ts"],
}
4 changes: 2 additions & 2 deletions examples/shared-slices/tsconfig.json
Expand Up @@ -4,7 +4,7 @@
"target": "ESNext",
"module": "ESNext",
"lib": ["ESNext"],
"moduleResolution": "Node"
"moduleResolution": "Node",
},
"include": ["index.ts"]
"include": ["index.ts"],
}

0 comments on commit 2c5330e

Please sign in to comment.