File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed
packages/angular/ssr/third_party/critters Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,11 @@ package(default_visibility = ["//visibility:public"])
6
6
esbuild (
7
7
name = "bundled_critters" ,
8
8
config = ":esbuild_config" ,
9
- entry_point = "@npm//:node_modules/critters/dist/critters.mjs" ,
9
+ # We should be able to use "@npm//:node_modules/critters/dist/critters.mjs" as entry_point and avoid having to create a file.
10
+ # But this causes a lot of flakes on Windows due to the linker.
11
+ # [link_node_modules.js] An error has been reported: [Error: ENOENT: no such file or directory,
12
+ # unlink 'C:\users\runneradmin\_bazel_runneradmin\whf6gbwo\execroot\angular_cli\node_modules']
13
+ entry_point = ":index.mjs" ,
10
14
metafile = True ,
11
15
splitting = True ,
12
16
deps = [
Original file line number Diff line number Diff line change
1
+ /**
2
+ * @license
3
+ * Copyright Google LLC All Rights Reserved.
4
+ *
5
+ * Use of this source code is governed by an MIT-style license that can be
6
+ * found in the LICENSE file at https://angular.io/license
7
+ */
8
+
9
+ export { default } from 'critters' ;
You can’t perform that action at this time.
0 commit comments