-
Notifications
You must be signed in to change notification settings - Fork 878
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
Configure Gitpod online dev environment #198
Configure Gitpod online dev environment #198
Conversation
@mikenikles is attempting to deploy a commit to a Personal Account owned by @conwnet on Vercel. @conwnet first needs to authorize it. |
@@ -3,7 +3,7 @@ | |||
"version": "0.5.0", | |||
"description": "Svelte language support for VS Code", | |||
"scripts": { | |||
"build:grammar": "npx js-yaml syntaxes/svelte.tmLanguage.src.yaml > syntaxes/svelte.tmLanguage.json", | |||
"build:grammar": "js-yaml syntaxes/svelte.tmLanguage.src.yaml > syntaxes/svelte.tmLanguage.json", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As per this comment, npx
requires manual input before it installs a package.
This is a problem for Gitpod prebuilds because prebuilds run in a headless environment. By adding js-yaml
to the devDependencies
, this problem is mitigated.
This pull request is being automatically deployed with Vercel (learn more). 🔍 Inspect: https://vercel.com/conwnet/github1s/GJgjQhwxBEchuRrBTZXEfnRsANwf |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks so much~
This PR introduces a ready-to-code development environment on Gitpod. With a single click, a new development environment with all prerequisites installed and
yarn && yarn build
already executed starts up.The "Development" chapter in the
README
provides the link to start the dev environment.To get the full benefits, please enable the Gitpod GitHub App. This enables automated prebuilds for all branches and PRs.