Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: move type:check to lint hook #3381

Merged
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
62b5607
refactor: move type:check to lint hook
Rohit-Bhetal Nov 11, 2024
4d67d8f
refactor: move type:check to lint hook- Removed type:check from prete…
Rohit-Bhetal Nov 11, 2024
4cf294a
Merge branch 'master' into fix/move-type-check-to-lint
Rohit-Bhetal Nov 13, 2024
3e3f161
Merge branch 'master' into fix/move-type-check-to-lint
Rohit-Bhetal Nov 14, 2024
5050dd7
Merge branch 'master' into fix/move-type-check-to-lint
maschad Nov 18, 2024
7aaf1ff
Merge branch 'master' into fix/move-type-check-to-lint
maschad Nov 18, 2024
95280f9
Add type:check to turbo tasks and update root package.json lint script
Rohit-Bhetal Nov 19, 2024
1c47daf
Add type:check to turbo tasks and update root package.json lint script
Rohit-Bhetal Nov 19, 2024
f2edae9
Merge branch 'fix/move-type-check-to-lint' of https://github.com/Rohi…
Rohit-Bhetal Nov 19, 2024
f22196c
Merge branch 'FuelLabs:master' into fix/move-type-check-to-lint
Rohit-Bhetal Nov 19, 2024
4253ec3
chore: add changeset for type checking updates
Rohit-Bhetal Nov 19, 2024
3990148
Merge branch 'fix/move-type-check-to-lint' of https://github.com/Rohi…
Rohit-Bhetal Nov 19, 2024
8045137
Update packages/create-fuels/package.json
Rohit-Bhetal Nov 20, 2024
15497ad
Update .changeset/polite-seas-taste.md
Rohit-Bhetal Nov 20, 2024
341a40e
Update packages/fuel-gauge/package.json
Rohit-Bhetal Nov 20, 2024
70abc8a
Update packages/fuels/package.json
Rohit-Bhetal Nov 20, 2024
4c2f2a2
Update internal/benchmarks/package.json
Rohit-Bhetal Nov 20, 2024
e5280a0
Update package.json
Rohit-Bhetal Nov 20, 2024
8d28338
Update .changeset/polite-seas-taste.md
Rohit-Bhetal Nov 20, 2024
214151a
Update apps/docs-snippets/package.json
Rohit-Bhetal Nov 20, 2024
01020a5
Merge branch 'master' into fix/move-type-check-to-lint
maschad Nov 20, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion apps/docs-snippets/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"description": "",
"private": true,
"scripts": {
"pretest": "./scripts/pretest.sh"
"pretest": "./scripts/pretest.sh",
"lint": "tsc --noEmit"
Rohit-Bhetal marked this conversation as resolved.
Show resolved Hide resolved
},
"devDependencies": {
"@fuel-ts/account": "workspace:*",
Expand Down
3 changes: 0 additions & 3 deletions apps/docs-snippets/scripts/pretest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,3 @@ pnpm fuels build

# Deploys projects (needed for loader bytecode)
pnpm fuels deploy

# Checks for type errors
pnpm tsc --noEmit
4 changes: 2 additions & 2 deletions internal/benchmarks/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"dist"
],
"scripts": {
"type:check": "tsc --noEmit",
"pretest": "run-s build:forc type:check",
"lint": "tsc --noEmit",
Rohit-Bhetal marked this conversation as resolved.
Show resolved Hide resolved
"pretest": "run-s build:forc ",
"build:forc": "pnpm fuels build"
},
"license": "Apache-2.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/create-fuels/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
},
"license": "Apache-2.0",
"scripts": {
"build": "run-s build:source type:check",
"build": "run-s build:source",
"build:source": "tsup",
"type:check": "tsc --noEmit",
"lint": "tsc --noEmit",
Rohit-Bhetal marked this conversation as resolved.
Show resolved Hide resolved
"prepublishOnly": "tsx ./scripts/prepublish.ts"
},
"dependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/fuel-gauge/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
"description": "",
"author": "Fuel Labs <contact@fuel.sh> (https://fuel.network/)",
"scripts": {
"pretest": "run-s build:forc build:process-predicates type:check",
"pretest": "run-s build:forc build:process-predicates",
"build:forc": "pnpm fuels build",
"build:process-predicates": "tsx ./scripts/process-predicates.ts",
"type:check": "tsc --noEmit"
"lint": "tsc --noEmit"
Rohit-Bhetal marked this conversation as resolved.
Show resolved Hide resolved
},
"license": "Apache-2.0",
"dependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/fuels/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@
"build:package": "tsup",
"build:browser": "pnpm vite build",
"build:minified": "pnpm uglifyjs --compress --mangle --output dist/browser.min.mjs -- dist/browser.mjs",
"postbuild": "run-s type:declarations type:check",
"postbuild": "run-s type:declarations",
"type:declarations": "tsc --emitDeclarationOnly -p tsconfig.dts.json",
"type:check": "tsc --noEmit",
"lint": "tsc --noEmit",
Rohit-Bhetal marked this conversation as resolved.
Show resolved Hide resolved
"prepublishOnly": "cp ../../README.md ./README.md"
},
"license": "Apache-2.0",
Expand Down