Skip to content

Commit e6e51ce

Browse files
committed
[optimize] update Project Data
[optimize] update Upstream packages
1 parent 672fb83 commit e6e51ce

File tree

3 files changed

+54
-25
lines changed

3 files changed

+54
-25
lines changed

package.json

Lines changed: 16 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "web-cell-home",
3-
"version": "1.0.0-beta",
2+
"name": "@web-cell/home",
3+
"version": "1.0.0",
44
"description": "Official site of WebCell",
55
"keywords": [
66
"WebCell",
@@ -20,28 +20,28 @@
2020
"url": "https://github.com/EasyWebApp/EasyWebApp.github.io/issues"
2121
},
2222
"dependencies": {
23-
"boot-cell": "^1.0.1",
24-
"bootstrap-icons": "^1.0.0",
25-
"cell-router": "^2.0.0",
23+
"boot-cell": "^1.3.0",
24+
"bootstrap-icons": "^1.1.0",
25+
"cell-router": "^2.0.1",
2626
"classnames": "^2.2.6",
2727
"github-web-widget": "^3.0.0-beta.5",
28-
"koajax": "^0.6.2",
29-
"marked": "^1.1.1",
30-
"prismjs": "^1.21.0",
28+
"koajax": "^0.6.4",
29+
"marked": "^1.2.5",
30+
"prismjs": "^1.22.0",
3131
"web-cell": "^2.2.0",
32-
"web-utility": "^1.8.0"
32+
"web-utility": "^1.9.0"
3333
},
3434
"devDependencies": {
35-
"@babel/core": "^7.11.6",
36-
"@types/classnames": "^2.2.10",
35+
"@babel/core": "^7.12.3",
36+
"@types/classnames": "^2.2.11",
3737
"autoprefixer": "^9.8.6",
38-
"husky": "^4.2.5",
38+
"husky": "^4.3.0",
3939
"less": "^3.12.2",
40-
"lint-staged": "^10.3.0",
40+
"lint-staged": "^10.5.1",
4141
"parcel-bundler": "^1.12.4",
4242
"postcss-modules": "^3.2.2",
43-
"prettier": "^2.1.1",
44-
"typescript": "^4.0.2",
43+
"prettier": "^2.2.0",
44+
"typescript": "^4.1.2",
4545
"workbox-cli": "^4.3.1"
4646
},
4747
"prettier": {
@@ -51,9 +51,7 @@
5151
"singleQuote": true
5252
},
5353
"lint-staged": {
54-
"*.{html,md,less,json,yml,js,ts,tsx}": [
55-
"prettier --write"
56-
]
54+
"*.{html,md,less,json,yml,js,ts,tsx}": "prettier --write"
5755
},
5856
"postcss": {
5957
"modules": true,

source/index.html

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,24 +12,26 @@
1212
<meta name="author" content="[email protected]" />
1313

1414
<link rel="manifest" href="index.webmanifest" />
15-
<script src="https://cdn.jsdelivr.net/npm/[email protected].15/pwacompat.min.js"></script>
15+
<script src="https://cdn.jsdelivr.net/npm/[email protected].17/pwacompat.min.js"></script>
1616
<link
1717
rel="stylesheet"
18-
href="https://cdn.jsdelivr.net/npm/[email protected].2/dist/css/bootstrap.min.css"
18+
href="https://cdn.jsdelivr.net/npm/[email protected].3/dist/css/bootstrap.min.css"
1919
/>
2020
<link
2121
rel="stylesheet"
2222
href="https://cdn.jsdelivr.net/npm/[email protected]/github-markdown.min.css"
2323
/>
2424
<link
2525
rel="stylesheet"
26-
href="https://cdn.jsdelivr.net/npm/prismjs@1.21.0/themes/prism-okaidia.css"
26+
href="https://cdn.jsdelivr.net/npm/prismjs@1.22.0/themes/prism-okaidia.css"
2727
/>
2828
<link rel="stylesheet" href="index.less" />
29-
30-
<script src="https://polyfill.io/v3/polyfill.min.js?flags=gated&features=Object.fromEntries%2CArray.prototype.flat%2CIntersectionObserver%2CIntersectionObserverEntry%2CResizeObserver"></script>
31-
<script src="https://cdn.jsdelivr.net/npm/@webcomponents/[email protected]/custom-elements-es5-adapter.js"></script>
32-
<script src="https://cdn.jsdelivr.net/npm/@webcomponents/[email protected]/webcomponents-bundle.js"></script>
29+
<script
30+
crossorigin
31+
src="https://polyfill.app/api/polyfill?features=es.string.match-all,es.array.flat,es.object.from-entries,regenerator-runtime,intersection-observer,resize-observer"
32+
></script>
33+
<script src="https://cdn.jsdelivr.net/npm/@webcomponents/[email protected]/custom-elements-es5-adapter.js"></script>
34+
<script src="https://cdn.jsdelivr.net/npm/@webcomponents/[email protected]/webcomponents-bundle.js"></script>
3335

3436
<script async src="index.tsx"></script>
3537
</head>

source/page/data.ts

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,10 @@ export const footer = [
4949
href:
5050
'https://developers.google.cn/web/fundamentals/web-components/shadowdom'
5151
},
52+
{
53+
title: 'Element Internals',
54+
href: 'https://web.dev/more-capable-form-controls/'
55+
},
5256
{
5357
title: 'CSS variables',
5458
href:
@@ -176,6 +180,11 @@ export const upstream = [
176180
repo: 'shadydom',
177181
pull: 294
178182
},
183+
{
184+
org: 'calebdwilliams',
185+
repo: 'element-internals-polyfill',
186+
issue: 13
187+
},
179188
{
180189
org: 'tc39',
181190
repo: 'proposal-decorators',
@@ -226,6 +235,11 @@ export const upstream = [
226235
repo: 'snabbdom',
227236
issue: 797
228237
},
238+
{
239+
org: 'snabbdom',
240+
repo: 'snabbdom',
241+
issue: 844
242+
},
229243
{
230244
org: 'jvanbruegge',
231245
repo: 'snabbdom-looks-like',
@@ -259,6 +273,11 @@ export const upstream = [
259273
];
260274

261275
export const cases = [
276+
{
277+
name: 'JavaScript 中文兴趣组',
278+
description: 'JavaScript Chinese Interest Group',
279+
url: 'https://jscig.github.io/'
280+
},
262281
{
263282
name: '成都 Web 开发者大会',
264283
description: 'Web developer conference of ChengDu',
@@ -269,6 +288,11 @@ export const cases = [
269288
description: 'COVID-19 Epidemic information platform',
270289
url: 'https://wuhan2020.kaiyuanshe.cn/'
271290
},
291+
{
292+
name: '中国开源年会',
293+
description: 'China Open Source Conference',
294+
url: 'http://coscon.kaiyuanshe.cn/'
295+
},
272296
{
273297
name: '开放黑客松平台',
274298
description: 'Open Hackathon platform',
@@ -278,5 +302,10 @@ export const cases = [
278302
name: '23.5° 文化传播',
279303
description: '23.5° Culture Co., Ltd',
280304
url: 'https://in235.com/'
305+
},
306+
{
307+
name: 'Shopify 采集平台',
308+
description: 'Shopify Crawler platform',
309+
url: 'https://shopifycopy.com/'
281310
}
282311
];

0 commit comments

Comments
 (0)