Skip to content

Commit d8f5c6b

Browse files
committed
bump
1 parent 8878309 commit d8f5c6b

7 files changed

Lines changed: 10 additions & 13 deletions

File tree

.github/workflows/pages.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
1-
name: Deploy Demo to GitHub Pages
1+
name: Deploy to GitHub Pages
22

33
on:
44
push:
55
branches: [master, main]
6-
paths:
7-
- "demo/**"
8-
- "dist/**"
96
workflow_dispatch:
107

118
permissions:
@@ -42,7 +39,7 @@ jobs:
4239
- name: Prepare site
4340
run: |
4441
mkdir -p _site
45-
cp -r demo/* _site/
42+
cp -r docs/* _site/
4643
cp -r dist _site/dist
4744
sed -i 's|\.\./dist/|dist/|g' _site/index.html
4845

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ JOS.init();
7171

7272
```html
7373
<!-- CDNJS -->
74-
<script src="https://cdnjs.cloudflare.com/ajax/libs/jos-animation/1.0.0-beta.1/jos.min.js"></script>
74+
<script src="https://cdnjs.cloudflare.com/ajax/libs/jos-animation/1.0.0-beta.2/jos.min.js"></script>
7575

7676
<!-- unpkg -->
7777
<script src="https://unpkg.com/jos-animation/dist/jos.min.js"></script>
@@ -522,7 +522,7 @@ src/
522522
Releases are automated via GitHub Actions:
523523

524524
1. Update version in `package.json`
525-
2. `git tag v1.0.0-beta.1 && git push --tags`
525+
2. `git tag v1.0.0-beta.2 && git push --tags`
526526
3. CI builds, tests, creates GitHub Release, and publishes to npm
527527

528528
## Used In

docs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@
282282
<!-- Hero -->
283283
<header class="hero" id="top">
284284
<div class="jos" data-jos_animation="fade-down" data-jos_duration="0.8" data-jos_startVisible="true">
285-
<span class="badge">v1.0.0-beta.1</span>
285+
<span class="badge">v1.0.0-beta.2</span>
286286
<h1>Scroll animations,<br><span>made simple.</span></h1>
287287
<p class="subtitle">A lightweight, performant scroll animation library built with IntersectionObserver.</p>
288288
<div class="hero-actions">

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jos-animation",
3-
"version": "1.0.0-beta.1",
3+
"version": "1.0.0-beta.2",
44
"description": "A lightweight, performant scroll animation library for the web",
55
"author": "Jesvi Jonathan",
66
"license": "MIT",

rollup.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import terser from "@rollup/plugin-terser";
44
import postcss from "rollup-plugin-postcss";
55

66
const banner = `/*!
7-
* JOS Animation Library v1.0.0-beta.1
7+
* JOS Animation Library v1.0.0-beta.2
88
* https://jos-animation.vercel.app
99
* (c) ${new Date().getFullYear()} Jesvi Jonathan
1010
* Released under the MIT License

src/animations/jos.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! JOS Animation Library v1.0.0-beta.1 | MIT License | https://jos-animation.vercel.app */
1+
/*! JOS Animation Library v1.0.0-beta.2 | MIT License | https://jos-animation.vercel.app */
22

33
/* ============================================================
44
Base

src/core/JOS.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* JOS - JavaScript On Scroll Animation Library
33
*
4-
* @version 1.0.0-beta.1
4+
* @version 1.0.0-beta.2
55
* @author Jesvi Jonathan
66
* @license MIT
77
* @see https://jos-animation.vercel.app
@@ -16,7 +16,7 @@ import { DebugOverlay } from "./DebugOverlay.js";
1616
import { queryAll } from "../utils/dom.js";
1717

1818
class JOS {
19-
static version = "1.0.0-beta.1";
19+
static version = "1.0.0-beta.2";
2020
static author = "Jesvi Jonathan";
2121
static webpage = "https://jos-animation.vercel.app";
2222
static github = "https://github.com/jesvijonathan/JOS-Animation-Library";

0 commit comments

Comments
 (0)