@content-collections/integrations 0.1.0 → 0.1.1

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
- > @content-collections/integrations@0.0.0 build /Users/sdorra/Projects/sdorra/content-collections/packages/integrations
2
+ > @content-collections/integrations@0.1.0 build /Users/sdorra/Projects/sdorra/content-collections/packages/integrations
3
3
  > tsup src/index.ts --format esm,cjs --dts -d dist
4
4
 
5
5
  CLI Building entry: src/index.ts
@@ -9,10 +9,10 @@ CLI Target: es2022
9
9
  ESM Build start
10
10
  CJS Build start
11
11
  ESM dist/index.js 1.50 KB
12
- ESM ⚡️ Build success in 105ms
12
+ ESM ⚡️ Build success in 12ms
13
13
  CJS dist/index.cjs 3.19 KB
14
- CJS ⚡️ Build success in 106ms
14
+ CJS ⚡️ Build success in 13ms
15
15
  DTS Build start
16
- DTS ⚡️ Build success in 600ms
16
+ DTS ⚡️ Build success in 777ms
17
17
  DTS dist/index.d.ts 143.00 B
18
18
  DTS dist/index.d.cts 143.00 B
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @content-collections/integrations
2
2
 
3
+ ## 0.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [`5c7022f`](https://github.com/sdorra/content-collections/commit/5c7022f630a9194ff5579f792c06dcca31611cd5) Thanks [@sdorra](https://github.com/sdorra)! - Update version range of core package
8
+
3
9
  ## 0.1.0
4
10
 
5
11
  ### Minor Changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@content-collections/integrations",
3
3
  "description": "Utils for integrating Content Collections with other tools",
4
- "version": "0.1.0",
4
+ "version": "0.1.1",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "types": "./dist/index.d.ts",
@@ -14,10 +14,13 @@
14
14
  }
15
15
  },
16
16
  "devDependencies": {
17
- "@content-collections/core": "0.1.1"
17
+ "@types/node": "20",
18
+ "tsup": "^7.2.0",
19
+ "typescript": "^5.3.3",
20
+ "@content-collections/core": "0.2.0"
18
21
  },
19
22
  "peerDependencies": {
20
- "@content-collections/core": "0.1.1"
23
+ "@content-collections/core": "0.x"
21
24
  },
22
25
  "scripts": {
23
26
  "build": "tsup src/index.ts --format esm,cjs --dts -d dist"