Skip to content

Commit fd2cf67

Browse files
committed
fix(remix): fixed remix routes cli output truncation
1 parent 824a77c commit fd2cf67

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

packages/routes-gen-remix/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @routes-gen/remix
22

3+
## 0.3.3
4+
5+
### Patch Changes
6+
7+
- Fixed "remix routes" cli output truncation.
8+
39
## 0.3.2
410

511
### Patch Changes

packages/routes-gen-remix/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@routes-gen/remix",
3-
"version": "0.3.2",
3+
"version": "0.3.3",
44
"main": "dist/index.js",
55
"types": "dist/index.d.ts",
66
"license": "MIT",

packages/routes-gen-remix/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export const watchPaths: Driver["watchPaths"] = async () => [
2525

2626
export const routes: Driver["routes"] = async () =>
2727
new Promise<Route[]>((resolve) => {
28-
exec("remix routes --json", async (error, output) => {
28+
exec("remix routes --json | tee", async (error, output) => {
2929
if (error) {
3030
throw error;
3131
}

0 commit comments

Comments
 (0)