amqplib-init 1.3.2 → 1.3.3

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/package.json +2 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.3.3] - 2026-01-24
4
+
5
+ ### 🐛 修复
6
+ - **修复 ES Module 支持**: 在 `package.json` 中添加 `"type": "module"`
7
+ - **修复 Rollup 配置**: 将 `rollup.config.js` 改名为 `rollup.config.cjs` 以支持 CommonJS
8
+
9
+ ---
10
+
3
11
  ## [1.3.2] - 2026-01-24
4
12
 
5
13
  ### 🐛 修复
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "amqplib-init",
3
- "version": "1.3.2",
3
+ "version": "1.3.3",
4
+ "type": "module",
4
5
  "description": "消息队列初始化 - 移除PM2依赖,改用Supervisor管理 (支持15分钟长任务)",
5
6
  "main": "dist/amqplib-init.cjs.js",
6
7
  "module": "dist/amqplib-init.esm.js",