fix: Do not add `default` export specifier

Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
This commit is contained in:
Ferdinand Thiessen 2024-06-20 17:12:09 +02:00
Родитель 9dd26ab336
Коммит fd3701fcdf
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 45FAE7268762B400
3 изменённых файлов: 9 добавлений и 5 удалений

Просмотреть файл

@ -2,6 +2,12 @@
All notable changes to this project will be documented in this file.
## 0.2.2 - 2024-06-20
### Fixed
- fix: Do not add `default` export specifier
## 0.2.1 - 2024-06-20
### Fixed

4
package-lock.json сгенерированный
Просмотреть файл

@ -1,12 +1,12 @@
{
"name": "@nextcloud/sharing",
"version": "0.2.1",
"version": "0.2.2",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@nextcloud/sharing",
"version": "0.2.1",
"version": "0.2.2",
"license": "GPL-3.0-or-later",
"dependencies": {
"@nextcloud/initial-state": "^2.2.0"

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@nextcloud/sharing",
"version": "0.2.1",
"version": "0.2.2",
"description": "Front-end utilities for Nextcloud files sharing",
"keywords": [
"nextcloud"
@ -11,13 +11,11 @@
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./public": {
"types": "./dist/public.d.ts",
"default": "./dist/public.mjs",
"import": "./dist/public.mjs",
"require": "./dist/public.cjs"
}