Skip to content

Commit 5d67d52

Browse files
committed
fix release
1 parent e319ac9 commit 5d67d52

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.cursorrules

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,7 @@ Be extremely concise. Sacrifice grammar for the sake of concision.
2222
- To run scripts not in `package.json` use `bun run <<script-name.ts>>`.
2323
- Always run scripts from root project directory
2424
- If you want to install or remove a package, always use `bun`, not `npm`
25+
26+
# Stacktape Configuration
27+
28+
When editing `stacktape.yml`, `stacktape.ts` or any file, which defines Stacktape configuration, always look into Stacktape docs to learn how Stacktape works. Never write without consulting the docs first. The documentation

.github/workflows/release.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,12 @@ jobs:
5959
restore-keys: |
6060
${{ runner.os }}-bun-
6161
62+
- name: Clean node_modules on Windows (workaround for nested path issues)
63+
if: matrix.platform == 'win'
64+
run: |
65+
if (Test-Path node_modules) { Remove-Item -Recurse -Force node_modules }
66+
shell: pwsh
67+
6268
- name: Install dependencies
6369
run: bun install
6470

0 commit comments

Comments
 (0)