JiaLiPassion 
							
						 
					 
					
						
						
						
						
							
						
						
							8c6fb17d29 
							
						 
					 
					
						
						
							
							build: reference zone.js from source directly instead of npm. ( #33046 )  
						
						... 
						
						
						
						Close  #32482 
PR Close  #33046  
					
						2019-11-06 00:48:34 +00:00 
						 
				 
			
				
					
						
							
							
								Martin Probst 
							
						 
					 
					
						
						
						
						
							
						
						
							09536423e8 
							
						 
					 
					
						
						
							
							fix(zone.js): work around TS3.7 issue ( #33294 )  
						
						... 
						
						
						
						In TypeScript 3.7, circularity detection misfires on the declaration of `value` here.
https://github.com/microsoft/TypeScript/issues/32950 
Declaring an explicit type avoids the problem.
PR Close  #33294  
						
						
					 
					
						2019-11-01 17:46:03 +00:00 
						 
				 
			
				
					
						
							
							
								Greg Magolan 
							
						 
					 
					
						
						
						
						
							
						
						
							4ee354da99 
							
						 
					 
					
						
						
							
							build: switch to @build_bazel_rules_nodejs//:index.bzl load point ( #33433 )  
						
						... 
						
						
						
						The defs.bzl load point will be removed for the rules_nodejs 1.0 release.
PR Close  #33433  
						
						
					 
					
						2019-10-28 10:10:48 -07:00 
						 
				 
			
				
					
						
							
							
								Alex Eagle 
							
						 
					 
					
						
						
						
						
							
						
						
							422eb14dc0 
							
						 
					 
					
						
						
							
							build: remove vendored Babel typings ( #33226 )  
						
						... 
						
						
						
						These were getting included in the @angular/localize package.
Instead, patch the upstream files to work with TS typeRoots option
See bazelbuild/rules_nodejs#1033
PR Close  #33226  
						
						
					 
					
						2019-10-17 18:45:52 -04:00 
						 
				 
			
				
					
						
							
							
								Matias Niemelä 
							
						 
					 
					
						
						
						
						
							
						
						
							e9ee6859e3 
							
						 
					 
					
						
						
							
							revert: build: remove vendored Babel typings ( #33176 ) ( #33215 )  
						
						... 
						
						
						
						This reverts commit 4c63e6ba04c1b2dfab1ab7454eed2bdb8d802694.
PR Close  #33215  
						
						
					 
					
						2019-10-17 00:24:25 -04:00 
						 
				 
			
				
					
						
							
							
								Alex Eagle 
							
						 
					 
					
						
						
						
						
							
						
						
							4c63e6ba04 
							
						 
					 
					
						
						
							
							build: remove vendored Babel typings ( #33176 )  
						
						... 
						
						
						
						These were getting included in the @angular/localize package.
Instead, patch the upstream files to work with TS typeRoots option
See bazelbuild/rules_nodejs#1033
PR Close  #33176  
						
						
					 
					
						2019-10-16 12:54:28 -04:00 
						 
				 
			
				
					
						
							
							
								Danny Skoog 
							
						 
					 
					
						
						
						
						
							
						
						
							6ab5f3648a 
							
						 
					 
					
						
						
							
							refactor: utilize type narrowing ( #33075 )  
						
						... 
						
						
						
						PR Close  #33075  
						
						
					 
					
						2019-10-10 15:18:44 -07:00 
						 
				 
			
				
					
						
							
							
								Alex Eagle 
							
						 
					 
					
						
						
						
						
							
						
						
							f783244ad1 
							
						 
					 
					
						
						
							
							build: update to rules_nodejs 0.38 ( #32889 )  
						
						... 
						
						
						
						PR Close  #32889  
						
						
					 
					
						2019-10-08 09:27:11 -07:00 
						 
				 
			
				
					
						
							
							
								Martin Probst 
							
						 
					 
					
						
						
						
						
							
						
						
							5332b04f35 
							
						 
					 
					
						
						
							
							build: TypeScript 3.6 compatibility. ( #32908 )  
						
						... 
						
						
						
						This PR updates Angular to compile with TypeScript 3.6 while retaining
compatibility with TS3.5. We achieve this by inserting several `as any`
casts for compatiblity around `ts.CompilerHost` APIs.
PR Close  #32908  
						
						
					 
					
						2019-10-03 09:09:11 -07:00 
						 
				 
			
				
					
						
							
							
								Greg Magolan 
							
						 
					 
					
						
						
						
						
							
						
						
							c1346462db 
							
						 
					 
					
						
						
							
							build: update to nodejs rules 0.37.1 ( #32151 )  
						
						... 
						
						
						
						This release includes a ts_config runfiles fix so also cleaning up the one line work-around from #31943 .
This also updates to upstream rules_webtesting browser repositories load("@io_bazel_rules_webtesting//web/versioned:browsers-0.3.2.bzl", "browser_repositories") to fix a breaking change in the chromedriver distro. This bumps up the version of chromium to the version here: https://github.com/bazelbuild/rules_webtesting/blob/master/web/versioned/browsers-0.3.2.bzl 
PR Close  #32151  
						
						
					 
					
						2019-09-25 11:29:12 -07:00 
						 
				 
			
				
					
						
							
							
								Martin Probst 
							
						 
					 
					
						
						
						
						
							
						
						
							d498314850 
							
						 
					 
					
						
						
							
							fix(zone.js): a path traversal attack in test ( #32392 )  
						
						... 
						
						
						
						`simple-server.js` is vulnerable to a trivial path traversal attack, i.e. an
attacker can supply a path like `../../etc/passwd` to read arbitrary files on
the server. This change fixes the issue by properly resolving the path, and then
only serving files under the current directory (as intended).
This is not really a security issue, given the code is not part of Angular, but
rather just testing infrastructure for Angular itself, and the CI servers are
not expected to contain confidential information, but still worth fixing for
code hygiene.
PR Close  #32392  
						
						
					 
					
						2019-08-30 12:44:46 -07:00 
						 
				 
			
				
					
						
							
							
								Miško Hevery 
							
						 
					 
					
						
						
						
						
							
						
						
							cda205deb4 
							
						 
					 
					
						
						
							
							release: cut the zone.js-0.10.2 release ( #32128 )  
						
						... 
						
						
						
						PR Close  #32128  
						
						
					 
					
						2019-08-13 16:55:04 -07:00 
						 
				 
			
				
					
						
							
							
								Miško Hevery 
							
						 
					 
					
						
						
						
						
							
						
						
							466f5c67d6 
							
						 
					 
					
						
						
							
							docs(zone.js): update release docs instructions ( #32128 )  
						
						... 
						
						
						
						PR Close  #32128  
						
						
					 
					
						2019-08-13 16:55:03 -07:00 
						 
				 
			
				
					
						
							
							
								JiaLiPassion 
							
						 
					 
					
						
						
						
						
							
						
						
							ebcf79d7f3 
							
						 
					 
					
						
						
							
							docs(zone.js): update DEVELOPER.md for changelog instruction ( #32016 )  
						
						... 
						
						
						
						PR Close  #32016  
						
						
					 
					
						2019-08-13 09:53:00 -07:00 
						 
				 
			
				
					
						
							
							
								JiaLiPassion 
							
						 
					 
					
						
						
						
						
							
						
						
							a91a55a6d2 
							
						 
					 
					
						
						
							
							fix(zone.js): browser-legacy should not reference Zone ( #32016 )  
						
						... 
						
						
						
						PR Close  #32016  
						
						
					 
					
						2019-08-13 09:53:00 -07:00 
						 
				 
			
				
					
						
							
							
								JiaLiPassion 
							
						 
					 
					
						
						
						
						
							
						
						
							96cbcd6da4 
							
						 
					 
					
						
						
							
							feat(zone.js): support Promise.allSettled ( #31849 )  
						
						... 
						
						
						
						PR Close  #31849  
						
						
					 
					
						2019-08-05 09:54:37 -07:00 
						 
				 
			
				
					
						
							
							
								JiaLiPassion 
							
						 
					 
					
						
						
						
						
							
						
						
							2a6e6c02ed 
							
						 
					 
					
						
						
							
							build(zone.js): update gulp task to gen changelog automatically ( #31915 )  
						
						... 
						
						
						
						PR Close  #31915  
						
						
					 
					
						2019-08-02 14:28:49 -07:00 
						 
				 
			
				
					
						
							
							
								JiaLiPassion 
							
						 
					 
					
						
						
						
						
							
						
						
							fa4e17082c 
							
						 
					 
					
						
						
							
							build(zone.js): update changelog of zone.js ( #31915 )  
						
						... 
						
						
						
						PR Close  #31915  
						
						
					 
					
						2019-08-02 14:28:49 -07:00 
						 
				 
			
				
					
						
							
							
								Alex Eagle 
							
						 
					 
					
						
						
						
						
							
						
						
							975917bafd 
							
						 
					 
					
						
						
							
							Revert "fix(zone.js): don't wrap uncaught promise error. ( #31443 )" ( #31918 )  
						
						... 
						
						
						
						This reverts commit 2bb9a6535115ad8ba3c56781a4fe4141936cefe6.
It breaks tests in google3 which rely on the error handling behavior.
PR Close  #31918  
						
						
					 
					
						2019-07-30 15:03:49 -07:00 
						 
				 
			
				
					
						
							
							
								JiaLiPassion 
							
						 
					 
					
						
						
						
						
							
						
						
							4f42eb4e77 
							
						 
					 
					
						
						
							
							test(zone.js): add test codes to ensure not include sourcemap ( #31892 )  
						
						... 
						
						
						
						PR Close  #31892  
						
						
					 
					
						2019-07-30 13:00:26 -07:00 
						 
				 
			
				
					
						
							
							
								JiaLiPassion 
							
						 
					 
					
						
						
						
						
							
						
						
							f216724c2c 
							
						 
					 
					
						
						
							
							build(zone.js): remove sourceMappingUrl from bundle ( #31892 )  
						
						... 
						
						
						
						Close  #31883 
PR Close  #31892  
					
						2019-07-30 13:00:26 -07:00 
						 
				 
			
				
					
						
							
							
								Alex Eagle 
							
						 
					 
					
						
						
						
						
							
						
						
							5c9a8961da 
							
						 
					 
					
						
						
							
							fix(zone.js): don't rely on global node typings outside of node/ directory ( #31783 )  
						
						... 
						
						
						
						PR Close  #31783  
						
						
					 
					
						2019-07-30 12:59:40 -07:00 
						 
				 
			
				
					
						
							
							
								JiaLiPassion 
							
						 
					 
					
						
						
						
						
							
						
						
							f5c605b608 
							
						 
					 
					
						
						
							
							fix(zone.js): should expose some other internal intefaces ( #31866 )  
						
						... 
						
						
						
						PR Close  #31866  
						
						
					 
					
						2019-07-29 16:08:55 -07:00 
						 
				 
			
				
					
						
							
							
								JiaLiPassion 
							
						 
					 
					
						
						
						
						
							
						
						
							30673090ec 
							
						 
					 
					
						
						
							
							build(zone.js): add changelog gulptask for zone.js ( #31852 )  
						
						... 
						
						
						
						PR Close  #31852  
						
						
					 
					
						2019-07-26 11:30:08 -07:00 
						 
				 
			
				
					
						
							
							
								JiaLiPassion 
							
						 
					 
					
						
						
						
						
							
						
						
							c7542a1d09 
							
						 
					 
					
						
						
							
							fix(zone.js): don't fire unhandledrejection if Zone handled error ( #31718 )  
						
						... 
						
						
						
						Close  #31701 
PR Close  #31718  
					
						2019-07-24 16:10:59 -07:00 
						 
				 
			
				
					
						
							
							
								JiaLiPassion 
							
						 
					 
					
						
						
						
						
							
						
						
							2c402d5c99 
							
						 
					 
					
						
						
							
							fix(zone.js): handle MSPointer event correctly ( #31722 )  
						
						... 
						
						
						
						Close  #31699 
PR Close  #31722  
					
						2019-07-24 14:42:49 -07:00 
						 
				 
			
				
					
						
							
							
								JiaLiPassion 
							
						 
					 
					
						
						
						
						
							
						
						
							35a025fbca 
							
						 
					 
					
						
						
							
							fix(zone.js): patch shadydom ( #31717 )  
						
						... 
						
						
						
						Close  #31686 
PR Close  #31717  
					
						2019-07-24 14:42:14 -07:00 
						 
				 
			
				
					
						
							
							
								JiaLiPassion 
							
						 
					 
					
						
						
						
						
							
						
						
							716af1059c 
							
						 
					 
					
						
						
							
							fix(zone.js): move property patch to legacy ( #31660 )  
						
						... 
						
						
						
						Close  #31659 
PR Close  #31660  
					
						2019-07-24 14:36:43 -07:00 
						 
				 
			
				
					
						
							
							
								JiaLiPassion 
							
						 
					 
					
						
						
						
						
							
						
						
							a182714703 
							
						 
					 
					
						
						
							
							fix(zone.js): should remove on symbol property after removeAllListeners ( #31644 )  
						
						... 
						
						
						
						Close  #31643 
PR Close  #31644  
					
						2019-07-24 14:35:37 -07:00 
						 
				 
			
				
					
						
							
							
								JiaLiPassion 
							
						 
					 
					
						
						
						
						
							
						
						
							17b32b5fd4 
							
						 
					 
					
						
						
							
							fix(zone.js): hook should set correct current zone ( #31642 )  
						
						... 
						
						
						
						Close  #31641 
PR Close  #31642  
					
						2019-07-24 14:34:58 -07:00 
						 
				 
			
				
					
						
							
							
								JiaLiPassion 
							
						 
					 
					
						
						
						
						
							
						
						
							87ce4e997b 
							
						 
					 
					
						
						
							
							fix(zone.js): zone-mix should import correct browser module ( #31628 )  
						
						... 
						
						
						
						Close  #31626 
PR Close  #31628  
					
						2019-07-24 14:33:07 -07:00 
						 
				 
			
				
					
						
							
							
								JiaLiPassion 
							
						 
					 
					
						
						
						
						
							
						
						
							2bb9a65351 
							
						 
					 
					
						
						
							
							fix(zone.js): don't wrap uncaught promise error. ( #31443 )  
						
						... 
						
						
						
						Close  #27840 
PR Close  #31443  
					
						2019-07-24 14:31:17 -07:00 
						 
				 
			
				
					
						
							
							
								JiaLiPassion 
							
						 
					 
					
						
						
						
						
							
						
						
							6b51ed29ef 
							
						 
					 
					
						
						
							
							fix(zone.js): __load_patch and __symbol__ should be in zone_extern for closure compiler ( #31350 )  
						
						... 
						
						
						
						PR Close  #31350  
						
						
					 
					
						2019-07-24 13:30:01 -07:00 
						 
				 
			
				
					
						
							
							
								JiaLiPassion 
							
						 
					 
					
						
						
						
						
							
						
						
							a445826dad 
							
						 
					 
					
						
						
							
							fix(zone.js): handle new api of electron 4 ( #31669 )  
						
						... 
						
						
						
						Close  #31668 
PR Close  #31669  
					
						2019-07-23 21:13:21 -07:00 
						 
				 
			
				
					
						
							
							
								JiaLiPassion 
							
						 
					 
					
						
						
						
						
							
						
						
							7f7033bbd7 
							
						 
					 
					
						
						
							
							fix(zone.js): update dart zone link ( #31646 )  
						
						... 
						
						
						
						Close  #31645 
PR Close  #31646  
					
						2019-07-23 21:12:52 -07:00 
						 
				 
			
				
					
						
							
							
								Paul Gschwendtner 
							
						 
					 
					
						
						
						
						
							
						
						
							60f58bf051 
							
						 
					 
					
						
						
							
							refactor: ensure zone.js can be built with typescript strict flag ( #30993 )  
						
						... 
						
						
						
						As part of FW-1265, the `zone.js` package is made compatible
with the TypeScript `--strict` flag. Read more about the strict flag [here](https://www.typescriptlang.org/docs/handbook/compiler-options.html )
PR Close  #30993  
						
						
					 
					
						2019-07-18 14:21:26 -07:00 
						 
				 
			
				
					
						
							
							
								vikerman 
							
						 
					 
					
						
						
						
						
							
						
						
							c4c340a7c4 
							
						 
					 
					
						
						
							
							fix(zone.js): fix zone for Jasmine 3.3. ( #31497 )  
						
						... 
						
						
						
						If zonejs is sent undefined callbacks it proceeds to attempt to call them, then fails, catches it own fail, rewrites the stack to hide the mistake, and reports a TypeError with a callstack unrelated to inputs.
Throw early if the callback is undefined (as can happen if JS or any-ified TS calls zone invokeTask).
Check for undefined onCommplete callback to zonejs jasmine wrapper.
PR Close  #31497  
						
						
					 
					
						2019-07-12 13:46:14 -04:00 
						 
				 
			
				
					
						
							
							
								Hamid 
							
						 
					 
					
						
						
						
						
							
						
						
							9204de96a1 
							
						 
					 
					
						
						
							
							fix: use the correct WTF array to iterate over ( #31208 )  
						
						... 
						
						
						
						PR Close  #31208  
						
						
					 
					
						2019-07-11 15:08:54 -04:00 
						 
				 
			
				
					
						
							
							
								Alex Eagle 
							
						 
					 
					
						
						
						
						
							
						
						
							e6f1b04cd5 
							
						 
					 
					
						
						
							
							fix(zone.js): restore definition of global ( #31453 )  
						
						... 
						
						
						
						This partially reverts some changes from 71b9371180 (diff-dd469785fca8680a5b33b1e81c5cfd91R1420)Close  #31453  
						
						
					 
					
						2019-07-09 09:34:50 -07:00 
						 
				 
			
				
					
						
							
							
								Michael Prentice 
							
						 
					 
					
						
						
						
						
							
						
						
							95a9d67599 
							
						 
					 
					
						
						
							
							test(zone.js): fix typos ( #31358 )  
						
						... 
						
						
						
						Relates to #31144 
PR Close  #31358  
						
						
					 
					
						2019-07-02 11:29:33 -07:00 
						 
				 
			
				
					
						
							
							
								Greg Magolan 
							
						 
					 
					
						
						
						
						
							
						
						
							a4a423a083 
							
						 
					 
					
						
						
							
							build: fix build failures with worker mode cache and @types/events ( #31325 )  
						
						... 
						
						
						
						Errors observed only in tests on CircleCI — was not reproducible locally.
```
ERROR: /home/circleci/ng/packages/http/test/BUILD.bazel:3:1: Compiling TypeScript (devmode) //packages/http/test:test_lib failed (Exit 1): tsc_wrapped failed: error executing command
  (cd /home/circleci/.cache/bazel/_bazel_circleci/9ce5c2144ecf75d11717c0aa41e45a8d/execroot/angular && \
  exec env - \
    BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 \
    PATH=/bin:/usr/bin:/usr/local/bin \
  bazel-out/host/bin/external/npm/@bazel/typescript/bin/tsc_wrapped @@bazel-out/k8-fastbuild/bin/packages/http/test/test_lib_es5_tsconfig.json)
Execution platform: //tools:rbe_ubuntu1604-angular
Compilation failed Error: missing input digest for /home/circleci/.cache/bazel/_bazel_circleci/9ce5c2144ecf75d11717c0aa41e45a8d/execroot/angular/external/npm/node_modules/@types/events/index.d.ts.
ERROR: /home/circleci/ng/packages/benchpress/test/BUILD.bazel:3:1: Compiling TypeScript (devmode) //packages/benchpress/test:test_lib failed (Exit 1): tsc_wrapped failed: error executing command
  (cd /home/circleci/.cache/bazel/_bazel_circleci/9ce5c2144ecf75d11717c0aa41e45a8d/execroot/angular && \
  exec env - \
    BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 \
    PATH=/bin:/usr/bin:/usr/local/bin \
  bazel-out/host/bin/external/npm/@bazel/typescript/bin/tsc_wrapped @@bazel-out/k8-fastbuild/bin/packages/benchpress/test/test_lib_es5_tsconfig.json)
Execution platform: //tools:rbe_ubuntu1604-angular
Compilation failed Error: missing input digest for /home/circleci/.cache/bazel/_bazel_circleci/9ce5c2144ecf75d11717c0aa41e45a8d/execroot/angular/external/npm/node_modules/@types/events/index.d.ts
ERROR: C:/codefresh/volume/angular/packages/compiler/test/css_parser/BUILD.bazel:3:1: Compiling TypeScript (devmode) //packages/compiler/test/css_parser:css_parser_lib failed (Exit 1):
tsc_wrapped.exe failed: error executing command
  cd C:/users/containeradministrator/_bazel_containeradministrator/zquin2l6/execroot/angular
  SET PATH=C:\msys64\usr\bin;C:\msys64\bin;C:\Windows;C:\Windows\System32;C:\Windows\System32\WindowsPowerShell\v1.0
    SET RUNFILES_MANIFEST_ONLY=1
  bazel-out/host/bin/external/npm/@bazel/typescript/bin/tsc_wrapped.exe @@bazel-out/x64_windows-fastbuild/bin/packages/compiler/test/css_parser/css_parser_lib_es5_tsconfig.json
Execution platform: @bazel_tools//platforms:host_platform
Compilation failed Error: missing input digest for C:/users/containeradministrator/_bazel_containeradministrator/zquin2l6/execroot/angular/external/npm/node_modules/@types/events/index.
d.ts
```
PR Close  #31325  
						
						
					 
					
						2019-07-01 14:16:43 -07:00 
						 
				 
			
				
					
						
							
							
								George Kalpakas 
							
						 
					 
					
						
						
						
						
							
						
						
							3851544674 
							
						 
					 
					
						
						
							
							style: fix code style in several files ( #31295 )  
						
						... 
						
						
						
						These files have not been formatted properly, due to issues in the
`gulp format*` tasks. See previous commits (or #31295 ) for more details.
PR Close  #31295  
						
						
					 
					
						2019-06-26 13:29:29 -07:00 
						 
				 
			
				
					
						
							
							
								Alex Rickabaugh 
							
						 
					 
					
						
						
						
						
							
						
						
							26a85a82ff 
							
						 
					 
					
						
						
							
							Revert "build: fix build failures with worker mode cache and @types/events ( #31019 )" ( #31267 )  
						
						... 
						
						
						
						This reverts commit 6ba42f1da4a5e8abf87e3c4202d423504357fe49.
Reason: this causes failures in g3 with i18n extraction. See #31267 .
PR Close  #31267  
						
						
					 
					
						2019-06-25 14:36:00 -07:00 
						 
				 
			
				
					
						
							
							
								Greg Magolan 
							
						 
					 
					
						
						
						
						
							
						
						
							6ba42f1da4 
							
						 
					 
					
						
						
							
							build: fix build failures with worker mode cache and @types/events ( #31019 )  
						
						... 
						
						
						
						Errors observed only in tests on CircleCI — was not reproducible locally.
```
ERROR: /home/circleci/ng/packages/http/test/BUILD.bazel:3:1: Compiling TypeScript (devmode) //packages/http/test:test_lib failed (Exit 1): tsc_wrapped failed: error executing command
  (cd /home/circleci/.cache/bazel/_bazel_circleci/9ce5c2144ecf75d11717c0aa41e45a8d/execroot/angular && \
  exec env - \
    BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 \
    PATH=/bin:/usr/bin:/usr/local/bin \
  bazel-out/host/bin/external/npm/@bazel/typescript/bin/tsc_wrapped @@bazel-out/k8-fastbuild/bin/packages/http/test/test_lib_es5_tsconfig.json)
Execution platform: //tools:rbe_ubuntu1604-angular
Compilation failed Error: missing input digest for /home/circleci/.cache/bazel/_bazel_circleci/9ce5c2144ecf75d11717c0aa41e45a8d/execroot/angular/external/npm/node_modules/@types/events/index.d.ts.
ERROR: /home/circleci/ng/packages/benchpress/test/BUILD.bazel:3:1: Compiling TypeScript (devmode) //packages/benchpress/test:test_lib failed (Exit 1): tsc_wrapped failed: error executing command
  (cd /home/circleci/.cache/bazel/_bazel_circleci/9ce5c2144ecf75d11717c0aa41e45a8d/execroot/angular && \
  exec env - \
    BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 \
    PATH=/bin:/usr/bin:/usr/local/bin \
  bazel-out/host/bin/external/npm/@bazel/typescript/bin/tsc_wrapped @@bazel-out/k8-fastbuild/bin/packages/benchpress/test/test_lib_es5_tsconfig.json)
Execution platform: //tools:rbe_ubuntu1604-angular
Compilation failed Error: missing input digest for /home/circleci/.cache/bazel/_bazel_circleci/9ce5c2144ecf75d11717c0aa41e45a8d/execroot/angular/external/npm/node_modules/@types/events/index.d.ts
ERROR: C:/codefresh/volume/angular/packages/compiler/test/css_parser/BUILD.bazel:3:1: Compiling TypeScript (devmode) //packages/compiler/test/css_parser:css_parser_lib failed (Exit 1):
tsc_wrapped.exe failed: error executing command
  cd C:/users/containeradministrator/_bazel_containeradministrator/zquin2l6/execroot/angular
  SET PATH=C:\msys64\usr\bin;C:\msys64\bin;C:\Windows;C:\Windows\System32;C:\Windows\System32\WindowsPowerShell\v1.0
    SET RUNFILES_MANIFEST_ONLY=1
  bazel-out/host/bin/external/npm/@bazel/typescript/bin/tsc_wrapped.exe @@bazel-out/x64_windows-fastbuild/bin/packages/compiler/test/css_parser/css_parser_lib_es5_tsconfig.json
Execution platform: @bazel_tools//platforms:host_platform
Compilation failed Error: missing input digest for C:/users/containeradministrator/_bazel_containeradministrator/zquin2l6/execroot/angular/external/npm/node_modules/@types/events/index.
d.ts
```
PR Close  #31019  
						
						
					 
					
						2019-06-25 10:21:07 -07:00 
						 
				 
			
				
					
						
							
							
								JiaLiPassion 
							
						 
					 
					
						
						
						
						
							
						
						
							4bd6fca4ef 
							
						 
					 
					
						
						
							
							docs: fix typo of zone.js README.md ( #31178 )  
						
						... 
						
						
						
						PR Close  #31178  
						
						
					 
					
						2019-06-21 10:20:26 -07:00 
						 
				 
			
				
					
						
							
							
								Joey Perrott 
							
						 
					 
					
						
						
						
						
							
						
						
							34eaafdf40 
							
						 
					 
					
						
						
							
							build: correct zone.js bazel test visibilty rule ( #31175 )  
						
						... 
						
						
						
						PR Close  #31175  
						
						
					 
					
						2019-06-20 16:05:21 -07:00 
						 
				 
			
				
					
						
							
							
								Alex Eagle 
							
						 
					 
					
						
						
						
						
							
						
						
							bf7d046269 
							
						 
					 
					
						
						
							
							style: fix bazel lint in zone.js ( #31172 )  
						
						... 
						
						
						
						Update to latest buildifier to fix a false positive error
PR Close  #31172  
						
						
					 
					
						2019-06-20 12:44:06 -07:00 
						 
				 
			
				
					
						
							
							
								JiaLiPassion 
							
						 
					 
					
						
						
						
						
							
						
						
							5eb7426216 
							
						 
					 
					
						
						
							
							build: move zone.js to angular repo ( #30962 )  
						
						... 
						
						
						
						PR Close  #30962  
						
						
					 
					
						2019-06-20 11:27:39 -07:00