Skip to content

Commit 8386e14

Browse files
committed
scripts and prettier
1 parent 15920d0 commit 8386e14

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
"node": "^12.22.0 || ^14.16.0 || >=16.0.0"
3131
},
3232
"scripts": {
33+
"postinstall": "cd www && npm install",
3334
"preversion": ". ./resources/checkgit.sh && npm ci",
3435
"version": "node resources/gen-version.js && npm test && git add src/version.ts",
3536
"fuzzonly": "mocha --full-trace src/**/__tests__/**/*-fuzz.ts",
@@ -47,7 +48,9 @@
4748
"build:npm": "node resources/build-npm.js",
4849
"build:deno": "node resources/build-deno.js",
4950
"gitpublish:npm": "bash ./resources/gitpublish.sh npm npmDist",
50-
"gitpublish:deno": "bash ./resources/gitpublish.sh deno denoDist"
51+
"gitpublish:deno": "bash ./resources/gitpublish.sh deno denoDist",
52+
"build:docs": "cd www && npm run build",
53+
"start:docs": "cd www && npm start"
5154
},
5255
"devDependencies": {
5356
"@babel/core": "7.15.8",

www/src/pages/index.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,7 @@ function HomepageHeader() {
1414
<h1 className="hero__title">{siteConfig.title}</h1>
1515
<p className="hero__subtitle">{siteConfig.tagline}</p>
1616
<div className={styles.buttons}>
17-
<Link
18-
className="button button--secondary button--lg"
19-
to="/tutorials"
20-
>
17+
<Link className="button button--secondary button--lg" to="/tutorials">
2118
Get Started
2219
</Link>
2320
</div>

0 commit comments

Comments
 (0)