Skip to content

Commit eae7c17

Browse files
merging all conflicts
2 parents 08a247a + 7994045 commit eae7c17

File tree

90 files changed

+4315
-1178
lines changed

Some content is hidden

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

90 files changed

+4315
-1178
lines changed

beta/.env.development

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +0,0 @@
1-
NEXT_PUBLIC_HJ_SITE_ID = 2411683
2-
NEXT_PUBLIC_HJ_SITE_V = 6

beta/.env.production

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
NEXT_PUBLIC_HJ_SITE_ID = 2411651
2-
NEXT_PUBLIC_HJ_SITE_V = 6
3-
NEXT_PUBLIC_GA_TRACKING_ID = 'G-3918VS75Y6'
1+
NEXT_PUBLIC_GA_TRACKING_ID = 'UA-41298772-4'

beta/.eslintrc

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
{
22
"root": true,
3-
"extends": "next",
3+
"extends": "next/core-web-vitals",
4+
"rules": {
5+
"no-unused-vars": "warn"
6+
},
47
"env": {
58
"node": true,
69
"commonjs": true,
710
"browser": true,
811
"es6": true
912
}
10-
}
13+
}

beta/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
# misc
1919
.DS_Store
2020
*.pem
21+
tsconfig.tsbuildinfo
2122

2223
# debug
2324
npm-debug.log*

beta/next.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ module.exports = {
1111
experimental: {
1212
plugins: true,
1313
// TODO: this doesn't work because https://github.com/vercel/next.js/issues/30714
14-
// concurrentFeatures: true,
14+
concurrentFeatures: false,
1515
scrollRestoration: true,
1616
},
1717
async redirects() {
@@ -27,7 +27,7 @@ module.exports = {
2727
},
2828
webpack: (config, {dev, isServer, ...options}) => {
2929
if (process.env.ANALYZE) {
30-
const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer')
30+
const {BundleAnalyzerPlugin} = require('webpack-bundle-analyzer');
3131
config.plugins.push(
3232
new BundleAnalyzerPlugin({
3333
analyzerMode: 'static',

beta/package.json

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@
1818
"ci-check": "npm-run-all prettier:diff --parallel lint tsc lint-heading-ids",
1919
"tsc": "tsc --noEmit",
2020
"start": "next start",
21-
"postinstall": "is-ci || (cd .. && husky install beta/.husky)",
21+
"postinstall": "patch-package && (is-ci || (cd .. && husky install beta/.husky))",
2222
"check-all": "npm-run-all prettier lint:fix tsc"
2323
},
2424
"dependencies": {
25-
"@codesandbox/sandpack-react": "0.13.11-experimental.0",
25+
"@codesandbox/sandpack-react": "v0.14.3-experimental.1",
2626
"@docsearch/css": "3.0.0-alpha.41",
2727
"@docsearch/react": "3.0.0-alpha.41",
2828
"@headlessui/react": "^1.3.0",
@@ -31,8 +31,9 @@
3131
"classnames": "^2.2.6",
3232
"date-fns": "^2.16.1",
3333
"debounce": "^1.2.1",
34+
"ga-lite": "^2.1.4",
3435
"github-slugger": "^1.3.0",
35-
"next": "^12.0.9",
36+
"next": "^12.0.10",
3637
"parse-numeric-range": "^1.2.0",
3738
"react": "experimental",
3839
"react-collapsed": "3.1.0",
@@ -52,7 +53,7 @@
5253
"@typescript-eslint/eslint-plugin": "2.x",
5354
"@typescript-eslint/parser": "2.x",
5455
"asyncro": "^3.0.0",
55-
"autoprefixer": "^10.3.1",
56+
"autoprefixer": "^10.4.2",
5657
"babel-eslint": "10.x",
5758
"eslint": "7.x",
5859
"eslint-config-next": "12.0.3",
@@ -71,7 +72,7 @@
7172
"mdast-util-to-string": "^1.1.0",
7273
"npm-run-all": "^4.1.5",
7374
"patch-package": "^6.2.2",
74-
"postcss": "^8.3.6",
75+
"postcss": "^8.4.5",
7576
"postcss-flexbugs-fixes": "4.2.1",
7677
"postcss-preset-env": "^6.7.0",
7778
"prettier": "^2.5.1",
@@ -85,7 +86,7 @@
8586
"retext": "^7.0.1",
8687
"retext-smartypants": "^4.0.0",
8788
"rss": "^1.2.2",
88-
"tailwindcss": "^2.2.7",
89+
"tailwindcss": "^3.0.22",
8990
"typescript": "^4.0.2",
9091
"unist-util-visit": "^2.0.3",
9192
"webpack-bundle-analyzer": "^4.5.0"
9.65 KB
Binary file not shown.
-188 KB
Binary file not shown.

beta/public/images/docs/diagrams/sharing_data_child.dark.svg

Lines changed: 60 additions & 0 deletions
Loading

beta/public/images/docs/diagrams/sharing_data_child.svg

Lines changed: 60 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)