Skip to content

Commit

Permalink
Update 3 files
Browse files Browse the repository at this point in the history
  • Loading branch information
nksaraf committed Jan 1, 2024
1 parent 90aaecb commit 0598494
Show file tree
Hide file tree
Showing 3 changed files with 132 additions and 42 deletions.
68 changes: 68 additions & 0 deletions .codesandbox/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
{
// These tasks will run in order when initializing your CodeSandbox project.
"setupTasks": [
{
"name": "Install Dependencies",
"command": "pnpm install"
}
],

// 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
},
"build": {
"name": "build",
"command": "pnpm build",
"runAtStart": false
},
"clean:test": {
"name": "clean:test",
"command": "pnpm clean:test",
"runAtStart": false
},
"clean": {
"name": "clean",
"command": "pnpm clean",
"runAtStart": false
},
"test": {
"name": "test",
"command": "pnpm test",
"runAtStart": false
},
"ci": {
"name": "ci",
"command": "pnpm ci",
"runAtStart": false
},
"release": {
"name": "release",
"command": "pnpm release",
"runAtStart": false
},
"test:packages": {
"name": "test:packages",
"command": "pnpm test:packages",
"runAtStart": false
},
"test:prettier": {
"name": "test:prettier",
"command": "pnpm test:prettier",
"runAtStart": false
},
"format": {
"name": "format",
"command": "pnpm format",
"runAtStart": false
},
"pnpm --filter solid-ssr-basic dev": {
"name": "pnpm --filter solid-ssr-basic dev",
"command": "pnpm --filter solid-ssr-basic dev",
"runAtStart": true
}
}
}
22 changes: 22 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/typescript-node
{
"name": "Node.js & TypeScript",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/typescript-node:1-20-bullseye"

// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},

// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],

// Use 'postCreateCommand' to run commands after the container is created.
// "postCreateCommand": "yarn install",

// Configure tool-specific properties.
// "customizations": {},

// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}
Loading

0 comments on commit 0598494

Please sign in to comment.