We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a2330d commit 5b5828cCopy full SHA for 5b5828c
npm-packages/convex/src/bundler/index.ts
@@ -335,6 +335,8 @@ export async function entryPoints(
335
log(chalk.yellow(`Skipping ${fpath}`));
336
} else if (base.startsWith(".")) {
337
log(chalk.yellow(`Skipping dotfile ${fpath}`));
338
+ } else if (base.startsWith("#")) {
339
+ log(chalk.yellow(`Skipping likely emacs tempfile ${fpath}`));
340
} else if (base === "README.md") {
341
342
} else if (base === "_generated.ts") {
0 commit comments