Skip to content

Commit faab735

Browse files
committed
build: wip!
1 parent f2edaaf commit faab735

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

.github/workflows/pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
strategy:
105105
fail-fast: false
106106
matrix:
107-
os: [ubuntu-latest]
107+
os: [windows-latest]
108108
node: [22]
109109
subset: [npm, esbuild]
110110
shard: [0, 1, 2, 3, 4, 5]
@@ -148,7 +148,7 @@ jobs:
148148
strategy:
149149
fail-fast: false
150150
matrix:
151-
os: [ubuntu-latest]
151+
os: [windows-latest]
152152
node: [18]
153153
subset: [npm, esbuild]
154154
shard: [0, 1, 2, 3, 4, 5]

packages/angular/ssr/third_party/critters/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ package(default_visibility = ["//visibility:public"])
66
esbuild(
77
name = "bundled_critters",
88
config = ":esbuild_config",
9-
entry_point = "@npm//:node_modules/critters/dist/critters.mjs",
9+
entry_point = ":index.mjs",
1010
metafile = True,
1111
splitting = True,
1212
deps = [
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
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';

0 commit comments

Comments
 (0)