Skip to content

Commit 42cc64d

Browse files
authored
[sync] 2025/07/02 (#508)
2 parents 14ac622 + 9b3d4e4 commit 42cc64d

Some content is hidden

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

51 files changed

+19613
-12986
lines changed

examples/misc/test/language_tour/collections/for_loop_in_collection_c.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ import 'package:test/test.dart';
22

33
void main() {
44
// #docregion code_sample
5-
var items = [1, for (var x = 2; x < 4; x++) x, 7]; // [1, 2, 3, 4, 7]
5+
var items = [1, for (var x = 2; x < 4; x++) x, 7]; // [1, 2, 3, 7]
66
// #enddocregion code_sample
77

88
print(items);
9-
expect(items, equals([1, 2, 3, 4, 7]));
9+
expect(items, equals([1, 2, 3, 7]));
1010
}

firebase.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,8 @@
117117
{ "source": "/dart-vm{,/**}", "destination": "/server", "type": 301 },
118118
{ "source": "/dart2js-reflection", "destination": "https://github.com/dart-lang/sdk/issues/21654", "type": 301 },
119119
{ "source": "/dartium{,/**}", "destination": "/tools#editors", "type": 301 },
120+
{ "source": "/deprecated/language-tour", "destination": "/language", "type": 301 },
121+
{ "source": "/deprecated/library-tour", "destination": "/libraries", "type": 301 },
120122
{ "source": "/deprecated/sound-problems", "destination": "/language/type-system", "type": 301 },
121123
{ "source": "/devices", "destination": "/overview#platform", "type": 301 },
122124
{ "source": "/dev{,/**}", "destination": "https://api.dart.cn/dev", "type": 301 },
@@ -226,7 +228,7 @@
226228
{ "source": "/guides/language/extension-methods", "destination": "/language/extension-methods", "type": 301 },
227229
{ "source": "/guides/language/evolution", "destination": "/resources/language/evolution", "type": 301 },
228230
{ "source": "/guides/language/formatting", "destination": "/tools/dart-format", "type": 301 },
229-
{ "source": "/guides/language/language-tour", "destination": "/deprecated/language-tour", "type": 301 },
231+
{ "source": "/guides/language/language-tour", "destination": "/language", "type": 301 },
230232
{ "source": "/guides/language/library-tour", "destination": "/libraries", "type": 301 },
231233
{ "source": "/guides/language/numbers", "destination": "/resources/language/number-representation", "type": 301 },
232234
{ "source": "/guides/language/sound-dart", "destination": "/language/type-system", "type": 301 },
@@ -242,7 +244,7 @@
242244
{ "source": "/guides/libraries/create-packages", "destination": "/tools/pub/create-packages", "type": 301 },
243245
{ "source": "/guides/libraries/futures-error-handling", "destination": "/libraries/async/futures-error-handling", "type": 301 },
244246
{ "source": "/guides/libraries/java-interop", "destination": "/interop/java-interop", "type": 301 },
245-
{ "source": "/guides/libraries/library-tour", "destination": "/deprecated/library-tour", "type": 301 },
247+
{ "source": "/guides/libraries/library-tour", "destination": "/libraries", "type": 301 },
246248
{ "source": "/guides/libraries/objective-c-interop", "destination": "/interop/objective-c-interop", "type": 301 },
247249
{ "source": "/guides/libraries/c-interop", "destination": "/interop/c-interop", "type": 301 },
248250
{ "source": "/guides/libraries/private-files", "destination": "/tools/pub/private-files", "type": 301 },

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@
1717
"node": ">=22.11.0",
1818
"pnpm": ">=10.4.1"
1919
},
20-
"packageManager": "pnpm@10.11.1",
20+
"packageManager": "pnpm@10.12.1",
2121
"devDependencies": {
22-
"@11ty/eleventy": "^3.1.1",
23-
"@swc/html": "^1.11.31",
22+
"@11ty/eleventy": "^3.1.2",
23+
"@swc/html": "^1.12.9",
2424
"@types/hast": "^3.0.4",
2525
"@types/markdown-it": "^14.1.2",
26-
"@types/node": "^22.15.30",
26+
"@types/node": "^22.15.34",
2727
"hast-util-from-html": "^2.0.3",
2828
"hast-util-select": "^6.0.4",
2929
"hast-util-to-html": "^9.0.5",
@@ -35,8 +35,8 @@
3535
"markdown-it-attrs": "^4.3.1",
3636
"markdown-it-container": "^4.0.0",
3737
"markdown-it-deflist": "^3.0.0",
38-
"sass": "^1.89.1",
39-
"shiki": "^3.6.0",
40-
"tsx": "^4.19.4"
38+
"sass": "^1.89.2",
39+
"shiki": "^3.7.0",
40+
"tsx": "4.19.4"
4141
}
4242
}

0 commit comments

Comments
 (0)