Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
luin committed Mar 18, 2024
1 parent 66fb5ff commit 45a6f59
Show file tree
Hide file tree
Showing 7 changed files with 2,386 additions and 9,826 deletions.
15 changes: 12 additions & 3 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
],
"ignorePatterns": ["vite.config.ts", "scripts"],
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint", "require-extensions"],
"plugins": ["@typescript-eslint", "require-extensions", "tree-shaking"],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module",
Expand All @@ -24,6 +24,15 @@
{
"argsIgnorePattern": "^_"
}
]
}
],
"tree-shaking/no-side-effects-in-initialization": ["error"]
},
"overrides": [
{
"files": ["tests/**/*"],
"rules": {
"tree-shaking/no-side-effects-in-initialization": ["off"]
}
}
]
}
4 changes: 2 additions & 2 deletions .github/workflows/_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ jobs:
runs-on: ubuntu-latest
# https://playwright.dev/docs/ci#via-containers
container:
image: mcr.microsoft.com/playwright:v1.36.0-jammy
image: mcr.microsoft.com/playwright:v1.42.1-jammy
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 20
- run: npm ci
- run: npm run lint
- run: npm test
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# [Unreleased]

- Keep identify names in built code bundle

# 3.0.0-beta.0

- Make the bundle a valid ESM page
Expand Down
Loading

0 comments on commit 45a6f59

Please sign in to comment.