Skip to content

Commit 3ce6075

Browse files
committed
fix: remove stale compiled JS files from src and ignore them in .gitignore
Rollup was resolving register.js (and other compiled .js files) instead of the .ts sources, causing 'default is not exported' build failures in CI. Deleted all .js artifacts from server/src and admin/src and added them to .gitignore so they are never committed again.
1 parent def7347 commit 3ce6075

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,10 @@ public/uploads/*
102102
dist
103103
build
104104

105+
# Compiled JS files inside src (TypeScript sources only)
106+
server/src/**/*.js
107+
admin/src/**/*.js
108+
105109

106110
############################
107111
# Node.js

0 commit comments

Comments
 (0)