Skip to content
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
5 changes: 2 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ jobs:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -30,6 +31,4 @@ jobs:
run: npm run build

- name: Publish to npm
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npm publish --provenance --access public
2 changes: 1 addition & 1 deletion dist/counterup.esm.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* @nullsablex/counter-up v0.1.2 | Author: NullSablex | https://github.com/NullSablex/counter-up.git | MIT License */
/* @nullsablex/counter-up v0.1.3 | Author: NullSablex | https://github.com/NullSablex/counter-up.git | MIT License */
const easings = {
linear: (t) => t,
easeInOutQuad: (t) => (t < 0.5 ? 2 * t * t : 1 - Math.pow(-2 * t + 2, 2) / 2),
Expand Down
2 changes: 1 addition & 1 deletion dist/counterup.esm.min.js

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

2 changes: 1 addition & 1 deletion dist/counterup.umd.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* @nullsablex/counter-up v0.1.2 | Author: NullSablex | https://github.com/NullSablex/counter-up.git | MIT License */
/* @nullsablex/counter-up v0.1.3 | Author: NullSablex | https://github.com/NullSablex/counter-up.git | MIT License */
(function (global, factory) {
if (typeof module === "object" && typeof module.exports === "object") {
module.exports = factory();
Expand Down
2 changes: 1 addition & 1 deletion dist/counterup.umd.min.js

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

8 changes: 4 additions & 4 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,6 +1,6 @@
{
"name": "@nullsablex/counter-up",
"version": "0.1.2",
"version": "0.1.3",
"description": "Biblioteca JS pura para animação de contadores numéricos",
"author": "NullSablex",
"repository": {
Expand Down
Loading