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

Commit

Permalink
chore: update dependencies (#383)
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-smart authored Mar 30, 2023
1 parent 34b72da commit f6c96e9
Show file tree
Hide file tree
Showing 5 changed files with 1,555 additions and 1,466 deletions.
6 changes: 6 additions & 0 deletions .changeset/odd-dryers-ring.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@effect/printer": minor
"@effect/printer-ansi": minor
---

update dependencies
34 changes: 17 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.0",
"@babel/core": "^7.21.3",
"@babel/plugin-transform-modules-commonjs": "^7.21.2",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.0",
"@changesets/cli": "^2.26.1",
"@effect-ts/build-utils": "0.40.7",
"@effect-ts/core": "^0.60.5",
"@effect/babel-plugin": "^0.2.0",
Expand All @@ -39,37 +39,37 @@
"@types/benchmark": "^2.1.2",
"@types/chai": "^4.3.4",
"@types/glob": "^8.1.0",
"@types/jest": "^29.4.0",
"@types/node": "^18.14.5",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@types/prettier": "2.7.2",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"@vitejs/plugin-react": "^3.1.0",
"@vitest/coverage-c8": "^0.29.2",
"@vitest/coverage-c8": "^0.29.8",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"concurrently": "^7.6.0",
"concurrently": "^8.0.1",
"cpx": "^1.5.0",
"docs-ts": "0.6.10",
"error-stack-parser": "^2.1.4",
"eslint": "^8.35.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint": "^8.37.0",
"eslint-import-resolver-typescript": "^3.5.4",
"eslint-plugin-codegen": "0.17.0",
"eslint-plugin-deprecation": "^1.3.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-sort-destructure-keys": "^1.5.0",
"fast-check": "^3.7.0",
"glob": "^9.2.1",
"fast-check": "^3.8.0",
"glob": "^9.3.2",
"madge": "^6.0.0",
"picocolors": "^1.0.0",
"prettier": "^2.8.4",
"rimraf": "^4.3.1",
"prettier": "^2.8.7",
"rimraf": "^4.4.1",
"stackframe": "^1.3.4",
"ts-codemod": "^4.0.4",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"typescript": "^5.0.3",
"ultra-runner": "^3.10.5",
"vite": "^4.1.4",
"vitest": "0.29.2"
"vite": "^4.2.1",
"vitest": "0.29.8"
}
}
2 changes: 1 addition & 1 deletion packages/printer/src/internal_effect_untraced/docStream.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ const protoEqual = {
isDocStream(that) &&
that._tag === "LineStream" &&
Equal.equals(self.stream, that.stream),
PUshAnnotationStream: (self: DocStream.PushAnnotationStream<any>, that: unknown) =>
PushAnnotationStream: (self: DocStream.PushAnnotationStream<any>, that: unknown) =>
isDocStream(that) &&
that._tag === "PushAnnotationStream" &&
Equal.equals(self.annotation, that.annotation) &&
Expand Down
Loading

0 comments on commit f6c96e9

Please sign in to comment.