Skip to content

Commit 9c7d615

Browse files
committed
Split up website and main project
1 parent 74547b6 commit 9c7d615

File tree

9 files changed

+15354
-23792
lines changed

9 files changed

+15354
-23792
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 & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -249,13 +249,7 @@ 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
256-
257-
- name: Upload denoDist package
258-
uses: actions/upload-artifact@v4
259-
with:
260-
name: websiteDist
261-
path: ./websiteDist
255+
run: cd website && npm run build

.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)