Skip to content

Commit b0e004c

Browse files
authored
Migrate to 11ty (#10336)
Closes #10203 Fixes #10335 Fixes #9524
1 parent e35ae06 commit b0e004c

File tree

1,652 files changed

+8591
-8106
lines changed

Some content is hidden

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

1,652 files changed

+8591
-8106
lines changed

.dockerignore

-7
This file was deleted.

.firebaserc

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
"sz": "sz-flutter",
99
"sz2": "sz-flutter-2",
1010
"ft": "flutter-web-staging",
11-
"bt": "flt-test",
1211
"ats": "tony-flutter-site",
1312
"filiph": "flutter-website-filiph-staging"
1413
}

.github/dependabot.yml

-15
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,6 @@
33

44
version: 2
55
updates:
6-
- package-ecosystem: "bundler"
7-
directory: "/"
8-
schedule:
9-
interval: "daily"
10-
labels:
11-
- "auto.dependencies"
12-
- "auto.bundler"
13-
- "lang.ruby"
14-
- package-ecosystem: "docker"
15-
directory: "/"
16-
schedule:
17-
interval: "daily"
18-
labels:
19-
- "auto.dependencies"
20-
- "auto.docker"
216
- package-ecosystem: "github-actions"
227
directory: "/"
238
schedule:

.github/workflows/codeql-analysis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
strategy:
2424
fail-fast: false
2525
matrix:
26-
language: [ 'javascript', 'ruby' ]
26+
language: [ 'javascript' ]
2727
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
2828
# Learn more about CodeQL language support at https://git.io/codeql-language-support
2929

.github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,6 @@ jobs:
7474
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
7575
with:
7676
submodules: recursive
77-
- name: Build site
78-
run: make build BUILD_CONFIGS=_config.yml
7977
- name: Enable Corepack
8078
run: corepack enable
8179
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8
@@ -91,6 +89,8 @@ jobs:
9189
sdk: stable
9290
- name: Fetch Dart dependencies
9391
run: dart pub get
92+
- name: Build site
93+
run: dart run flutter_site build
9494
- name: Check for broken Markdown link references
9595
run: dart run flutter_site check-link-references
9696
- name: Check for broken internal links

AUTHORS

+1
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,4 @@ Gianluca Cesari <[email protected]>
1616
Hidenori Matsubayashi <[email protected]>
1717
Pradumna Saraf <[email protected]>
1818
19+
Parker Lougheed <[email protected]>

CODEOWNERS

-6
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,6 @@
77
# Covers all web content
88
/src/ @sfshaza2 @atsansone @parlough @domesticmouse @MaryaBelanger
99

10-
# Covers Jekyll plugins
11-
/src/_plugins/ @khanhnwin @parlough @sfshaza2 @atsansone @domesticmouse @MaryaBelanger
12-
13-
# Covers website styles
14-
/src/_sass/ @khanhnwin @parlough @sfshaza2 @atsansone @domesticmouse @MaryaBelanger
15-
1610
# Covers website tooling
1711
/tool/ @sfshaza2 @atsansone @parlough @khanhnwin @domesticmouse @MaryaBelanger
1812

CONTRIBUTING.md

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
If you would like to contribute to the Flutter project,
32
we’re happy to have your help! Anyone can contribute, whether you’re new to
43
the project or you’ve been around a long time, and whether you self-identify
@@ -19,7 +18,7 @@ Flutter](https://github.com/flutter/flutter/blob/main/CONTRIBUTING.md)
1918
in the [Flutter SDK](https://github.com/flutter/flutter) repo.
2019

2120
We are also happy to accept your PRs to the
22-
[Flutter website](https://github.com/flutter/website/) repo,
21+
[Flutter documentation website](https://github.com/flutter/website/) repo,
2322
even if it's just to fix a typo.
2423

2524
For ways to get involved in the Flutter community or to learn about us,
@@ -31,7 +30,7 @@ We encourage you to reach out and join the conversation.
3130

3231
An easy way to send feedback is to "thumbs up" issues important to you
3332
in either the issue tracker for the [Flutter SDK and API docs][issues],
34-
or the [flutter.dev website][doc-issues].
33+
or the [docs.flutter.dev website][doc-issues].
3534

3635
Other ways you can contribute:
3736

@@ -42,8 +41,8 @@ Other ways you can contribute:
4241
* [Report bugs and request features][issues]
4342
* [Report API docs bugs][issues]
4443
* [Submit PRs to the Flutter SDK][PRs]
45-
* [Request docs for flutter.dev][doc-issues]
46-
* [Submit PRs to flutter.dev][doc-PRs]
44+
* [Request docs for docs.flutter.dev][doc-issues]
45+
* [Submit PRs to docs.flutter.dev][doc-PRs]
4746
* [Follow us on Twitter: @flutterdev](https://twitter.com/flutterdev/)
4847
* [Read the Flutter Publication on Medium](https://medium.com/flutter)
4948
* [Sign up to Future UX Studies on Flutter](https://flutter.dev/research-signup)

Dockerfile

-51
This file was deleted.

Gemfile

-13
This file was deleted.

Gemfile.lock

-110
This file was deleted.

Makefile

-29
This file was deleted.

0 commit comments

Comments
 (0)