Skip to content

Commit

Permalink
chore: Update dependencies (#29)
Browse files Browse the repository at this point in the history
Updated packages to their latest version except `gettext-parser`
since there are a lot of changes that might affect the usage of
the library.

Removed packages that were not used in the library:
- boxen
- path
- terminal-link
- cross-env
- @types/flat (redundant after v6)

- Updated eslint quote rule to avoid escaping quotes
  • Loading branch information
pmpak authored Nov 23, 2023
1 parent 158c022 commit c28c8ba
Show file tree
Hide file tree
Showing 7 changed files with 1,018 additions and 3,879 deletions.
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@
"@typescript-eslint/prefer-function-type": "error",
"@typescript-eslint/quotes": [
"error",
"single"
"single",
{ "avoidEscape": true }
],
"@typescript-eslint/semi": [
"error",
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,6 @@ jobs:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run lint
- run: npm run build --if-present
- run: npm test
Loading

0 comments on commit c28c8ba

Please sign in to comment.