Skip to content

Commit

Permalink
chore(repo): add missing volta config sections (#3813)
Browse files Browse the repository at this point in the history
Volta needs to be configured on a per-package.json basis.

## Checklist

- [ ] Title matches [Winglang's style guide](https://www.winglang.io/contributing/start-here/pull_requests#how-are-pull-request-titles-formatted)
- [ ] Description explains motivation and solution
- [ ] Tests added (always)
- [ ] Docs updated (only required for features)
- [ ] Added `pr/e2e-full` label if this feature requires end-to-end testing

*By submitting this pull request, I confirm that my contribution is made under the terms of the [Wing Cloud Contribution License](https://github.com/winglang/wing/blob/main/CONTRIBUTION_LICENSE.md)*.
  • Loading branch information
MarkMcCulloh authored Aug 16, 2023
1 parent 672baf4 commit 41bece0
Show file tree
Hide file tree
Showing 13 changed files with 39 additions and 0 deletions.
3 changes: 3 additions & 0 deletions apps/wing-console/console/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,8 @@
"tsx": "^3.12.7",
"typescript": "^5.1.3",
"vite": "^4.3.9"
},
"volta": {
"extends": "../../../../package.json"
}
}
3 changes: 3 additions & 0 deletions apps/wing-console/console/design-system/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,5 +59,8 @@
"vite": "^4.3.9",
"vitest": "^0.31.4",
"webpack": "^5.86.0"
},
"volta": {
"extends": "../../../../package.json"
}
}
3 changes: 3 additions & 0 deletions apps/wing-console/console/server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,8 @@
"vitest": "^0.31.4",
"ws": "^8.13.0",
"zod": "^3.21.4"
},
"volta": {
"extends": "../../../../package.json"
}
}
3 changes: 3 additions & 0 deletions apps/wing-console/console/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,5 +85,8 @@
"vite": "^4.3.9",
"vitest": "^0.31.4",
"webpack": "^5.86.0"
},
"volta": {
"extends": "../../../../package.json"
}
}
3 changes: 3 additions & 0 deletions apps/wing-console/packages/error-message/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,8 @@
"@wingconsole/eslint-plugin": "workspace:^",
"@wingconsole/tsconfig": "workspace:^",
"typescript": "^5.1.3"
},
"volta": {
"extends": "../../../../package.json"
}
}
3 changes: 3 additions & 0 deletions apps/wing-console/packages/use-loading/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,8 @@
"@wingconsole/eslint-plugin": "workspace:^",
"@wingconsole/tsconfig": "workspace:^",
"typescript": "^5.1.3"
},
"volta": {
"extends": "../../../../package.json"
}
}
3 changes: 3 additions & 0 deletions apps/wing-console/tools/eslint-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,8 @@
"eslint": "^8.42.0",
"prettier": "^2.8.8",
"typescript": "^5.1.3"
},
"volta": {
"extends": "../../../../package.json"
}
}
3 changes: 3 additions & 0 deletions apps/wing-console/tools/tsconfig/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,8 @@
},
"devDependencies": {
"typescript": "^5.1.3"
},
"volta": {
"extends": "../../../../package.json"
}
}
3 changes: 3 additions & 0 deletions libs/wingc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,8 @@
"@winglang/tree-sitter-wing": "workspace:^",
"@winglang/wingii": "workspace:^",
"@winglang/sdk": "workspace:^"
},
"volta": {
"extends": "../../package.json"
}
}
3 changes: 3 additions & 0 deletions libs/wingii/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,8 @@
"dev": "cargo run --example compile --release",
"test": "cargo test",
"lint": "cargo fmt && cargo clippy --fix --no-deps --allow-dirty --target wasm32-wasi --release"
},
"volta": {
"extends": "../../package.json"
}
}
3 changes: 3 additions & 0 deletions libs/wingii/src/fixtures/constructs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -123,5 +123,8 @@
"nx": {
"ignore": true
},
"volta": {
"extends": "../../../../../package.json"
},
"//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"pnpm projen\"."
}
3 changes: 3 additions & 0 deletions tools/bump-pack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,8 @@
"npm-which": "^3.0.1",
"semver": "^7.5.2",
"tsx": "^3.12.7"
},
"volta": {
"extends": "../../package.json"
}
}
3 changes: 3 additions & 0 deletions tools/hangar/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,8 @@
"tsx": "^3.12.6",
"vitest": "^0.30.1",
"yaml": "^2.2.1"
},
"volta": {
"extends": "../../package.json"
}
}

0 comments on commit 41bece0

Please sign in to comment.