Skip to content

Commit

Permalink
fix: stop using wildcard versions for monorepo packages
Browse files Browse the repository at this point in the history
`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
bitgopatmcl committed Apr 13, 2022
1 parent 914e9a1 commit 6a1c0ee
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 25 deletions.
30 changes: 15 additions & 15 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions packages/express-wrapper/package.json
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",
Expand All @@ -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",
Expand Down
4 changes: 2 additions & 2 deletions packages/io-ts-http/package.json
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",
Expand All @@ -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",
Expand Down
4 changes: 2 additions & 2 deletions packages/openapi-generator/package.json
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",
Expand All @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion packages/response/package.json
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",
Expand Down
4 changes: 2 additions & 2 deletions packages/superagent-wrapper/package.json
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",
Expand All @@ -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",
Expand Down

0 comments on commit 6a1c0ee

Please sign in to comment.