-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: stop using wildcard versions for monorepo packages
`multi-semantic-release`'s readme says to use `*` as the version field for monorepo packages, but this fails in a strange way. This switches them to `0.0.0-semantically-released` as recommended in a Github issue. See: dhoulb/multi-semantic-release#102
- Loading branch information
1 parent
914e9a1
commit 6a1c0ee
Showing
6 changed files
with
25 additions
and
25 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@api-ts/express-wrapper", | ||
"version": "*", | ||
"version": "0.0.0-semantically-released", | ||
"description": "Implement an HTTP specification with Express", | ||
"author": "Eric Crosson <[email protected]>", | ||
"license": "Apache-2.0", | ||
|
@@ -15,13 +15,13 @@ | |
"test": "ava" | ||
}, | ||
"dependencies": { | ||
"@api-ts/io-ts-http": "*", | ||
"@api-ts/io-ts-http": "0.0.0-semantically-released", | ||
"express": "4.17.2", | ||
"fp-ts": "2.11.8", | ||
"io-ts": "2.2.16" | ||
}, | ||
"devDependencies": { | ||
"@api-ts/superagent-wrapper": "*", | ||
"@api-ts/superagent-wrapper": "0.0.0-semantically-released", | ||
"@ava/typescript": "3.0.1", | ||
"@types/express": "4.17.13", | ||
"@types/node": "16.11.7", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@api-ts/io-ts-http", | ||
"version": "*", | ||
"version": "0.0.0-semantically-released", | ||
"description": "Types for (de)serializing HTTP requests from both the client and server side", | ||
"author": "Patrick McLaughlin <[email protected]>", | ||
"license": "Apache-2.0", | ||
|
@@ -17,7 +17,7 @@ | |
"test": "nyc --reporter=lcov --reporter=text --reporter=json-summary mocha test/**/*.test.ts --require ts-node/register --exit" | ||
}, | ||
"dependencies": { | ||
"@api-ts/response": "*", | ||
"@api-ts/response": "0.0.0-semantically-released", | ||
"fp-ts": "2.11.8", | ||
"io-ts": "2.2.16", | ||
"io-ts-types": "0.5.16", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@api-ts/openapi-generator", | ||
"version": "*", | ||
"version": "0.0.0-semantically-released", | ||
"description": "Generate an OpenAPI specification from an io-ts-http contract", | ||
"author": "Patrick McLaughlin <[email protected]>", | ||
"license": "Apache-2.0", | ||
|
@@ -18,7 +18,7 @@ | |
"test": "ava test/test-corpus.ts" | ||
}, | ||
"dependencies": { | ||
"@api-ts/io-ts-http": "*", | ||
"@api-ts/io-ts-http": "0.0.0-semantically-released", | ||
"cmd-ts": "0.10.0", | ||
"comment-parser": "1.3.1", | ||
"fp-ts": "2.11.8", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@api-ts/response", | ||
"version": "*", | ||
"version": "0.0.0-semantically-released", | ||
"description": "Types for representing responses", | ||
"author": "Patrick McLaughlin <[email protected]>", | ||
"license": "Apache-2.0", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@api-ts/superagent-wrapper", | ||
"version": "*", | ||
"version": "0.0.0-semantically-released", | ||
"description": "Make type-safe HTTP requests with superagent", | ||
"author": "Patrick McLaughlin <[email protected]>", | ||
"license": "Apache-2.0", | ||
|
@@ -15,7 +15,7 @@ | |
"test": "nyc --reporter=lcov --reporter=text --reporter=json-summary mocha test/**/*.test.ts --require ts-node/register --exit" | ||
}, | ||
"dependencies": { | ||
"@api-ts/io-ts-http": "*", | ||
"@api-ts/io-ts-http": "0.0.0-semantically-released", | ||
"fp-ts": "2.11.8", | ||
"io-ts": "2.2.16", | ||
"superagent": "3.8.3", | ||
|