Skip to content

Commit d4bacc1

Browse files
committed
docs/ => website/
1 parent 6d05349 commit d4bacc1

27 files changed

+10
-10
lines changed

.eslintignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/coverage
66
/npmDist
77
/denoDist
8-
/docsDist
8+
/websiteDist
99

1010
# Ignore TS files inside integration test
1111
/integrationTests/ts/*.ts

.eslintrc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -699,7 +699,7 @@ overrides:
699699
rules:
700700
node/no-unpublished-import: off
701701
import/no-default-export: off
702-
- files: 'docs/**'
702+
- files: 'website/**'
703703
plugins:
704704
- 'react'
705705
extends:

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -299,8 +299,8 @@ jobs:
299299
src_dir: denoDist
300300
target_branch: deno
301301

302-
build-docs:
303-
name: Build docs site
302+
build-website:
303+
name: Build website
304304
runs-on: ubuntu-latest
305305
steps:
306306
- name: Checkout repo
@@ -318,4 +318,4 @@ jobs:
318318
run: npm ci --ignore-scripts
319319

320320
- name: Build Docs
321-
run: npm run build:docs
321+
run: npm run build:website

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
/coverage
1414
/npmDist
1515
/denoDist
16-
/docsDist
16+
/websiteDist

.prettierignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
/coverage
77
/npmDist
88
/denoDist
9-
/docsDist
9+
/websiteDist

cspell.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ignorePaths:
1212
overrides:
1313
- filename: '**/docs-old/APIReference-*.md'
1414
ignoreRegExpList: ['/href="[^"]*"/']
15-
- filename: 'docs/**'
15+
- filename: 'website/**'
1616
dictionaries:
1717
- fullstack
1818
words:

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@
4444
"prettier:check": "prettier --check .",
4545
"check:spelling": "cspell --cache --no-progress '**/*'",
4646
"check:integrations": "npm run build:npm && npm run build:deno && mocha --full-trace integrationTests/*-test.js",
47-
"start:docs": "DOCUSAURUS_GENERATED_FILES_DIR_NAME=\"$(pwd)/.docusaurus\" docusaurus start ./docs",
48-
"build:docs": "DOCUSAURUS_GENERATED_FILES_DIR_NAME=\"$(pwd)/.docusaurus\" docusaurus build --out-dir=./docsDist ./docs",
47+
"start": "DOCUSAURUS_GENERATED_FILES_DIR_NAME=\"$(pwd)/.docusaurus\" docusaurus start ./website",
48+
"build:website": "DOCUSAURUS_GENERATED_FILES_DIR_NAME=\"$(pwd)/.docusaurus\" docusaurus build --out-dir=./websiteDist ./website",
4949
"build:npm": "node resources/build-npm.js",
5050
"build:deno": "node resources/build-deno.js",
5151
"gitpublish:npm": "bash ./resources/gitpublish.sh npm npmDist",
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)