Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[infra] Replace custom test module remapping with package exports #3132

Merged
merged 19 commits into from Jul 15, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
13 changes: 13 additions & 0 deletions .changeset/three-hounds-rush.md
@@ -0,0 +1,13 @@
---
'@lit-labs/context': patch
'@lit-labs/motion': patch
'@lit-labs/observers': patch
'@lit-labs/react': patch
'@lit-labs/scoped-registry-mixin': patch
'@lit-labs/task': patch
'lit-element': patch
'lit-html': patch
'@lit/reactive-element': patch
---

Added "types" entry to package exports. This tells newer versions of TypeScript where to look for typings for each module.
8 changes: 0 additions & 8 deletions .eslintignore
Expand Up @@ -127,10 +127,6 @@ packages/reactive-element/reactive-controller.*

packages/tests/node_modules/
packages/tests/utils/
packages/tests/**/rollup-resolve-remap.js
packages/tests/**/rollup-resolve-remap.js.map
packages/tests/**/rollup-resolve-remap.d.ts
packages/tests/**/rollup-resolve-remap.d.ts.map
packages/tests/**/run-web-tests.js
packages/tests/**/run-web-tests.js.map
packages/tests/**/run-web-tests.d.ts
Expand All @@ -139,10 +135,6 @@ packages/tests/**/web-test-runner.config.js
packages/tests/**/web-test-runner.config.js.map
packages/tests/**/web-test-runner.config.d.ts
packages/tests/**/web-test-runner.config.d.ts.map
packages/tests/**/wtr-config.js
packages/tests/**/wtr-config.js.map
packages/tests/**/wtr-config.d.ts
packages/tests/**/wtr-config.d.ts.map

packages/ts-transformers/*.js
packages/ts-transformers/*.js.map
Expand Down
8 changes: 0 additions & 8 deletions .prettierignore
Expand Up @@ -113,10 +113,6 @@ packages/reactive-element/reactive-controller.*

packages/tests/node_modules/
packages/tests/utils/
packages/tests/**/rollup-resolve-remap.js
packages/tests/**/rollup-resolve-remap.js.map
packages/tests/**/rollup-resolve-remap.d.ts
packages/tests/**/rollup-resolve-remap.d.ts.map
packages/tests/**/run-web-tests.js
packages/tests/**/run-web-tests.js.map
packages/tests/**/run-web-tests.d.ts
Expand All @@ -125,10 +121,6 @@ packages/tests/**/web-test-runner.config.js
packages/tests/**/web-test-runner.config.js.map
packages/tests/**/web-test-runner.config.d.ts
packages/tests/**/web-test-runner.config.d.ts.map
packages/tests/**/wtr-config.js
packages/tests/**/wtr-config.js.map
packages/tests/**/wtr-config.d.ts
packages/tests/**/wtr-config.d.ts.map

packages/ts-transformers/*.js
packages/ts-transformers/*.js.map
Expand Down