Skip to content

Commit 3da71ce

Browse files
build: update repository locations for bazel rules (#32866)
* build: update repository locations for bazel rules The repositories for `rules_sass`, `rules_angular`, and `rules_browsers` were recently transferred from devversion to the angular organization. This commit updates the internal bazel module rules to rely on the new repository locations. * fixup! build: update repository locations for bazel rules
1 parent 786909c commit 3da71ce

File tree

53 files changed

+659
-685
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+659
-685
lines changed

MODULE.bazel

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,22 +18,22 @@ bazel_dep(name = "bazel_skylib", version = "1.9.0")
1818
bazel_dep(name = "rules_browsers")
1919
git_override(
2020
module_name = "rules_browsers",
21-
commit = "a520959a60cbe2c0c14326cc368facf1d52daecd",
22-
remote = "https://github.com/devversion/rules_browsers.git",
21+
commit = "7043f918640169063a6281ab4afb61389a0aad6d",
22+
remote = "https://github.com/angular/rules_browsers.git",
2323
)
2424

2525
bazel_dep(name = "rules_sass")
2626
git_override(
2727
module_name = "rules_sass",
28-
commit = "1184a80751a21af8348f308abc5b38a41f26850e",
29-
remote = "https://github.com/devversion/rules_sass.git",
28+
commit = "9135eeae8b8f31d432d44cc46bfa5a8edfa04c47",
29+
remote = "https://github.com/angular/rules_sass.git",
3030
)
3131

3232
bazel_dep(name = "rules_angular")
3333
git_override(
3434
module_name = "rules_angular",
35-
commit = "d746c4f75e42cffe389d1ab077f4639be2bc78d1",
36-
remote = "https://github.com/devversion/rules_angular.git",
35+
commit = "2fe6d3b563c12fbdc32bb30fb21e9c8ca86fdcd2",
36+
remote = "https://github.com/angular/rules_angular.git",
3737
)
3838

3939
bazel_dep(name = "devinfra")

MODULE.bazel.lock

Lines changed: 5 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/aria/listbox/listbox.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -691,7 +691,7 @@ describe('Listbox', () => {
691691
});
692692
});
693693

694-
describe('typeahead functionality', () => {
694+
describe(`typeahead functionality (focusMode="${focusMode}")`, () => {
695695
const getOptions = () => [
696696
{value: 0, label: 'Apple', disabled: false},
697697
{value: 1, label: 'Apricot', disabled: false},

src/aria/private/behaviors/grid/grid-focus.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ describe('GridFocus', () => {
281281
});
282282

283283
describe('focusCell', () => {
284-
it('should set the active cell and coordinates', () => {
284+
it('should set the active cell and coordinates (#focusCell)', () => {
285285
const cells = createTestGrid(createGridA);
286286
const gridFocus = setupGridFocus(signal(cells));
287287

@@ -330,7 +330,7 @@ describe('GridFocus', () => {
330330
});
331331

332332
describe('focusCoordinates', () => {
333-
it('should set the active cell and coordinates', () => {
333+
it('should set the active cell and coordinates (#focusCoordinates)', () => {
334334
const cells = createTestGrid(createGridD);
335335
const gridFocus = setupGridFocus(signal(cells));
336336

0 commit comments

Comments
 (0)