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

Fix typesVersions fields #1985

Merged
merged 1 commit into from
Aug 4, 2021
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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