Skip to content

Commit abebf0c

Browse files
removed unwanted changes
1 parent 6424cc8 commit abebf0c

6 files changed

Lines changed: 1 addition & 16 deletions

File tree

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/devcontainers/python:3.11-bookworm
1+
FROM mcr.microsoft.com/devcontainers/python:3.11-bullseye
22

33
# Route npm/corepack traffic (used during devcontainer feature installation,
44
# e.g. ghcr.io/devcontainers/features/node) through the internal package feed

.devcontainer/setupEnv.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,7 @@ cd ../../
1313

1414
echo "Setting up Frontend..."
1515
cd ./src/App
16-
npm_install_start=$(date +%s)
1716
npm install
18-
npm_install_end=$(date +%s)
19-
echo "npm install duration: $((npm_install_end-npm_install_start))s"
2017
pip install -r requirements.txt
2118
cd ../../
2219

infra/scripts/build/package_frontend.ps1

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@ cp requirements.txt dist -Force
66
cp *.py dist -Force
77

88
# Node
9-
$npmInstallStart = Get-Date
109
npm install
11-
$npmInstallEnd = Get-Date
12-
Write-Host "npm install duration: $(($npmInstallEnd - $npmInstallStart).TotalSeconds)s"
1310
npm run build
1411
cp -r build dist -Force

infra/scripts/build/package_frontend.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@ cp -f requirements.txt dist
99
cp -f *.py dist
1010

1111
#node
12-
npm_install_start=$(date +%s)
1312
npm install
14-
npm_install_end=$(date +%s)
15-
echo "npm install duration: $((npm_install_end-npm_install_start))s"
1613
npm run build
1714
cp -rf build dist

src/App/package_frontend.ps1

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@ cp requirements.txt dist -Force
66
cp *.py dist -Force
77

88
# Node
9-
$npmInstallStart = Get-Date
109
npm install
11-
$npmInstallEnd = Get-Date
12-
Write-Host "npm install duration: $(($npmInstallEnd - $npmInstallStart).TotalSeconds)s"
1310
npm run build
1411
cp -r build dist -Force

src/App/package_frontend.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@ cp -f requirements.txt dist
99
cp -f *.py dist
1010

1111
#node
12-
npm_install_start=$(date +%s)
1312
npm install
14-
npm_install_end=$(date +%s)
15-
echo "npm install duration: $((npm_install_end-npm_install_start))s"
1613
npm run build
1714
cp -rf build dist

0 commit comments

Comments
 (0)