Skip to content

Commit

Permalink
Merge pull request #37 from swup/version/automated
Browse files Browse the repository at this point in the history
Update package version (automated)
  • Loading branch information
hirasso authored Apr 4, 2024
2 parents e65f541 + 51d5c50 commit 818e1a2
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [3.2.0] - 2024-04-04

- Make the progress bar more adjustable

## [3.1.2] - 2023-09-28

- Use `@swup/cli` for bundling
Expand Down Expand Up @@ -37,8 +41,7 @@

- Initial release

[Unreleased]: https://github.com/swup/progress-plugin/compare/3.1.1...HEAD

[3.2.0]: https://github.com/swup/progress-plugin/releases/tag/3.2.0
[3.1.2]: https://github.com/swup/progress-plugin/releases/tag/3.1.2
[3.1.1]: https://github.com/swup/progress-plugin/releases/tag/3.1.1
[3.1.0]: https://github.com/swup/progress-plugin/releases/tag/3.1.0
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.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@swup/progress-plugin",
"amdName": "SwupProgressPlugin",
"version": "3.1.2",
"version": "3.2.0",
"description": "A swup plugin for displaying a progress bar",
"type": "module",
"source": "src/index.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/ProgressBar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ export default class ProgressBar {

private refresh(): void {
requestAnimationFrame(() => {
this.progressElement.style.setProperty("--progress", String(this.value));
this.progressElement.style.setProperty('--progress', String(this.value));
});
}

Expand Down

0 comments on commit 818e1a2

Please sign in to comment.