Skip to content

Commit

Permalink
Merge pull request #207 from DaveKeehl/bugfix/demo-error
Browse files Browse the repository at this point in the history
Bugfix/demo error
  • Loading branch information
DaveKeehl authored Apr 5, 2024
2 parents a068240 + 8cb8ff1 commit a7cfa49
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Installing dependencies
run: npm ci

- name: Build
- name: Build package
run: npm run build -- --filter=svelte-reveal

# - name: Testing
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,14 @@ jobs:
with:
node-version: 20
cache: 'npm'
cache-dependency-path: 'package-lock.json'

- name: Installing dependencies
run: npm ci

- name: Building package
- name: Build package
run: npm run build -- --filter=svelte-reveal

- name: Pack build artifacts
run: npm run pack -- --filter=svelte-reveal

- name: Publish to NPM
Expand Down
7 changes: 7 additions & 0 deletions packages/svelte-reveal/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.0.4] - 2024-04-05

### Fixed

- Resolved release workflow misconfiguration

## [1.0.3] - 2024-04-04

### Fixed
Expand Down Expand Up @@ -194,3 +200,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[1.0.1]: https://github.com/DaveKeehl/svelte-reveal/compare/1.0.0...1.0.1
[1.0.2]: https://github.com/DaveKeehl/svelte-reveal/compare/1.0.1...1.0.2
[1.0.3]: https://github.com/DaveKeehl/svelte-reveal/compare/1.0.2...1.0.3
[1.0.4]: https://github.com/DaveKeehl/svelte-reveal/compare/1.0.3...1.0.4
2 changes: 1 addition & 1 deletion packages/svelte-reveal/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "svelte-reveal",
"version": "1.0.3",
"version": "1.0.4",
"description": "Svelte action that leverages the Intersection Observer API to trigger reveal on scroll transitions",
"type": "module",
"main": "dist/index.cjs",
Expand Down

0 comments on commit a7cfa49

Please sign in to comment.