Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Publish New Versions #294

Merged
merged 1 commit into from
Sep 17, 2024
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
8 changes: 0 additions & 8 deletions .changes/fix-types.md

This file was deleted.

34 changes: 21 additions & 13 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @interactors/core

## \[1.0.1]

- [`e9d46c6`](https://github.com/thefrontside/interactors/commit/e9d46c68381bcd7814e85e4eeba4889e0fb6a746) Fix types in distributed NPM packages which were being incorrectly referenced in the package exports.

### Dependencies

- Upgraded to `@interactors/globals@1.0.1`

## 1.0.0

### Major Changes
Expand All @@ -23,20 +31,20 @@
- d859e16: Pin versions for internal @interactors/\* dependencies
Remove `@interactors/html` re-export from `with-cypress` package
- 4538b92: Matchers can return their code representation
- Updated dependencies [5386ccc]
- Updated dependencies [a3155cf]
- Updated dependencies [968109e]
- Updated dependencies [afcf87b]
- Updated dependencies [85da2e8]
- Updated dependencies [d859e16]
- Updated dependencies \[5386ccc]
- Updated dependencies \[a3155cf]
- Updated dependencies \[968109e]
- Updated dependencies \[afcf87b]
- Updated dependencies \[85da2e8]
- Updated dependencies \[d859e16]
- @interactors/globals@1.0.0

## 1.0.0-rc1.6

### Patch Changes

- 5386ccc: Update TypeScript to v5.4
- Updated dependencies [5386ccc]
- Updated dependencies \[5386ccc]
- @interactors/globals@1.0.0-rc1.3

## 1.0.0-rc1.5
Expand All @@ -62,9 +70,9 @@

- efecf56: Improve filter matching and reduce unnecessary calls
- afcf87b: Add code representation for interactions
- Updated dependencies [a3155cf]
- Updated dependencies [968109e]
- Updated dependencies [afcf87b]
- Updated dependencies \[a3155cf]
- Updated dependencies \[968109e]
- Updated dependencies \[afcf87b]
- @interactors/globals@1.0.0-rc1.2

## 1.0.0-rc1.2
Expand All @@ -81,7 +89,7 @@
- d859e16: Pin versions for internal @interactors/\* dependencies
Remove `@interactors/html` re-export from `with-cypress` package
- 4538b92: Matchers can return their code representation
- Updated dependencies [d859e16]
- Updated dependencies \[d859e16]
- @interactors/globals@1.0.0-rc1.1

## 1.0.0-rc1.0
Expand All @@ -92,7 +100,7 @@

### Patch Changes

- Updated dependencies [dfcbf1a]
- Updated dependencies \[dfcbf1a]
- @interactors/globals@1.0.0-rc1.0

## 0.4.0
Expand All @@ -105,7 +113,7 @@

- f06c7fe: simplify interactor instatiate function
- 960da4e: Remove the ExistsAssertionsImplementation since it is no longer necessary
- Updated dependencies [891af02]
- Updated dependencies \[891af02]
- @interactors/globals@0.2.0

## 0.3.0
Expand Down
24 changes: 19 additions & 5 deletions packages/core/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@interactors/core",
"version": "1.0.0",
"version": "1.0.1",
"tasks": {
"test": "deno test --allow-run=deno --allow-env --allow-read",
"docs": "rm -rf docs && mkdir -p docs/api/v1 && deno doc --html --output=docs/api/v1 mod.ts"
Expand All @@ -20,14 +20,28 @@
},
"lint": {
"rules": {
"exclude": ["prefer-const", "require-yield", "no-explicit-any"]
"exclude": [
"prefer-const",
"require-yield",
"no-explicit-any"
]
},
"exclude": ["build", "docs"]
"exclude": [
"build",
"docs"
]
},
"fmt": {
"exclude": ["build", "docs", "README.md"]
"exclude": [
"build",
"docs",
"README.md"
]
},
"test": {
"exclude": ["build", "docs"]
"exclude": [
"build",
"docs"
]
}
}
4 changes: 4 additions & 0 deletions packages/globals/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# @interactors/globals

## \[1.0.1]

- [`e9d46c6`](https://github.com/thefrontside/interactors/commit/e9d46c68381bcd7814e85e4eeba4889e0fb6a746) Fix types in distributed NPM packages which were being incorrectly referenced in the package exports.

## 1.0.0

### Major Changes
Expand Down
15 changes: 11 additions & 4 deletions packages/globals/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@interactors/globals",
"version": "1.0.0",
"version": "1.0.1",
"description": "Global variable accessors for interactors",
"tasks": {
"test": "deno test --allow-run=deno --allow-env --allow-read"
Expand All @@ -21,12 +21,19 @@
"no-slow-types"
]
},
"exclude": ["build"]
"exclude": [
"build"
]
},
"fmt": {
"exclude": ["build", "README.md"]
"exclude": [
"build",
"README.md"
]
},
"test": {
"exclude": ["build"]
"exclude": [
"build"
]
}
}
Loading
Loading