Fix export from new modules
This commit is contained in:
parent
d087bbf2ed
commit
ff0a03c215
2 changed files with 8 additions and 7 deletions
14
package.json
14
package.json
|
@ -64,15 +64,15 @@
|
||||||
"import": "./const.mjs",
|
"import": "./const.mjs",
|
||||||
"require": "./const.js"
|
"require": "./const.js"
|
||||||
},
|
},
|
||||||
"./apl": {
|
"./APL": {
|
||||||
"types": "./apl.d.ts",
|
"types": "./APL/index.d.ts",
|
||||||
"import": "./apl.mjs",
|
"import": "./APL/index.mjs",
|
||||||
"require": "./apl.js"
|
"require": "./APL/index.js"
|
||||||
},
|
},
|
||||||
"./middleware": {
|
"./middleware": {
|
||||||
"types": "./middleware.d.ts",
|
"types": "./middleware/index.d.ts",
|
||||||
"import": "./middleware.mjs",
|
"import": "./middleware/index.mjs",
|
||||||
"require": "./middleware.js"
|
"require": "./middleware/index.js"
|
||||||
},
|
},
|
||||||
"./urls": {
|
"./urls": {
|
||||||
"types": "./urls.d.ts",
|
"types": "./urls.d.ts",
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
export * from "./with-auth-token-required";
|
export * from "./with-auth-token-required";
|
||||||
export * from "./with-base-url";
|
export * from "./with-base-url";
|
||||||
|
export * from "./with-jwt-verified";
|
||||||
export * from "./with-registered-saleor-domain-header";
|
export * from "./with-registered-saleor-domain-header";
|
||||||
export * from "./with-saleor-domain-present";
|
export * from "./with-saleor-domain-present";
|
||||||
export * from "./with-saleor-event-match";
|
export * from "./with-saleor-event-match";
|
||||||
|
|
Loading…
Reference in a new issue