mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
With this change we add renovate to update dependencies in the following locations - WORKSPACE - integration/bazel/WORKSPACE - package.json - packages/**/package.json - tools/ts-api-guardian/package.json - aio/package.json We also enable yarn workspaces so that dependencies in these packages are hoisting to the root and renovate doesn't created nested lock files. Enabling auto updates is important, because quite often dependencies get out of date especially in the compiler-cli which depends on a number of external dependencies. PR Close #41407
53 lines
1.4 KiB
JSON
53 lines
1.4 KiB
JSON
{
|
|
"name": "@angular/bazel",
|
|
"version": "0.0.0-PLACEHOLDER",
|
|
"description": "Angular - bazel build rules",
|
|
"author": "angular",
|
|
"license": "MIT",
|
|
"bin": {
|
|
"api-extractor": "./src/api-extractor/index.js",
|
|
"ngc-wrapped": "./src/ngc-wrapped/index.js",
|
|
"packager": "./src/ng_package/packager.js",
|
|
"xi18n": "./src/ngc-wrapped/extract_i18n.js",
|
|
"modify_tsconfig": "./src/modify_tsconfig.js"
|
|
},
|
|
"typings": "./src/ngc-wrapped/index.d.ts",
|
|
"bazelBin": {
|
|
"ngc-wrapped": {
|
|
"additionalAttributes": {
|
|
"configuration_env_vars": "[\"angular_ivy_enabled\"]"
|
|
}
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@microsoft/api-extractor": "7.7.11",
|
|
"shelljs": "0.8.2",
|
|
"tsickle": "^0.38.0"
|
|
},
|
|
"peerDependencies": {
|
|
"@angular/compiler-cli": "0.0.0-PLACEHOLDER",
|
|
"@bazel/typescript": ">=1.0.0",
|
|
"terser": "^4.3.1",
|
|
"typescript": ">=4.2.3 <4.3",
|
|
"rollup": ">=1.20.0",
|
|
"rollup-plugin-commonjs": ">=9.0.0",
|
|
"rollup-plugin-node-resolve": ">=4.2.0",
|
|
"rollup-plugin-sourcemaps": ">=0.4.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"terser": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/angular/angular.git",
|
|
"directory": "packages/bazel"
|
|
},
|
|
"ng-update": {
|
|
"packageGroup": "NG_UPDATE_PACKAGE_GROUP"
|
|
},
|
|
"publishConfig": {
|
|
"registry": "https://wombat-dressing-room.appspot.com"
|
|
}
|
|
}
|