Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [1.0.1](https://github.com/getditto/react-ditto/compare/v1.0.0...v1.0.1)

### Bug Fixes

* Add a `files` allowlist so the published package only includes what is needed:
the built `dist` output (including source maps for debuggable stacks, with test
files excluded) plus the README and CHANGELOG.

## [1.0.0](https://github.com/getditto/react-ditto/compare/v0.11.2...v1.0.0)

### ⚠ BREAKING CHANGES
Expand Down
8 changes: 7 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
{
"name": "@dittolive/react-ditto",
"version": "1.0.0",
"version": "1.0.1",
"description": "React wrappers for Ditto",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"files": [
"dist",
"!dist/**/*.spec.*",
"README.md",
"CHANGELOG.md"
],
"exports": {
".": {
"require": "./dist/cjs/index.js",
Expand Down
Loading