Skip to content

Commit

Permalink
fix: add support fallback import for command
Browse files Browse the repository at this point in the history
  • Loading branch information
kien-ht committed Dec 21, 2023
1 parent c475531 commit 4dd368c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,13 @@
"name": "cypress-image-diff-js",
"version": "0.0.0",
"description": "Visual regression testing tool with cypress",
"main": "./dist/command.js",
"types": "./types/command.d.ts",
"exports": {
".": {
"types": "./types/command.d.ts",
"default": "./dist/command.js"
},
"./command": {
"types": "./types/command.d.ts",
"default": "./dist/command.js"
Expand Down

0 comments on commit 4dd368c

Please sign in to comment.