Skip to content

Commit a880159

Browse files
committed
docs: improve sponsors section and add icons for website
1 parent 04b9560 commit a880159

File tree

14 files changed

+104
-37
lines changed

14 files changed

+104
-37
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
- macos-latest
2323
- windows-latest
2424
- ubuntu-latest
25+
fail-fast: false
2526
runs-on: ${{ matrix.os }}
2627
steps:
2728
- name: Checkout Repo

.stylelintignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,16 @@ coverage
22
dist
33
lib
44
LICENSE
5+
*.ico
56
*.js
67
*.json
78
*.lock
89
*.log
910
*.patch
11+
*.png
1012
*.ts
1113
*.tsbuildinfo
1214
*.tsx
15+
*.webmanifest
1316
*.yaml
1417
*.yml

README.md

Lines changed: 22 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,15 @@
1313

1414
> Incredible [`size-limit`](https://github.com/ai/size-limit) plugins, make `size-limit` greater
1515
16+
## TOC <!-- omit in toc -->
17+
18+
- [Packages](#packages)
19+
- [Sponsors and Backers](#sponsors-and-backers)
20+
- [Sponsors](#sponsors)
21+
- [Backers](#backers)
22+
- [Changelog](#changelog)
23+
- [License](#license)
24+
1625
## Packages
1726

1827
This repository is a monorepo managed by [changesets][] what means we actually publish several packages to npm from same codebase, including:
@@ -22,19 +31,21 @@ This repository is a monorepo managed by [changesets][] what means we actually p
2231
| [`size-limit-node-esbuild`](/packages/node-esbuild) | Node esbuild plugin for Size Limit | [![npm](https://img.shields.io/npm/v/size-limit-node-esbuild.svg)](https://www.npmjs.com/package/size-limit-node-esbuild) [![View changelog](https://img.shields.io/badge/changelog-explore-brightgreen)](https://changelogs.xyz/size-limit-node-esbuild) |
2332
| [`size-limit-preset-node-lib`](/packages/preset-node-lib) | Size Limit preset for Node libraries | [![npm](https://img.shields.io/npm/v/size-limit-preset-node-lib.svg)](https://www.npmjs.com/package/size-limit-preset-node-lib) [![View changelog](https://img.shields.io/badge/changelog-explore-brightgreen)](https://changelogs.xyz/size-limit-preset-node-lib) |
2433

25-
## Sponsors
34+
## Sponsors and Backers
35+
36+
[![Sponsors](https://raw.githubusercontent.com/1stG/static/master/sponsors.svg)](https://github.com/sponsors/JounQin)
2637

27-
| 1stG | RxTS | UnTS |
28-
| ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- |
29-
| [![1stG Open Collective backers and sponsors](https://opencollective.com/1stG/organizations.svg)](https://opencollective.com/1stG) | [![RxTS Open Collective backers and sponsors](https://opencollective.com/rxts/organizations.svg)](https://opencollective.com/rxts) | [![UnTS Open Collective backers and sponsors](https://opencollective.com/unts/organizations.svg)](https://opencollective.com/unts) |
38+
### Sponsors
3039

31-
## Backers
40+
| 1stG | RxTS | UnTS |
41+
| ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- |
42+
| [![1stG Open Collective sponsors](https://opencollective.com/1stG/organizations.svg)](https://opencollective.com/1stG) | [![RxTS Open Collective sponsors](https://opencollective.com/rxts/organizations.svg)](https://opencollective.com/rxts) | [![UnTS Open Collective sponsors](https://opencollective.com/unts/organizations.svg)](https://opencollective.com/unts) |
3243

33-
[![Backers](https://raw.githubusercontent.com/1stG/static/master/sponsors.svg)](https://github.com/sponsors/JounQin)
44+
### Backers
3445

35-
| 1stG | RxTS | UnTS |
36-
| -------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- |
37-
| [![1stG Open Collective backers and sponsors](https://opencollective.com/1stG/individuals.svg)](https://opencollective.com/1stG) | [![RxTS Open Collective backers and sponsors](https://opencollective.com/rxts/individuals.svg)](https://opencollective.com/rxts) | [![UnTS Open Collective backers and sponsors](https://opencollective.com/unts/individuals.svg)](https://opencollective.com/unts) |
46+
| 1stG | RxTS | UnTS |
47+
| ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- |
48+
| [![1stG Open Collective backers](https://opencollective.com/1stG/individuals.svg)](https://opencollective.com/1stG) | [![RxTS Open Collective backers](https://opencollective.com/rxts/individuals.svg)](https://opencollective.com/rxts) | [![UnTS Open Collective backers](https://opencollective.com/unts/individuals.svg)](https://opencollective.com/unts) |
3849

3950
## Changelog
4051

@@ -44,7 +55,7 @@ Detailed changes for each release are documented in [CHANGELOG.md](./CHANGELOG.m
4455

4556
[MIT][] © [JounQin][]@[1stG.me][]
4657

47-
[1stg.me]: https://www.1stg.me
58+
[1stg.me]: https://www.1stG.me
4859
[changesets]: https://GitHub.com/atlassian/changesets
49-
[jounqin]: https://GitHub.com/JounQin
60+
[jounqin]: https://github.com/JounQin
5061
[mit]: http://opensource.org/licenses/MIT

index.html

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,32 @@
1010
name="viewport"
1111
content="width=device-width, initial-scale=1.0"
1212
/>
13+
<link
14+
rel="apple-touch-icon"
15+
sizes="180x180"
16+
href="/apple-touch-icon.png"
17+
/>
18+
<link
19+
rel="icon"
20+
type="image/x-icon"
21+
href="/favicon.ico"
22+
/>
23+
<link
24+
rel="icon"
25+
type="image/png"
26+
sizes="32x32"
27+
href="/favicon-32x32.png"
28+
/>
29+
<link
30+
rel="icon"
31+
type="image/png"
32+
sizes="16x16"
33+
href="/favicon-16x16.png"
34+
/>
35+
<link
36+
rel="manifest"
37+
href="/site.webmanifest"
38+
/>
1339
<title>Size Limit Plugins</title>
1440
</head>
1541
<body>

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
"scripts": {
1515
"build": "tsc -b",
1616
"clean": "rimraf -g 'packages/**/{lib,*.tsbuildinfo}'",
17+
"dev": "yarn docs",
1718
"docs": "vite",
1819
"docs:build": "vite build",
1920
"lint": "run-p 'lint:*'",

packages/node-esbuild/README.md

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@ Node esbuild plugin for Size Limit
66

77
- [Usage](#usage)
88
- [Install](#install)
9-
- [Sponsors](#sponsors)
10-
- [Backers](#backers)
9+
- [Sponsors and Backers](#sponsors-and-backers)
10+
- [Sponsors](#sponsors)
11+
- [Backers](#backers)
1112
- [Changelog](#changelog)
1213
- [License](#license)
1314

@@ -26,19 +27,21 @@ yarn add -D size-limit-node-esbuild
2627
npm i -D size-limit-node-esbuild
2728
```
2829

29-
## Sponsors
30+
## Sponsors and Backers
3031

31-
| 1stG | RxTS | UnTS |
32-
| ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- |
33-
| [![1stG Open Collective backers and sponsors](https://opencollective.com/1stG/organizations.svg)](https://opencollective.com/1stG) | [![RxTS Open Collective backers and sponsors](https://opencollective.com/rxts/organizations.svg)](https://opencollective.com/rxts) | [![UnTS Open Collective backers and sponsors](https://opencollective.com/unts/organizations.svg)](https://opencollective.com/unts) |
32+
[![Sponsors](https://raw.githubusercontent.com/1stG/static/master/sponsors.svg)](https://github.com/sponsors/JounQin)
3433

35-
## Backers
34+
### Sponsors
3635

37-
[![Backers](https://raw.githubusercontent.com/1stG/static/master/sponsors.svg)](https://github.com/sponsors/JounQin)
36+
| 1stG | RxTS | UnTS |
37+
| ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- |
38+
| [![1stG Open Collective sponsors](https://opencollective.com/1stG/organizations.svg)](https://opencollective.com/1stG) | [![RxTS Open Collective sponsors](https://opencollective.com/rxts/organizations.svg)](https://opencollective.com/rxts) | [![UnTS Open Collective sponsors](https://opencollective.com/unts/organizations.svg)](https://opencollective.com/unts) |
3839

39-
| 1stG | RxTS | UnTS |
40-
| -------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- |
41-
| [![1stG Open Collective backers and sponsors](https://opencollective.com/1stG/individuals.svg)](https://opencollective.com/1stG) | [![RxTS Open Collective backers and sponsors](https://opencollective.com/rxts/individuals.svg)](https://opencollective.com/rxts) | [![UnTS Open Collective backers and sponsors](https://opencollective.com/unts/individuals.svg)](https://opencollective.com/unts) |
40+
### Backers
41+
42+
| 1stG | RxTS | UnTS |
43+
| ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- |
44+
| [![1stG Open Collective backers](https://opencollective.com/1stG/individuals.svg)](https://opencollective.com/1stG) | [![RxTS Open Collective backers](https://opencollective.com/rxts/individuals.svg)](https://opencollective.com/rxts) | [![UnTS Open Collective backers](https://opencollective.com/unts/individuals.svg)](https://opencollective.com/unts) |
4245

4346
## Changelog
4447

@@ -48,6 +51,6 @@ Detailed changes for each release are documented in [CHANGELOG.md](./CHANGELOG.m
4851

4952
[MIT][] © [JounQin][]@[1stG.me][]
5053

51-
[1stg.me]: https://www.1stg.me
52-
[jounqin]: https://GitHub.com/JounQin
54+
[1stg.me]: https://www.1stG.me
55+
[jounqin]: https://github.com/JounQin
5356
[mit]: http://opensource.org/licenses/MIT

packages/preset-node-lib/README.md

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@ Size Limit preset for Node libraries
66

77
- [Usage](#usage)
88
- [Install](#install)
9-
- [Sponsors](#sponsors)
10-
- [Backers](#backers)
9+
- [Sponsors and Backers](#sponsors-and-backers)
10+
- [Sponsors](#sponsors)
11+
- [Backers](#backers)
1112
- [Changelog](#changelog)
1213
- [License](#license)
1314

@@ -26,19 +27,21 @@ yarn add -D size-limit-preset-node-lib
2627
npm i -D size-limit-preset-node-lib
2728
```
2829

29-
## Sponsors
30+
## Sponsors and Backers
3031

31-
| 1stG | RxTS | UnTS |
32-
| ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- |
33-
| [![1stG Open Collective backers and sponsors](https://opencollective.com/1stG/organizations.svg)](https://opencollective.com/1stG) | [![RxTS Open Collective backers and sponsors](https://opencollective.com/rxts/organizations.svg)](https://opencollective.com/rxts) | [![UnTS Open Collective backers and sponsors](https://opencollective.com/unts/organizations.svg)](https://opencollective.com/unts) |
32+
[![Sponsors](https://raw.githubusercontent.com/1stG/static/master/sponsors.svg)](https://github.com/sponsors/JounQin)
3433

35-
## Backers
34+
### Sponsors
3635

37-
[![Backers](https://raw.githubusercontent.com/1stG/static/master/sponsors.svg)](https://github.com/sponsors/JounQin)
36+
| 1stG | RxTS | UnTS |
37+
| ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- |
38+
| [![1stG Open Collective sponsors](https://opencollective.com/1stG/organizations.svg)](https://opencollective.com/1stG) | [![RxTS Open Collective sponsors](https://opencollective.com/rxts/organizations.svg)](https://opencollective.com/rxts) | [![UnTS Open Collective sponsors](https://opencollective.com/unts/organizations.svg)](https://opencollective.com/unts) |
3839

39-
| 1stG | RxTS | UnTS |
40-
| -------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- |
41-
| [![1stG Open Collective backers and sponsors](https://opencollective.com/1stG/individuals.svg)](https://opencollective.com/1stG) | [![RxTS Open Collective backers and sponsors](https://opencollective.com/rxts/individuals.svg)](https://opencollective.com/rxts) | [![UnTS Open Collective backers and sponsors](https://opencollective.com/unts/individuals.svg)](https://opencollective.com/unts) |
40+
### Backers
41+
42+
| 1stG | RxTS | UnTS |
43+
| ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- |
44+
| [![1stG Open Collective backers](https://opencollective.com/1stG/individuals.svg)](https://opencollective.com/1stG) | [![RxTS Open Collective backers](https://opencollective.com/rxts/individuals.svg)](https://opencollective.com/rxts) | [![UnTS Open Collective backers](https://opencollective.com/unts/individuals.svg)](https://opencollective.com/unts) |
4245

4346
## Changelog
4447

@@ -48,6 +51,6 @@ Detailed changes for each release are documented in [CHANGELOG.md](./CHANGELOG.m
4851

4952
[MIT][] © [JounQin][]@[1stG.me][]
5053

51-
[1stg.me]: https://www.1stg.me
52-
[jounqin]: https://GitHub.com/JounQin
54+
[1stg.me]: https://www.1stG.me
55+
[jounqin]: https://github.com/JounQin
5356
[mit]: http://opensource.org/licenses/MIT

public/android-chrome-192x192.png

3.43 KB
Loading

public/android-chrome-512x512.png

12.3 KB
Loading

public/apple-touch-icon.png

3.4 KB
Loading

0 commit comments

Comments
 (0)