Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bugfix/demo error #207

Merged
merged 11 commits into from
Apr 5, 2024
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
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
Loading