Skip to content

Commit

Permalink
fix: fix a bug of cjs not working
Browse files Browse the repository at this point in the history
  • Loading branch information
yujiosaka committed Jun 20, 2024
1 parent 76eeb3c commit 28b6fbf
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@
"name": "sequelize-revision",
"version": "9.1.0",
"description": "Track revisions of your Sequelize models, revert them to any revision or restore them after being destroyed. Written in TypeScript and can be used with sequelize-typescript.",
"type": "module",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
},
"./package.json": "./package.json"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
Expand Down

0 comments on commit 28b6fbf

Please sign in to comment.