File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed
packages/routes-gen-remix Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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" ,
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ export const watchPaths: Driver["watchPaths"] = async () => [
2525
2626export 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 }
You can’t perform that action at this time.
0 commit comments