build: simplify package.jsons for all of our packages (#36944)
We can remove all of the entry point resolution configuration from the package.json in our source code as ng_package rule adds the properties automatically and correctly configures them. This change simplifies our code base but doesn't have any impact on the package.json in the distributed npm_packages. PR Close #36944
This commit is contained in:

committed by
Alex Rickabaugh

parent
9dbb30f884
commit
d578ab8f3c
@ -2,14 +2,6 @@
|
||||
"name": "@angular/compiler",
|
||||
"version": "0.0.0-PLACEHOLDER",
|
||||
"description": "Angular - the compiler library",
|
||||
"main": "./bundles/compiler.umd.js",
|
||||
"module": "./fesm5/compiler.js",
|
||||
"es2015": "./fesm2015/compiler.js",
|
||||
"esm5": "./esm5/compiler.js",
|
||||
"esm2015": "./esm2015/compiler.js",
|
||||
"fesm5": "./fesm5/compiler.js",
|
||||
"fesm2015": "./fesm2015/compiler.js",
|
||||
"typings": "./compiler.d.ts",
|
||||
"author": "angular",
|
||||
"license": "MIT",
|
||||
"peerDependencies": {
|
||||
|
@ -1,11 +1,3 @@
|
||||
{
|
||||
"name": "@angular/compiler/testing",
|
||||
"typings": "./testing.d.ts",
|
||||
"main": "../bundles/compiler-testing.umd.js",
|
||||
"module": "../fesm5/testing.js",
|
||||
"es2015": "../fesm2015/testing.js",
|
||||
"esm5": "../esm5/testing/testing.js",
|
||||
"esm2015": "../esm2015/testing/testing.js",
|
||||
"fesm5": "../fesm5/testing.js",
|
||||
"fesm2015": "../fesm2015/testing.js"
|
||||
"name": "@angular/compiler/testing"
|
||||
}
|
||||
|
Reference in New Issue
Block a user