From da3563ce192896d0f41fa1edc7f344afd98b6ba0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mathias=20D=C3=B8hl?= Date: Tue, 5 Dec 2017 15:15:20 +0100 Subject: [PATCH] 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 --- packages/service-worker/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/service-worker/package.json b/packages/service-worker/package.json index e48a8f03f2..7a9c1dd2f2 100644 --- a/packages/service-worker/package.json +++ b/packages/service-worker/package.json @@ -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",