Skip to content

Commit

Permalink
fix size limit config
Browse files Browse the repository at this point in the history
  • Loading branch information
EskiMojo14 committed Apr 27, 2024
1 parent efc183c commit ef19643
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .size-limit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,16 @@ export default [
{
path: "dist/index.js",
import: "{ createNoPatchHistoryAdapter }",
name: "import { createNoPatchHistoryAdapter } from 'history-adapter' (CJS)",
name: "import { createNoPatchHistoryAdapter } from 'history-adapter'",
},
{
path: "dist/redux.js",
import: "{ createHistoryAdapter }",
name: "import { createHistoryAdapter } from 'history-adapter/redux'",
},
{
path: "dist/redux.js",
import: "{ createNoPatchHistoryAdapter }",
name: "import { createNoPatchHistoryAdapter } from 'history-adapter/redux'",
},
] satisfies SizeLimitConfig;

0 comments on commit ef19643

Please sign in to comment.