Skip to content
Open
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
53 changes: 53 additions & 0 deletions .codesandbox/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
{
// These tasks will run in order when initializing your CodeSandbox project.
"setupTasks": [
{
"command": "pnpm install",
"name": "Installing Dependencies"
}
],

// These tasks can be run from CodeSandbox. Running one will open a log in the app.
"tasks": {
"dev": {
"name": "dev",
"command": "pnpm dev",
"runAtStart": true,
"preview": {
"port": 4321
}
},
"lint": {
"name": "lint",
"command": "pnpm lint"
},
"test": {
"name": "test",
"command": "pnpm test"
},
"test:watch": {
"name": "test:watch",
"command": "pnpm test:watch"
},
"test:coverage": {
"name": "test:coverage",
"command": "pnpm test:coverage"
},
"build": {
"name": "build",
"command": "pnpm build"
},
"preview": {
"name": "preview",
"command": "pnpm preview"
},
"docs": {
"name": "docs",
"command": "pnpm docs"
},
"release": {
"name": "release",
"command": "pnpm release"
}
}
}
1 change: 1 addition & 0 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ jobs:
- uses: oven-sh/setup-bun@v1
- run: bun install
- run: bun run test
- run: bun run dev
15 changes: 15 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}"
}
]
}
Loading