Skip to content

Commit

Permalink
fix(remix): fixed remix routes cli output truncation
Browse files Browse the repository at this point in the history
  • Loading branch information
sandulat committed Aug 6, 2022
1 parent 824a77c commit fd2cf67
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions packages/routes-gen-remix/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @routes-gen/remix

## 0.3.3

### Patch Changes

- Fixed "remix routes" cli output truncation.

## 0.3.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/routes-gen-remix/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@routes-gen/remix",
"version": "0.3.2",
"version": "0.3.3",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/routes-gen-remix/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const watchPaths: Driver["watchPaths"] = async () => [

export const routes: Driver["routes"] = async () =>
new Promise<Route[]>((resolve) => {
exec("remix routes --json", async (error, output) => {
exec("remix routes --json | tee", async (error, output) => {
if (error) {
throw error;
}
Expand Down

0 comments on commit fd2cf67

Please sign in to comment.