Skip to content

Commit

Permalink
feat: support virtual adaptive matches
Browse files Browse the repository at this point in the history
  • Loading branch information
DylanPiercey committed Nov 15, 2023
1 parent bf36012 commit 2625f47
Show file tree
Hide file tree
Showing 29 changed files with 1,014 additions and 213 deletions.
5 changes: 5 additions & 0 deletions .changeset/thirty-phones-pretend.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"arc-vite": minor
---

Add support for other Vite plugins registering additional files to check when determining if a module is adaptive.
28 changes: 18 additions & 10 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,23 +10,31 @@
},
"settings": {
"import/resolver": {
"typescript": {
"project": true
}
"typescript": true
}
},
"env": {
"node": true,
"browser": true,
"es2024": true
"es2024": true,
"browser": true
},
"rules": {
"import/order": ["error"],
"sort-imports": [
"import/order": [
"error",
{
"allowSeparatedGroups": true,
"ignoreDeclarationSort": true
"groups": [
["builtin"],
["external"],
"internal",
"parent",
"sibling",
"index"
],
"alphabetize": {
"order": "asc",
"orderImportKind": "asc",
"caseInsensitive": true
}
}
]
},
Expand All @@ -36,9 +44,9 @@
"parser": "@typescript-eslint/parser",
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:import/recommended",
"plugin:import/typescript",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"rules": {
Expand Down
Loading

0 comments on commit 2625f47

Please sign in to comment.