Skip to content
This repository has been archived by the owner on Sep 25, 2024. It is now read-only.

Commit

Permalink
Fix typesVersions fields (#1985)
Browse files Browse the repository at this point in the history
- Fix typo in polyfills typesVersions
- Add typesVersions to graphql-testing
  • Loading branch information
BPScott committed Aug 4, 2021
1 parent 57c3b3b commit 6bb6b89
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 3 deletions.
6 changes: 5 additions & 1 deletion packages/graphql-testing/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

<!-- ## Unreleased -->
## Unreleased

### Changed

- Add matchers entrypoint to `typesVersions` fields. This should have happened in 5.0.2 but was missed.

## 5.0.3 - 2021-08-04

Expand Down
7 changes: 7 additions & 0 deletions packages/graphql-testing/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@
"description": "Utilities to create mock GraphQL factories",
"main": "index.js",
"types": "./build/ts/index.d.ts",
"typesVersions": {
"*": {
"matchers": [
"./build/ts/matchers/index.d.ts"
]
}
},
"sideEffects": false,
"publishConfig": {
"access": "public",
Expand Down
6 changes: 5 additions & 1 deletion packages/polyfills/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

<!-- ## Unreleased -->
## Unreleased

### Changed

- Fix `idle-callback.browser` entrypoint path in `typesVersions` field.

## 3.1.2 - 2021-08-04

Expand Down
2 changes: 1 addition & 1 deletion packages/polyfills/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"./build/ts/formdata.node.d.ts"
],
"idle-callback.browser": [
"./build/ts/idle-callback.browser'.d.ts"
"./build/ts/idle-callback.browser.d.ts"
],
"idle-callback.jest": [
"./build/ts/idle-callback.jest.d.ts"
Expand Down
1 change: 1 addition & 0 deletions packages/semaphore/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
### Changed

- Remove use of `setImmediate` in tests. [#1948](https://github.com/Shopify/quilt/pull/1948)
- Update to latest sewiing-kit-next for build. Update `types`/`typeVersions` fields to point directly into the build folder [[#1980](https://github.com/Shopify/quilt/pull/1980)]

## 2.0.0 - 2021-05-21

Expand Down

0 comments on commit 6bb6b89

Please sign in to comment.