From 04da8c9bc8c0829ba5ee31f4b7e339d65d5cd438 Mon Sep 17 00:00:00 2001 From: Ben Straub Date: Wed, 6 Mar 2024 07:43:57 -0800 Subject: [PATCH] Names matter --- .gitignore | 2 +- esbuild.config.mjs | 2 +- import-from-archmage-yaml.ts => import-from-archmage-db.ts | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename import-from-archmage-yaml.ts => import-from-archmage-db.ts (100%) diff --git a/.gitignore b/.gitignore index e3fa44e..99a1ca9 100644 --- a/.gitignore +++ b/.gitignore @@ -13,7 +13,7 @@ package-lock.json # They should be uploaded to GitHub releases instead. main.js import-from-archmage.js -import-from-archmage-yaml.js +import-from-archmage-db.js # Exclude sourcemaps *.map diff --git a/esbuild.config.mjs b/esbuild.config.mjs index 25093e7..babdbb3 100644 --- a/esbuild.config.mjs +++ b/esbuild.config.mjs @@ -15,7 +15,7 @@ esbuild.build({ banner: { js: banner, }, - entryPoints: ['main.ts', 'import-from-archmage.ts', 'import-from-archmage-yaml.ts'], + entryPoints: ['main.ts', 'import-from-archmage.ts', 'import-from-archmage-db.ts'], bundle: true, external: ['obsidian', 'electron', ...builtins], format: 'cjs', diff --git a/import-from-archmage-yaml.ts b/import-from-archmage-db.ts similarity index 100% rename from import-from-archmage-yaml.ts rename to import-from-archmage-db.ts