Skip to content
This repository was archived by the owner on Jan 6, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
12 changes: 8 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@
"mkdirp": "^3.0.1",
"prettier": "^3.5.1",
"preval.macro": "^5.0.0",
"puppeteer": "23.11.1",
"puppeteer-chromium-resolver": "^23.0.0",
"puppeteer": "24.11.2",
"puppeteer-chromium-resolver": "^24.0.1",
"qunit": "^2.24.1",
"release-plan": "^0.13.1",
"rimraf": "^5.0.10",
Expand All @@ -111,7 +111,7 @@
"turbo": "^2.4.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.1",
"vite": "^6.1.1",
"vite": "^7.0.2",
"vitest": "^3.0.6",
"zx": "^8.3.2"
},
Expand All @@ -137,7 +137,11 @@
"@glimmer/syntax": "workspace:*",
"@rollup/pluginutils": "^5.0.2",
"@types/node": "$@types/node",
"typescript": "$typescript"
"typescript": "$typescript",
"@oclif/plugin-warn-if-update-available": "^3.1.42",
"d3-color": "^3.1.0",
"esbuild": "^0.25.0",
"got": "^11.8.5"
},
"peerDependencyRules": {
"allowAny": [
Expand Down
5 changes: 2 additions & 3 deletions packages/@glimmer-workspace/build/lib/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,11 +96,10 @@ export function tsconfig(updates) {
}

/**
* @param {PackageInfo} pkg
* @param {'dev' | 'prod'} env
* @returns {RollupPlugin}
*/
export function typescript(pkg, env) {
export function typescript(env) {
if (!env) {
throw new Error('env is required');
}
Expand Down Expand Up @@ -420,7 +419,7 @@ export class Package {
}),
]),
postcss(),
typescript(this.#package, env),
typescript(env),
// Strip debug calls in all builds - they're only for local development
stripGlimmerDebug(),
],
Expand Down
2 changes: 1 addition & 1 deletion packages/@glimmer/vm-babel-plugins/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"@types/node": "^22.13.4",
"babel-plugin-tester": "^11.0.4",
"eslint": "^9.20.1",
"mocha": "^10.2.0",
"mocha": "^11.7.1",
"publint": "^0.3.2",
"rollup": "^4.34.8",
"typescript": "^5.7.3"
Expand Down
Loading
Loading