We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 791ff2f + 4ba114b commit 9f48227Copy full SHA for 9f48227
.devcontainer/devcontainer.json
@@ -15,7 +15,7 @@
15
// "forwardPorts": [],
16
17
// Use 'postCreateCommand' to run commands after the container is created.
18
- "postCreateCommand": "npm install",
+ "postCreateCommand": "./.devcontainer/postCreateCommand.sh",
19
20
// Configure tool-specific properties.
21
// "customizations": {},
.devcontainer/postCreateCommand.sh
@@ -0,0 +1,10 @@
1
+#!/bin/bash
2
+
3
+npm install
4
5
+# also install dependencies for `pr-collector`
6
+cd pr-collector
7
8
+npm run build && npm run package
9
10
+cd ..
0 commit comments