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

Commit

Permalink
Update exclude of tsbuildinfo files (#1982)
Browse files Browse the repository at this point in the history
The lerna v3 to v4 update included a major update to `npm-packlist`,
which controls what files get packaged into the tar file when
publishing. In npm-packlist v2 `*.tsbuildinfo` no longer excludes the
`build/tsconfig.tsbuildinfo` file, we need to give the fuller path to
ensure this file is not uploaded to the npm registry.
  • Loading branch information
BPScott authored Aug 4, 2021
1 parent 3e27edb commit 4adf6bd
Show file tree
Hide file tree
Showing 153 changed files with 454 additions and 154 deletions.
6 changes: 5 additions & 1 deletion packages/address-consts/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

- Ensure `tsconfig.tsbuildinfo` file is not uploaded to the npm registry. [[#1982](https://github.com/Shopify/quilt/pull/1982)]

## 3.0.3 - 2021-08-03

Expand Down
2 changes: 1 addition & 1 deletion packages/address-consts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
},
"files": [
"build/*",
"!*.tsbuildinfo",
"!build/*.tsbuildinfo",
"index.js",
"index.mjs",
"index.esnext"
Expand Down
6 changes: 5 additions & 1 deletion packages/address-mocks/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

- Ensure `tsconfig.tsbuildinfo` file is not uploaded to the npm registry. [[#1982](https://github.com/Shopify/quilt/pull/1982)]

## 2.0.5 - 2021-08-03

Expand Down
2 changes: 1 addition & 1 deletion packages/address-mocks/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
},
"files": [
"build/*",
"!*.tsbuildinfo",
"!build/*.tsbuildinfo",
"index.js",
"index.mjs",
"index.esnext"
Expand Down
6 changes: 5 additions & 1 deletion packages/address/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

- Ensure `tsconfig.tsbuildinfo` file is not uploaded to the npm registry. [[#1982](https://github.com/Shopify/quilt/pull/1982)]

## 3.0.5 - 2021-08-03

Expand Down
2 changes: 1 addition & 1 deletion packages/address/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
},
"files": [
"build/*",
"!*.tsbuildinfo",
"!build/*.tsbuildinfo",
"index.js",
"index.mjs",
"index.esnext"
Expand Down
6 changes: 5 additions & 1 deletion packages/admin-graphql-api-utilities/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

- Ensure `tsconfig.tsbuildinfo` file is not uploaded to the npm registry. [[#1982](https://github.com/Shopify/quilt/pull/1982)]

## 1.0.2 - 2021-08-03

Expand Down
2 changes: 1 addition & 1 deletion packages/admin-graphql-api-utilities/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"sideEffects": false,
"files": [
"build/*",
"!*.tsbuildinfo",
"!build/*.tsbuildinfo",
"index.js",
"index.mjs",
"index.esnext"
Expand Down
6 changes: 5 additions & 1 deletion packages/ast-utilities/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

- Ensure `tsconfig.tsbuildinfo` file is not uploaded to the npm registry. [[#1982](https://github.com/Shopify/quilt/pull/1982)]

## 1.0.4 - 2021-08-03

Expand Down
2 changes: 1 addition & 1 deletion packages/ast-utilities/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
},
"files": [
"build/*",
"!*.tsbuildinfo",
"!build/*.tsbuildinfo",
"index.js",
"index.mjs",
"index.esnext",
Expand Down
6 changes: 5 additions & 1 deletion packages/async/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

- Ensure `tsconfig.tsbuildinfo` file is not uploaded to the npm registry. [[#1982](https://github.com/Shopify/quilt/pull/1982)]

## 3.0.2 - 2021-08-03

Expand Down
2 changes: 1 addition & 1 deletion packages/async/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
},
"files": [
"build/*",
"!*.tsbuildinfo",
"!build/*.tsbuildinfo",
"index.js",
"index.mjs",
"index.esnext",
Expand Down
6 changes: 5 additions & 1 deletion packages/browser/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

- Ensure `tsconfig.tsbuildinfo` file is not uploaded to the npm registry. [[#1982](https://github.com/Shopify/quilt/pull/1982)]

## 2.0.1 - 2021-08-03

Expand Down
2 changes: 1 addition & 1 deletion packages/browser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
},
"files": [
"build/*",
"!*.tsbuildinfo",
"!build/*.tsbuildinfo",
"index.js",
"index.mjs",
"index.esnext"
Expand Down
6 changes: 5 additions & 1 deletion packages/csrf-token-fetcher/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

- Ensure `tsconfig.tsbuildinfo` file is not uploaded to the npm registry. [[#1982](https://github.com/Shopify/quilt/pull/1982)]

## 1.0.1 - 2021-08-03

Expand Down
2 changes: 1 addition & 1 deletion packages/csrf-token-fetcher/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
},
"files": [
"build/*",
"!*.tsbuildinfo",
"!build/*.tsbuildinfo",
"index.js",
"index.mjs",
"index.esnext"
Expand Down
6 changes: 5 additions & 1 deletion packages/css-utilities/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

- Ensure `tsconfig.tsbuildinfo` file is not uploaded to the npm registry. [[#1982](https://github.com/Shopify/quilt/pull/1982)]

## 2.0.1 - 2021-08-03

Expand Down
2 changes: 1 addition & 1 deletion packages/css-utilities/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
},
"files": [
"build/*",
"!*.tsbuildinfo",
"!build/*.tsbuildinfo",
"index.js",
"index.mjs",
"index.esnext"
Expand Down
6 changes: 5 additions & 1 deletion packages/dates/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

- Ensure `tsconfig.tsbuildinfo` file is not uploaded to the npm registry. [[#1982](https://github.com/Shopify/quilt/pull/1982)]

## 1.0.3 - 2021-08-03

Expand Down
2 changes: 1 addition & 1 deletion packages/dates/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
},
"files": [
"build/*",
"!*.tsbuildinfo",
"!build/*.tsbuildinfo",
"index.js",
"index.mjs",
"index.esnext"
Expand Down
6 changes: 5 additions & 1 deletion packages/decorators/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

- Ensure `tsconfig.tsbuildinfo` file is not uploaded to the npm registry. [[#1982](https://github.com/Shopify/quilt/pull/1982)]

## 2.0.1 - 2021-08-03

Expand Down
2 changes: 1 addition & 1 deletion packages/decorators/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
},
"files": [
"build/*",
"!*.tsbuildinfo",
"!build/*.tsbuildinfo",
"index.js",
"index.mjs",
"index.esnext"
Expand Down
6 changes: 5 additions & 1 deletion packages/function-enhancers/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

- Ensure `tsconfig.tsbuildinfo` file is not uploaded to the npm registry. [[#1982](https://github.com/Shopify/quilt/pull/1982)]. [[#1982](https://github.com/Shopify/quilt/pull/1982)]

## 2.0.1 - 2021-08-03

Expand Down
2 changes: 1 addition & 1 deletion packages/function-enhancers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
},
"files": [
"build/*",
"!*.tsbuildinfo",
"!build/*.tsbuildinfo",
"index.js",
"index.mjs",
"index.esnext"
Expand Down
6 changes: 5 additions & 1 deletion packages/graphql-config-utilities/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

- Ensure `tsconfig.tsbuildinfo` file is not uploaded to the npm registry. [[#1982](https://github.com/Shopify/quilt/pull/1982)]

## 3.0.2 - 2021-08-03

Expand Down
2 changes: 1 addition & 1 deletion packages/graphql-config-utilities/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
},
"files": [
"build/*",
"!*.tsbuildinfo",
"!build/*.tsbuildinfo",
"index.js",
"index.mjs",
"index.esnext"
Expand Down
6 changes: 5 additions & 1 deletion packages/graphql-fixtures/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

- Ensure `tsconfig.tsbuildinfo` file is not uploaded to the npm registry. [[#1982](https://github.com/Shopify/quilt/pull/1982)]. [[#1982](https://github.com/Shopify/quilt/pull/1982)]

## 1.0.2 - 2021-08-03

Expand Down
2 changes: 1 addition & 1 deletion packages/graphql-fixtures/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
},
"files": [
"build/*",
"!*.tsbuildinfo",
"!build/*.tsbuildinfo",
"index.js",
"index.mjs",
"index.esnext"
Expand Down
6 changes: 5 additions & 1 deletion packages/graphql-mini-transforms/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

- Ensure `tsconfig.tsbuildinfo` file is not uploaded to the npm registry. [[#1982](https://github.com/Shopify/quilt/pull/1982)]. [[#1982](https://github.com/Shopify/quilt/pull/1982)]

## 3.1.1 - 2021-08-03

Expand Down
2 changes: 1 addition & 1 deletion packages/graphql-mini-transforms/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
},
"files": [
"build/*",
"!*.tsbuildinfo",
"!build/*.tsbuildinfo",
"index.js",
"index.mjs",
"index.esnext",
Expand Down
6 changes: 5 additions & 1 deletion packages/graphql-persisted/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

- Ensure `tsconfig.tsbuildinfo` file is not uploaded to the npm registry. [[#1982](https://github.com/Shopify/quilt/pull/1982)]

## 2.0.3 - 2021-08-03

Expand Down
2 changes: 1 addition & 1 deletion packages/graphql-persisted/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
},
"files": [
"build/*",
"!*.tsbuildinfo",
"!build/*.tsbuildinfo",
"apollo.js",
"apollo.mjs",
"apollo.esnext",
Expand Down
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

- Ensure `tsconfig.tsbuildinfo` file is not uploaded to the npm registry. [[#1982](https://github.com/Shopify/quilt/pull/1982)]

## 5.0.2 - 2021-08-03

Expand Down
2 changes: 1 addition & 1 deletion packages/graphql-testing/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
},
"files": [
"build/*",
"!*.tsbuildinfo",
"!build/*.tsbuildinfo",
"index.js",
"index.mjs",
"index.esnext",
Expand Down
6 changes: 5 additions & 1 deletion packages/graphql-tool-utilities/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

- Ensure `tsconfig.tsbuildinfo` file is not uploaded to the npm registry. [[#1982](https://github.com/Shopify/quilt/pull/1982)]

## 2.0.1 - 2021-08-03

Expand Down
2 changes: 1 addition & 1 deletion packages/graphql-tool-utilities/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
},
"files": [
"build/*",
"!*.tsbuildinfo",
"!build/*.tsbuildinfo",
"index.js",
"index.mjs",
"index.esnext"
Expand Down
Loading

0 comments on commit 4adf6bd

Please sign in to comment.