Skip to content
This repository has been archived by the owner on Mar 28, 2024. It is now read-only.

Commit

Permalink
Fix package exports
Browse files Browse the repository at this point in the history
  • Loading branch information
seggewiss committed Dec 18, 2023
1 parent 20fc89f commit e17ed7f
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 5 deletions.
26 changes: 22 additions & 4 deletions devenv.lock
Expand Up @@ -34,12 +34,15 @@
}
},
"flake-utils": {
"inputs": {
"systems": "systems"
},
"locked": {
"lastModified": 1667395993,
"narHash": "sha256-nuEHfE/LcWyuSWnS8t12N1wc105Qtau+/OdUAjtQ0rA=",
"lastModified": 1685518550,
"narHash": "sha256-o2d0KcvaXzTrPRIo0kOLV0/QXHhDQ5DTi+OxcjO8xqY=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "5aed5285a952e0b949eb3ba02c12fa4fcfef535f",
"rev": "a1720a10a6cfe8234c0e93907ffe81be440f4cef",
"type": "github"
},
"original": {
Expand Down Expand Up @@ -96,7 +99,7 @@
},
"original": {
"owner": "NixOS",
"ref": "nixos-22.11",
"ref": "nixos-23.05",
"repo": "nixpkgs",
"type": "github"
}
Expand Down Expand Up @@ -131,6 +134,21 @@
"nixpkgs": "nixpkgs",
"pre-commit-hooks": "pre-commit-hooks"
}
},
"systems": {
"locked": {
"lastModified": 1681028828,
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
"owner": "nix-systems",
"repo": "default",
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
"type": "github"
},
"original": {
"owner": "nix-systems",
"repo": "default",
"type": "github"
}
}
},
"root": "root",
Expand Down
34 changes: 33 additions & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "@shopware-ag/admin-extension-sdk",
"license": "MIT",
"version": "3.0.15",
"version": "3.0.16",
"repository": "git://github.com/shopware/admin-extension-sdk.git",
"description": "The SDK for App iframes to communicate with the Shopware Administration",
"keywords": [
Expand All @@ -20,6 +20,38 @@
"main": "./umd/index.js",
"module": "./es/index.js",
"exports": {
"./es/channel": {
"import": "./es/channel.js",
"require": "./umd/channel.js"
},
"./es/data": {
"import": "./es/data/index.js",
"require": "./umd/data/index.js"
},
"./es/location": {
"import": "./es/location/index.js",
"require": "./umd/location/index.js"
},
"./es/privileges/missing-privileges-error": {
"import": "./es/privileges/missing-privileges-error.js",
"require": "./umd/privileges/missing-privileges-error.js"
},
"./es/data/_internals/selectData": {
"import": "./es/data/_internals/selectData.js",
"require": "./umd/data/_internals/selectData.js"
},
"./es/data/Criteria": {
"import": "./es/data/Criteria.js",
"require": "./umd/data/Criteria.js"
},
"./es/data/_internals/Entity": {
"import": "./es/data/_internals/Entity.js",
"require": "./umd/data/_internals/Entity.js"
},
"./es/data/_internals/EntityCollection": {
"import": "./es/data/_internals/EntityCollection.js",
"require": "./umd/data/_internals/EntityCollection.js"
},
".": {
"import": "./es/index.js",
"require": "./umd/index.js"
Expand Down

0 comments on commit e17ed7f

Please sign in to comment.