microsoft/hve-core

Public

mirrored fromhttps://github.com/microsoft/hve-coreAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
copilot/address-powershell-test-comments

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.devcontainer/scripts/post-create.sh

16lines · modecode

1#!/usr/bin/env bash
2# Copyright (c) Microsoft Corporation.
3# SPDX-License-Identifier: MIT
4#
5# post-create.sh
6# Install NPM dependencies for HVE Core development container
7
8set -euo pipefail
9
10main() {
11 echo "Installing NPM dependencies..."
12 npm ci
13 echo "NPM dependencies installed successfully"
14}
15
16main "$@"
17