sqs-consumer 10.1.0 → 10.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +9 -2
- package/package.json +3 -1
- package/dist/types/package.json +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,13 @@
|
|
|
1
|
-
## [10.
|
|
1
|
+
## [10.2.0](https://github.com/bbc/sqs-consumer/compare/v10.1.0...v10.2.0) (2024-04-30)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
### Features
|
|
5
5
|
|
|
6
|
-
*
|
|
6
|
+
* bumping to minor ([42cfda5](https://github.com/bbc/sqs-consumer/commit/42cfda59fa7da0ef85c50a3d1f79b6fbe21abf94))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Chores
|
|
10
|
+
|
|
11
|
+
* adding main and types back ([#493](https://github.com/bbc/sqs-consumer/issues/493)) ([c2ac256](https://github.com/bbc/sqs-consumer/commit/c2ac2567fc2bde5fad3279b451b5d63a72efa104))
|
|
12
|
+
* don't add package.json for types dir ([6084f28](https://github.com/bbc/sqs-consumer/commit/6084f28c1c3efeb87978e2c0de76427029b57af5))
|
|
13
|
+
* **release:** v10.1.0 ([244d6b5](https://github.com/bbc/sqs-consumer/commit/244d6b5c3f606e730ecb1cd748d7c8d567c5f2dc))
|
package/package.json
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sqs-consumer",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.2.0",
|
|
4
4
|
"description": "Build SQS-based Node applications without the boilerplate",
|
|
5
5
|
"type": "module",
|
|
6
|
+
"main": "dist/cjs/index.js",
|
|
7
|
+
"types": "dist/types/index.d.ts",
|
|
6
8
|
"exports": {
|
|
7
9
|
".": {
|
|
8
10
|
"types": "./dist/types/index.d.ts",
|
package/dist/types/package.json
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"type": "commonjs"}
|