zip-folder-promise
Version:
Use archiver to zip a folder using promises instead of callbacks
36 lines (30 loc) • 1.14 kB
JSON
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.163.1/containers/typescript-node
{
"name": "zip-folder-promise",
"dockerComposeFile": "./docker-compose.yml",
"service": "nodejs",
"workspaceFolder": "/zip-folder-promise",
// Set *default* container specific settings.json values on container create.
"settings": {
"terminal.integrated.profiles.linux": {
"bash": {
"path": "/bin/bash"
}
},
"terminal.integrated.defaultProfile.linux": "bash",
},
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"github.copilot",
"dbaeumer.vscode-eslint",
"steoates.autoimport",
"donjayamanne.githistory",
],
// 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",
// Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
// "remoteUser": "node"
}