Skip to content

Commit

Permalink
fix: Corriger l'ordre des exports pour jsDelivr.
Browse files Browse the repository at this point in the history
  • Loading branch information
regseb committed May 18, 2023
1 parent 19adf5c commit 3ed2f5d
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,20 +24,20 @@
],
"exports": {
".": {
"default": "./src/index.js",
"types": "./types/index.d.ts"
"types": "./types/index.d.ts",
"default": "./src/index.js"
},
"./cron": {
"default": "./src/cron.js",
"types": "./types/cron.d.ts"
"types": "./types/cron.d.ts",
"default": "./src/cron.js"
},
"./cronexp": {
"default": "./src/cronexp.js",
"types": "./types/cronexp.d.ts"
"types": "./types/cronexp.d.ts",
"default": "./src/cronexp.js"
},
"./at": {
"default": "./src/at.js",
"types": "./types/at.d.ts"
"types": "./types/at.d.ts",
"default": "./src/at.js"
},
"./package.json": "./package.json"
},
Expand Down

0 comments on commit 3ed2f5d

Please sign in to comment.