Files
Alan Agius 9918c81ca9 build: update @angular/ssr and add beasties dependency for adev and dev-app
In @angular/ssr 22.2.0-next.7, beasties was made an external dependency rather
than vendored internally. Because hoist: false is configured and preserveSymlinks
is enabled, rules_js does not hoist beasties into adev/node_modules and
dev-app/node_modules.

This commit adds beasties as an explicit dependency for both adev and dev-app
so that it can be resolved during bundling.
2026-09-11 10:40:29 -07:00

32 lines
898 B
JSON

{
"name": "dev-app",
"private": true,
"scripts": {
"dev": "ibazel run //dev-app:build.serve",
"dev:prod": "ibazel run //dev-app:build.production.serve",
"dev:build": "bazel build //dev-app:build"
},
"dependencies": {
"@angular/common": "workspace:*",
"@angular/compiler": "workspace:*",
"@angular/core": "workspace:*",
"@angular/forms": "workspace:*",
"@angular/localize": "workspace:*",
"@angular/platform-browser": "workspace:*",
"@angular/platform-server": "workspace:*",
"@angular/router": "workspace:*",
"@angular/ssr": "22.2.0-next.7",
"beasties": "0.5.4",
"rxjs": "~7.8.0",
"tslib": "^2.3.0"
},
"devDependencies": {
"@angular/build": "22.2.0-next.7",
"@angular/cli": "22.2.0-next.7",
"@angular/compiler-cli": "workspace:*",
"jsdom": "^30.0.0",
"typescript": "~6.0.2",
"vitest": "^5.0.0"
}
}