Skip to content

Commit 966ad07

Browse files
committed
chore: re-gen lock files
1 parent 0ef515f commit 966ad07

File tree

18 files changed

+72
-24
lines changed

18 files changed

+72
-24
lines changed

templates/academic-cv/.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
# Install Tailwind CLI if package.json exists
4848
if [ -f "package.json" ]; then
4949
echo "Installing Tailwind dependencies..."
50-
pnpm install || npm install
50+
pnpm install --no-frozen-lockfile || npm install
5151
fi
5252
5353
- name: Setup Hugo

templates/academic-cv/netlify.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
echo "Go version: $(go version || echo 'Go not available')"
99
1010
echo "=== Installing dependencies ==="
11-
pnpm install --verbose
11+
pnpm install --verbose --no-frozen-lockfile
1212
1313
echo "=== Running Hugo build ==="
1414
hugo --gc --minify -b $URL --logLevel debug --printI18nWarnings --printPathWarnings
@@ -38,7 +38,7 @@
3838
set -e
3939
echo "=== Deploy Preview Build ==="
4040
echo "Deploy URL: $DEPLOY_PRIME_URL"
41-
pnpm install --verbose
41+
pnpm install --verbose --no-frozen-lockfile
4242
hugo --gc --minify --buildFuture -b $DEPLOY_PRIME_URL --logLevel debug --printI18nWarnings --printPathWarnings
4343
pnpm dlx pagefind --source 'public' --verbose
4444
"""
@@ -48,7 +48,7 @@
4848
set -e
4949
echo "=== Branch Deploy Build ==="
5050
echo "Deploy URL: $DEPLOY_PRIME_URL"
51-
pnpm install --verbose
51+
pnpm install --verbose --no-frozen-lockfile
5252
hugo --gc --minify -b $DEPLOY_PRIME_URL --logLevel debug --printI18nWarnings --printPathWarnings
5353
pnpm dlx pagefind --source 'public' --verbose
5454
"""

templates/academic-cv/pnpm-lock.yaml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

templates/blog/.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
# Install Tailwind CLI if package.json exists
4848
if [ -f "package.json" ]; then
4949
echo "Installing Tailwind dependencies..."
50-
pnpm install || npm install
50+
pnpm install --no-frozen-lockfile || npm install
5151
fi
5252
5353
- name: Setup Hugo

templates/blog/netlify.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
echo "Go version: $(go version || echo 'Go not available')"
99
1010
echo "=== Installing dependencies ==="
11-
pnpm install --verbose
11+
pnpm install --verbose --no-frozen-lockfile
1212
1313
echo "=== Running Hugo build ==="
1414
hugo --gc --minify -b $URL --logLevel debug --printI18nWarnings --printPathWarnings
@@ -38,7 +38,7 @@
3838
set -e
3939
echo "=== Deploy Preview Build ==="
4040
echo "Deploy URL: $DEPLOY_PRIME_URL"
41-
pnpm install --verbose
41+
pnpm install --verbose --no-frozen-lockfile
4242
hugo --gc --minify --buildFuture -b $DEPLOY_PRIME_URL --logLevel debug --printI18nWarnings --printPathWarnings
4343
pnpm dlx pagefind --source 'public' --verbose
4444
"""
@@ -48,7 +48,7 @@
4848
set -e
4949
echo "=== Branch Deploy Build ==="
5050
echo "Deploy URL: $DEPLOY_PRIME_URL"
51-
pnpm install --verbose
51+
pnpm install --verbose --no-frozen-lockfile
5252
hugo --gc --minify -b $DEPLOY_PRIME_URL --logLevel debug --printI18nWarnings --printPathWarnings
5353
pnpm dlx pagefind --source 'public' --verbose
5454
"""

templates/blog/pnpm-lock.yaml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

templates/documentation/.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
# Install Tailwind CLI if package.json exists
4848
if [ -f "package.json" ]; then
4949
echo "Installing Tailwind dependencies..."
50-
pnpm install || npm install
50+
pnpm install --no-frozen-lockfile || npm install
5151
fi
5252
5353
- name: Setup Hugo

templates/documentation/netlify.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
echo "Go version: $(go version || echo 'Go not available')"
99
1010
echo "=== Installing dependencies ==="
11-
pnpm install --verbose
11+
pnpm install --verbose --no-frozen-lockfile
1212
1313
echo "=== Running Hugo build ==="
1414
hugo --gc --minify -b $URL --logLevel debug --printI18nWarnings --printPathWarnings
@@ -38,7 +38,7 @@
3838
set -e
3939
echo "=== Deploy Preview Build ==="
4040
echo "Deploy URL: $DEPLOY_PRIME_URL"
41-
pnpm install --verbose
41+
pnpm install --verbose --no-frozen-lockfile
4242
hugo --gc --minify --buildFuture -b $DEPLOY_PRIME_URL --logLevel debug --printI18nWarnings --printPathWarnings
4343
pnpm dlx pagefind --source 'public' --verbose
4444
"""
@@ -48,7 +48,7 @@
4848
set -e
4949
echo "=== Branch Deploy Build ==="
5050
echo "Deploy URL: $DEPLOY_PRIME_URL"
51-
pnpm install --verbose
51+
pnpm install --verbose --no-frozen-lockfile
5252
hugo --gc --minify -b $DEPLOY_PRIME_URL --logLevel debug --printI18nWarnings --printPathWarnings
5353
pnpm dlx pagefind --source 'public' --verbose
5454
"""

templates/documentation/pnpm-lock.yaml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

templates/landing-page/.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
# Install Tailwind CLI if package.json exists
4848
if [ -f "package.json" ]; then
4949
echo "Installing Tailwind dependencies..."
50-
pnpm install || npm install
50+
pnpm install --no-frozen-lockfile || npm install
5151
fi
5252
5353
- name: Setup Hugo

0 commit comments

Comments
 (0)