Skip to content

Commit fbe196c

Browse files
committed
chore: updated gitpod.yml
1 parent 5114d85 commit fbe196c

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

Diff for: .devcontainer/devcontainer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"ms-azuretools.vscode-docker"
2727
],
2828
// Use 'postCreateCommand' to run commands after the container is created.
29-
"postCreateCommand": "npm ci; cd examples/cdk; npm ci; cd ../sam; npm ci; cd ../../; npm run init-environment",
29+
"postCreateCommand": "npm ci --foreground-scripts; cd examples/cdk; npm ci; cd ../sam; npm ci; cd ../../; npm run init-environment",
3030
// Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
3131
"remoteUser": "node"
3232
}

Diff for: .gitpod.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ tasks:
66
# Install npm 8.x
77
npm i -g npm@next-8
88
# Install monorepo packages
9-
npm ci
9+
npm ci --foreground-scripts
1010
# Install CDK exampels dependencies
1111
cd examples/cdk
1212
npm ci

Diff for: CONTRIBUTING.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,8 @@ reported the issue. Please try to include as much information as you can. Detail
5757
The following steps describe how to set up the AWS Lambda Powertools for TypeScript repository on your local machine.
5858
The alternative is to use a Cloud IDE like [Gitpod](https://www.gitpod.io/) or [Codespaces](https://github.com/features/codespaces) for your development.
5959

60+
[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/awslabs/aws-lambda-powertools-typescript)
61+
6062
### Setup
6163

6264
The following tools need to be installed on your system prior to starting working on a pull request:
@@ -76,7 +78,7 @@ First, [fork](https://docs.github.com/en/get-started/quickstart/fork-a-repo) the
7678
```console
7779
git clone https://github.com/{your-account}/aws-lambda-powertools-typescript.git
7880
cd aws-lambda-powertools-typescript
79-
npm ci;
81+
npm ci --foreground-scripts;
8082
cd examples/cdk; npm ci
8183
cd ../..
8284
cd examples/sam; npm ci

0 commit comments

Comments
 (0)