fix(service-worker): esm2015 points to wrong path (#20800)

The package.json esm2015 points to the wrong path.
"esm15" should be "esm2015"

Service Worker can't be compiled with use of Closure Compiler
PR Close #20800
This commit is contained in:
Mathias Døhl 2017-12-05 15:15:20 +01:00 committed by Igor Minar
parent 9bbec42a6c
commit da3563ce19
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@
"description": "Angular - service worker tooling!",
"main": "./bundles/service-worker.umd.js",
"module": "./esm5/service-worker.js",
"es2015": "./esm15/service-worker.js",
"es2015": "./esm2015/service-worker.js",
"typings": "./service-worker.d.ts",
"author": "angular",
"license": "MIT",