Skip to content

Commit 73926a7

Browse files
thomasballingerConvex, Inc.
authored and
Convex, Inc.
committed
Ignore convex/#.* files which are likely emacs tempfiles (#25144)
GitOrigin-RevId: fb0d04a7776731303c11eb1ecdb5c74d0b20f7dc
1 parent f39968a commit 73926a7

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/bundler/index.ts

+2
Original file line numberDiff line numberDiff line change
@@ -335,6 +335,8 @@ export async function entryPoints(
335335
log(chalk.yellow(`Skipping ${fpath}`));
336336
} else if (base.startsWith(".")) {
337337
log(chalk.yellow(`Skipping dotfile ${fpath}`));
338+
} else if (base.startsWith("#")) {
339+
log(chalk.yellow(`Skipping likely emacs tempfile ${fpath}`));
338340
} else if (base === "README.md") {
339341
log(chalk.yellow(`Skipping ${fpath}`));
340342
} else if (base === "_generated.ts") {

0 commit comments

Comments
 (0)