diff --git a/CHANGELOG.md b/CHANGELOG.md index e26fa21..c7dbf8f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## [3.1.1] - 2023-07-30 + +- Fix missing `dist/` folder + ## [3.1.0] - 2023-07-30 - Port to TypeScript @@ -41,8 +45,9 @@ - Initial release -[Unreleased]: https://github.com/swup/js-plugin/compare/3.1.0...HEAD +[Unreleased]: https://github.com/swup/js-plugin/compare/3.1.1...HEAD +[3.1.1]: https://github.com/swup/js-plugin/releases/tag/3.1.1 [3.1.0]: https://github.com/swup/js-plugin/releases/tag/3.1.0 [3.0.0]: https://github.com/swup/js-plugin/releases/tag/3.0.0 [2.0.0]: https://github.com/swup/js-plugin/releases/tag/2.0.0 diff --git a/package-lock.json b/package-lock.json index 0074ab8..e49e934 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@swup/js-plugin", - "version": "3.1.0", + "version": "3.1.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@swup/js-plugin", - "version": "3.1.0", + "version": "3.1.1", "license": "MIT", "dependencies": { "@swup/plugin": "^3.0.0" diff --git a/package.json b/package.json index baa60ca..10609cb 100755 --- a/package.json +++ b/package.json @@ -1,13 +1,14 @@ { "name": "@swup/js-plugin", "amdName": "SwupJsPlugin", - "version": "3.1.0", + "version": "3.1.1", "description": "A swup plugin for managing animations in JS", "type": "module", "source": "src/index.ts", "main": "./dist/index.cjs", "module": "./dist/index.module.js", "unpkg": "./dist/index.umd.js", + "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", @@ -15,6 +16,9 @@ "require": "./dist/index.cjs" } }, + "files": [ + "dist" + ], "scripts": { "build": "swup-plugin build", "dev": "swup-plugin dev",