@arbor-education/design-system.components 0.17.0 → 0.17.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/package.json +2 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.17.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#182](https://github.com/arbor-education/design-system.components/pull/182) [`de819f8`](https://github.com/arbor-education/design-system.components/commit/de819f855b62a0564036d7068416351d1e404dd4) Thanks [@AmeeMorris](https://github.com/AmeeMorris)! - Add missing `"type": "module"` declaration to package.json. The package already emits ESM syntax from the TypeScript compiler but was not declaring it, which could cause issues for consumer bundlers.
8
+
3
9
  ## 0.17.0
4
10
 
5
11
  ### Minor Changes
package/package.json CHANGED
@@ -1,8 +1,9 @@
1
1
  {
2
2
  "name": "@arbor-education/design-system.components",
3
- "version": "0.17.0",
3
+ "version": "0.17.1",
4
4
  "description": "The component library for the design system (the baby)",
5
5
  "main": "dist/index.js",
6
+ "type": "module",
6
7
  "repository": {
7
8
  "type": "git",
8
9
  "url": "git+ssh://git@github.com/arbor-education/design-system.components.git"