Skip to content

Commit

Permalink
Merge pull request #25 from swup/version/automated
Browse files Browse the repository at this point in the history
Fix missing `dist/` folder
  • Loading branch information
hirasso committed Jul 30, 2023
2 parents bd4bb8f + 3763387 commit a4dc5c7
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

<!-- ## [Unreleased] -->

## [3.1.1] - 2023-07-30

- Fix missing `dist/` folder in npm package

## [3.1.0] - 2023-07-30

- Port to TypeScript

## [3.0.0] - 2023-07-26

- Update for swup 4 compatibility
Expand All @@ -25,6 +33,8 @@

[Unreleased]: https://github.com/swup/body-class-plugin/compare/3.0.0...HEAD

[3.1.1]: https://github.com/swup/body-class-plugin/releases/tag/3.1.1
[3.1.0]: https://github.com/swup/body-class-plugin/releases/tag/3.1.0
[3.0.0]: https://github.com/swup/body-class-plugin/releases/tag/3.0.0
[2.0.0]: https://github.com/swup/body-class-plugin/releases/tag/2.0.0
[1.0.2]: https://github.com/swup/body-class-plugin/releases/tag/1.0.2
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,24 @@
{
"name": "@swup/body-class-plugin",
"amdName": "SwupBodyClassPlugin",
"version": "3.1.0",
"version": "3.1.1",
"description": "A swup plugin for updating the body classname",
"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",
"import": "./dist/index.modern.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "swup-plugin build",
"dev": "swup-plugin dev",
Expand Down

0 comments on commit a4dc5c7

Please sign in to comment.