diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c7d0cc62..e32619b98 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Fixed + +- Fix directory of types declarations +- Remove empty `index.css` file + ## [1.0.2] - 2023-10-25 ### Added diff --git a/package.json b/package.json index 931b86e04..e85675efd 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "version": "1.0.2", "description": "Implementation of the Aragon's Open Design System", "main": "dist/index.cjs.js", - "types": "dist/types/index.d.ts", + "types": "dist/types/src/index.d.ts", "license": "GPL-3.0", "files": [ "dist", diff --git a/src/styles/index.css b/src/styles/index.css index ddae3194d..14e9c5f2f 100644 --- a/src/styles/index.css +++ b/src/styles/index.css @@ -1,2 +1 @@ @import "./primitives/index.css"; -@import "./semantic/index.css"; diff --git a/src/styles/semantic/index.css b/src/styles/semantic/index.css deleted file mode 100644 index e69de29bb..000000000