@auriclabs/events-infra 0.1.0 → 0.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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @auriclabs/events-infra@0.1.0 build /home/runner/work/packages/packages/packages/events-infra
2
+ > @auriclabs/events-infra@0.2.0 build /home/runner/work/packages/packages/packages/events-infra
3
3
  > tsdown src/index.ts --format cjs,esm --dts --tsconfig tsconfig.build.json --no-hash
4
4
 
5
5
  [tsdown] Node.js v20.20.1 is deprecated. Support will be removed in the next minor release. Please upgrade to Node.js 22.18.0 or later.
@@ -9,6 +9,12 @@
9
9
  ℹ Build start
10
10
  ℹ [CJS] dist/index.cjs 1.14 kB │ gzip: 0.57 kB
11
11
  ℹ [CJS] 1 files, total: 1.14 kB
12
+ ℹ [CJS] dist/index.d.cts.map 0.52 kB │ gzip: 0.27 kB
13
+ ℹ [CJS] dist/index.d.cts 0.77 kB │ gzip: 0.33 kB
14
+ ℹ [CJS] 2 files, total: 1.29 kB
15
+ [PLUGIN_TIMINGS] Warning: Your build spent significant time in plugin `rolldown-plugin-dts:generate`. See https://rolldown.rs/options/checks#plugintimings for more details.
16
+
17
+ ✔ Build complete in 11356ms
12
18
  ℹ [ESM] dist/index.mjs 1.03 kB │ gzip: 0.54 kB
13
19
  ℹ [ESM] dist/index.mjs.map 2.18 kB │ gzip: 0.95 kB
14
20
  ℹ [ESM] dist/index.d.mts.map 0.52 kB │ gzip: 0.27 kB
@@ -16,10 +22,4 @@
16
22
  ℹ [ESM] 4 files, total: 4.50 kB
17
23
  [PLUGIN_TIMINGS] Warning: Your build spent significant time in plugin `rolldown-plugin-dts:generate`. See https://rolldown.rs/options/checks#plugintimings for more details.
18
24
 
19
- ℹ [CJS] dist/index.d.cts.map 0.52 kB │ gzip: 0.27 kB
20
- ℹ [CJS] dist/index.d.cts 0.77 kB │ gzip: 0.33 kB
21
- ℹ [CJS] 2 files, total: 1.29 kB
22
- ✔ Build complete in 11027ms
23
- [PLUGIN_TIMINGS] Warning: Your build spent significant time in plugin `rolldown-plugin-dts:generate`. See https://rolldown.rs/options/checks#plugintimings for more details.
24
-
25
- ✔ Build complete in 11028ms
25
+ ✔ Build complete in 11366ms
package/CHANGELOG.md ADDED
@@ -0,0 +1,8 @@
1
+ # @auriclabs/events-infra
2
+
3
+ ## 0.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - eeb513b: Add @auriclabs/events-infra package with SST infrastructure components for event bus,
8
+ event listeners, and event store.
@@ -0,0 +1,3 @@
1
+ import sstConfig from '@auriclabs/eslint-config/sst';
2
+
3
+ export default sstConfig;
package/package.json CHANGED
@@ -1,16 +1,14 @@
1
1
  {
2
2
  "name": "@auriclabs/events-infra",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "SST infrastructure helpers for DynamoDB event stores",
5
5
  "prettier": "@auriclabs/prettier-config",
6
- "main": "dist/index.cjs",
7
- "module": "dist/index.mjs",
8
- "types": "dist/index.d.mts",
6
+ "main": "src/index.ts",
7
+ "types": "src/index.ts",
9
8
  "exports": {
10
9
  ".": {
11
- "types": "./dist/index.d.mts",
12
- "import": "./dist/index.mjs",
13
- "require": "./dist/index.cjs"
10
+ "types": "./src/index.ts",
11
+ "default": "./src/index.ts"
14
12
  }
15
13
  },
16
14
  "keywords": [],