Skip to content

Commit

Permalink
remove esbuild plugin because it messes up css imports
Browse files Browse the repository at this point in the history
  • Loading branch information
jvllmr committed Jul 24, 2024
1 parent a7bf780 commit 5efd411
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@
"@typescript-eslint/parser": "^7.17.0",
"@vitejs/plugin-react": "^4.3.1",
"dayjs": "^1.11.12",
"esbuild-plugin-file-path-extensions": "^2.1.2",
"eslint": "^8.57.0",
"eslint-config-alloy": "^5.1.2",
"eslint-plugin-react": "^7.35.0",
Expand Down
4 changes: 1 addition & 3 deletions tsup.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import { esbuildPluginFilePathExtensions } from "esbuild-plugin-file-path-extensions";

import { defineConfig } from "tsup";
export default defineConfig([
{
Expand All @@ -16,6 +14,6 @@ export default defineConfig([
dts: true,
sourcemap: true,
clean: true,
esbuildPlugins: [esbuildPluginFilePathExtensions({ esmExtension: "js" })],
bundle: false,
},
]);

0 comments on commit 5efd411

Please sign in to comment.