@agent-facets/brand 0.1.1 → 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/package.json +4 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @agent-facets/brand
2
2
 
3
+ ## 0.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#35](https://github.com/agent-facets/facets/pull/35) [`6350718`](https://github.com/agent-facets/facets/commit/63507188f1bb3a7276cd4812f69f7d16d1778fd6) Thanks [@eXamadeus](https://github.com/eXamadeus)! - Ensure proper release isolation
8
+
9
+ ### Patch Changes
10
+
11
+ - [#33](https://github.com/agent-facets/facets/pull/33) [`540e126`](https://github.com/agent-facets/facets/commit/540e126e677de98a9b3d4e39542df37de8756b73) Thanks [@eXamadeus](https://github.com/eXamadeus)! - Ensure CI runs tests before release and notify Slack when failures occur.
12
+
13
+ ## 0.1.2
14
+
15
+ ### Patch Changes
16
+
17
+ - [`5262cbe`](https://github.com/agent-facets/facets/commit/5262cbe66df02c625430309878e6061ccde183de) Thanks [@eXamadeus](https://github.com/eXamadeus)! - Fix publishing by properly categorizing dev dependencies
18
+
19
+ - [`d3b9439`](https://github.com/agent-facets/facets/commit/d3b9439466e0eb65687901426e2ebd6c5a333c60) Thanks [@eXamadeus](https://github.com/eXamadeus)! - Use better github attribution for changesets
20
+
3
21
  ## 0.1.1
4
22
 
5
23
  ### Patch Changes
package/package.json CHANGED
@@ -5,12 +5,14 @@
5
5
  "url": "https://github.com/agent-facets/facets",
6
6
  "directory": "packages/brand"
7
7
  },
8
- "version": "0.1.1",
8
+ "version": "0.2.0",
9
9
  "type": "module",
10
10
  "exports": {
11
11
  ".": "./src/index.ts"
12
12
  },
13
13
  "scripts": {
14
+ "prepack": "bun ../../scripts/prepack.ts",
15
+ "postpack": "bun ../../scripts/postpack.ts",
14
16
  "types": "tsc --noEmit",
15
17
  "test": "bun test"
16
18
  },
@@ -18,7 +20,7 @@
18
20
  "@types/bun": "1.3.10"
19
21
  },
20
22
  "peerDependencies": {
21
- "typescript": "^5"
23
+ "typescript": "^5 || ^6"
22
24
  },
23
25
  "publishConfig": {
24
26
  "access": "public",