Skip to content

Commit

Permalink
fix: upgrade root dependencies (#1770)
Browse files Browse the repository at this point in the history
fix: upgrade root dependencies and hasura
  • Loading branch information
ryscheng authored Jul 11, 2024
1 parent d1ea68d commit 3a5c093
Show file tree
Hide file tree
Showing 12 changed files with 118 additions and 252 deletions.
4 changes: 2 additions & 2 deletions apps/docs/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
// This file is not used in compilation. It is here just for a nice editor experience.
"extends": "@docusaurus/tsconfig",
"compilerOptions": {
"baseUrl": ".",
},
"baseUrl": "."
}
}
10 changes: 5 additions & 5 deletions apps/frontend/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
"incremental": true,
"plugins": [
{
"name": "next",
},
],
"name": "next"
}
]
},
"include": [
"next-env.d.ts",
Expand All @@ -27,7 +27,7 @@
"**/*.tsx",
"next.config.js",
"tailwind.config.js",
".next/types/**/*.ts",
".next/types/**/*.ts"
],
"exclude": ["node_modules"],
"exclude": ["node_modules"]
}
2 changes: 1 addition & 1 deletion apps/hasura/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ will be overwritten by the build step.

## Build

This will generate table configurations for all tables found in `../dbt/`.
This will generate table configurations for all tables found in `/warehouse/dbt/models/`.
This needs to be run every time the schema changes.
For more information, see `./src/genTables.ts`.

Expand Down
10 changes: 5 additions & 5 deletions apps/hasura/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@
},
"keywords": [],
"devDependencies": {
"@types/node": "^20.11.17",
"dotenv-cli": "^7.3.0",
"@types/node": "^20.14.10",
"dotenv-cli": "^7.4.2",
"hasura-cli": "^2.36.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.3"
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
},
"dependencies": {
"yaml": "^2.3.1"
"yaml": "^2.4.5"
}
}
4 changes: 2 additions & 2 deletions apps/hasura/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"skipLibCheck": true,
"strict": true,
"strictNullChecks": true,
"strictPropertyInitialization": false,
"strictPropertyInitialization": false
},
"exclude": ["node_modules"],
"include": ["./src/*.ts", "./src/**/*.ts", "./test"],
"include": ["./src/*.ts", "./src/**/*.ts", "./test"]
}
4 changes: 2 additions & 2 deletions lib/oss-artifact-validators/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"skipLibCheck": true,
"strict": true,
"strictNullChecks": true,
"strictPropertyInitialization": false,
"strictPropertyInitialization": false
},
"exclude": ["node_modules"],
"include": ["./src/*.ts", "./src/**/*.ts", "./test"],
"include": ["./src/*.ts", "./src/**/*.ts", "./test"]
}
4 changes: 2 additions & 2 deletions lib/utils/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"skipLibCheck": true,
"strict": true,
"strictNullChecks": true,
"strictPropertyInitialization": false,
"strictPropertyInitialization": false
},
"exclude": ["node_modules"],
"include": ["./src/*.ts", "./src/**/*.ts", "./test"],
"include": ["./src/*.ts", "./src/**/*.ts", "./test"]
}
4 changes: 2 additions & 2 deletions ops/external-prs/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"skipLibCheck": true,
"strict": true,
"strictNullChecks": true,
"strictPropertyInitialization": false,
"strictPropertyInitialization": false
},
"exclude": ["node_modules"],
"include": ["./src/*.ts", "./src/**/*.ts", "./test"],
"include": ["./src/*.ts", "./src/**/*.ts", "./test"]
}
4 changes: 2 additions & 2 deletions ops/github-app-utils/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"skipLibCheck": true,
"strict": true,
"strictNullChecks": true,
"strictPropertyInitialization": false,
"strictPropertyInitialization": false
},
"exclude": ["node_modules"],
"include": ["./src/*.ts", "./src/**/*.ts", "./test"],
"include": ["./src/*.ts", "./src/**/*.ts", "./test"]
}
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,17 +34,17 @@
"prepare": "husky install"
},
"devDependencies": {
"eslint": "^8",
"eslint": "^8.57.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.2.4",
"turbo": "^1.11.3"
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"turbo": "^1.13.4"
},
"engines": {
"node": ">=18.x",
"pnpm": ">=8"
},
"dependencies": {
"pyright": "^1.1.369"
"pyright": "^1.1.371"
}
}
Loading

0 comments on commit 3a5c093

Please sign in to comment.