-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add support for codesandbox projects
- Loading branch information
1 parent
074548e
commit 352986b
Showing
2 changed files
with
136 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,125 @@ | ||
{ | ||
// These tasks will run in order when initializing your CodeSandbox project. | ||
// @see https://docs.codesandbox.io/our-products/codesandbox-projects/configuration-tasks#80f443ed033a4c86b79d88568ab5137e | ||
// This will run | ||
"setupTasks": [ | ||
{ | ||
"name": "Install Dependencies", | ||
"command": "yarn install" | ||
}, | ||
// Usually, this step is run when doing "npx create-remix --template VulcanJS/eurodance-stack | ||
// However, CodeSandbox or StackBlitz have a git clone based install process, so it must be run manually | ||
{ | ||
"name": "Remix init", | ||
"command": "yarn remix init" | ||
} | ||
], | ||
// These tasks can be run from CodeSandbox. Running one will open a log in the app. | ||
// Optionally enable commands from package.json here | ||
"tasks": { | ||
"postinstall": { | ||
"name": "postinstall", | ||
"command": "yarn postinstall", | ||
"runAtStart": false | ||
}, | ||
"build": { | ||
"name": "build", | ||
"command": "yarn build", | ||
"runAtStart": false | ||
}, | ||
"build:vercel": { | ||
"name": "build:vercel", | ||
"command": "yarn build:vercel", | ||
"runAtStart": false | ||
}, | ||
"build:css": { | ||
"name": "build:css", | ||
"command": "yarn build:css", | ||
"runAtStart": false | ||
}, | ||
"build:remix": { | ||
"name": "build:remix", | ||
"command": "yarn build:remix", | ||
"runAtStart": false | ||
}, | ||
"dev": { | ||
"name": "dev", | ||
"command": "yarn dev", | ||
"runAtStart": true | ||
}, | ||
"dev:css": { | ||
"name": "dev:css", | ||
"command": "yarn dev:css", | ||
"runAtStart": false | ||
}, | ||
"dev:remix": { | ||
"name": "dev:remix", | ||
"command": "yarn dev:remix", | ||
"runAtStart": false | ||
}, | ||
"format": { | ||
"name": "format", | ||
"command": "yarn format", | ||
"runAtStart": false | ||
}, | ||
"generate:css": { | ||
"name": "generate:css", | ||
"command": "yarn generate:css", | ||
"runAtStart": false | ||
}, | ||
"lint": { | ||
"name": "lint", | ||
"command": "yarn lint", | ||
"runAtStart": false | ||
}, | ||
"setup": { | ||
"name": "setup", | ||
"command": "yarn setup", | ||
"runAtStart": false | ||
}, | ||
"start": { | ||
"name": "start", | ||
"command": "yarn start", | ||
"runAtStart": false | ||
}, | ||
"start:mocks": { | ||
"name": "start:mocks", | ||
"command": "yarn start:mocks", | ||
"runAtStart": false | ||
}, | ||
"test": { | ||
"name": "test", | ||
"command": "yarn test", | ||
"runAtStart": false | ||
}, | ||
"test:e2e:dev": { | ||
"name": "test:e2e:dev", | ||
"command": "yarn test:e2e:dev", | ||
"runAtStart": false | ||
}, | ||
"pretest:e2e:run": { | ||
"name": "pretest:e2e:run", | ||
"command": "yarn pretest:e2e:run", | ||
"runAtStart": false | ||
}, | ||
"test:e2e:run": { | ||
"name": "test:e2e:run", | ||
"command": "yarn test:e2e:run", | ||
"runAtStart": false | ||
}, | ||
"typecheck": { | ||
"name": "typecheck", | ||
"command": "yarn typecheck", | ||
"runAtStart": false | ||
}, | ||
"validate": { | ||
"name": "validate", | ||
"command": "yarn validate", | ||
"runAtStart": false | ||
}, | ||
"yarn remix init": { | ||
"name": "yarn remix init", | ||
"command": "yarn remix init" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters