Skip to content

Commit

Permalink
[infra] Add missing dependency to eslint-plugin-lit (#4545)
Browse files Browse the repository at this point in the history
Co-authored-by: Andrew Jakubowicz <ajakubowicz@google.com>
  • Loading branch information
justinfagnani and AndrewJakubowicz committed Feb 13, 2024
1 parent 59d5ba7 commit b779807
Show file tree
Hide file tree
Showing 4 changed files with 64 additions and 50 deletions.
2 changes: 2 additions & 0 deletions .changeset/curvy-wasps-crash.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
---
98 changes: 50 additions & 48 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion packages/labs/analyzer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@
"test",
"index.{js,js.map,d.ts,d.ts.map}",
"package-analyzer.{js,js.map,d.ts,d.ts.map}",
"tsconfig.tsbuildinfo"
"tsconfig.tsbuildinfo",
"!test/browser/typescript.js"
],
"clean": "if-file-deleted"
},
Expand Down
11 changes: 10 additions & 1 deletion packages/labs/eslint-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,15 @@
"index.{js,js.map,d.ts,d.ts.map}",
"tsconfig.tsbuildinfo"
],
"clean": "if-file-deleted"
"clean": "if-file-deleted",
"dependencies": [
"build:deps"
]
},
"build:deps": {
"dependencies": [
"../analyzer:build"
]
},
"test": {
"command": "node --enable-source-maps --test-reporter=spec --test test/**/*_test.js",
Expand All @@ -56,6 +64,7 @@
"eslint": "^8.56.0"
},
"dependencies": {
"@lit-labs/analyzer": "^0.11.1",
"@typescript-eslint/utils": "^6.19.0",
"typescript": "~5.3.3"
}
Expand Down

0 comments on commit b779807

Please sign in to comment.