Skip to content

Commit 79acfbd

Browse files
committed
Merge branch 'main' into feat/new-api
2 parents d69f977 + db25d11 commit 79acfbd

File tree

3 files changed

+22
-7
lines changed

3 files changed

+22
-7
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## [2.2.0](https://github.com/netlify/blobs/compare/v2.1.1...v2.2.0) (2023-10-13)
4+
5+
6+
### Features
7+
8+
* add package.json to export map ([#64](https://github.com/netlify/blobs/issues/64)) ([3ea080e](https://github.com/netlify/blobs/commit/3ea080e9cdde95f14b8d372181be78b208727d0b))
9+
10+
## [2.1.1](https://github.com/netlify/blobs/compare/v2.1.0...v2.1.1) (2023-10-13)
11+
12+
13+
### Bug Fixes
14+
15+
* adjust export map to be actually importable ([#62](https://github.com/netlify/blobs/issues/62)) ([1bedfde](https://github.com/netlify/blobs/commit/1bedfde6c5ddb368b5789bc1766f7918eac19a8f))
16+
317
## [2.1.0](https://github.com/netlify/blobs/compare/v2.0.0...v2.1.0) (2023-10-11)
418

519

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@netlify/blobs",
3-
"version": "2.1.0",
3+
"version": "2.2.0",
44
"description": "A JavaScript client for the Netlify Blob Store",
55
"type": "module",
66
"engines": {
@@ -13,17 +13,18 @@
1313
".": {
1414
"require": {
1515
"types": "./dist/main.d.cts",
16-
"path": "./dist/main.cjs"
16+
"default": "./dist/main.cjs"
1717
},
1818
"import": {
1919
"types": "./dist/main.d.ts",
20-
"path": "./dist/main.js"
20+
"default": "./dist/main.js"
2121
},
2222
"default": {
2323
"types": "./dist/main.d.ts",
24-
"path": "./dist/main.js"
24+
"default": "./dist/main.js"
2525
}
26-
}
26+
},
27+
"./package.json": "./package.json"
2728
},
2829
"files": [
2930
"dist/**/*"

0 commit comments

Comments
 (0)