Skip to content

Commit 3b3b3f1

Browse files
committed
Split up website and main project
1 parent 74547b6 commit 3b3b3f1

File tree

8 files changed

+16114
-22990
lines changed

8 files changed

+16114
-22990
lines changed

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@
99

1010
# Ignore TS files inside integration test
1111
/integrationTests/ts/*.ts
12+
/website/next-env.d.ts

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -249,10 +249,10 @@ jobs:
249249
node-version: 18
250250

251251
- name: Install Dependencies
252-
run: npm ci --ignore-scripts
252+
run: cd website && npm ci --ignore-scripts
253253

254254
- name: Build Docs
255-
run: npm run build:website
255+
run: npm run build
256256

257257
- name: Upload denoDist package
258258
uses: actions/upload-artifact@v4

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@
1010
/.cspellcache
1111
/.docusaurus
1212
/node_modules
13+
/website/node_modules
1314
/coverage
1415
/npmDist
1516
/denoDist
1617
/websiteDist
17-
website/.next
18+
/website/.next

0 commit comments

Comments
 (0)