Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add starter code #100

Merged
merged 6 commits into from
Oct 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,12 @@ jobs:
cache: npm
- name: Install npm packages
run: npm ci
- name: Build docs and demo website
- name: Build docs, demo, and webstepper website
run: |
npm run build --workspace=memory-viz
npm run build --workspace=demo
npm run build --workspace=docs
npm run build --workspace=webstepper
mkdir docs/build/demo
cp -r demo/dist/* docs/build/demo
- name: Archive documentation website artifact
Expand Down
42 changes: 41 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"workspaces": [
"memory-viz",
"demo",
"docs"
"docs",
"webstepper"
],
"devDependencies": {
"husky": "^9.1.5",
Expand Down
Loading
Loading