Skip to content

Commit

Permalink
Add npm token and remove ntfy for now
Browse files Browse the repository at this point in the history
  • Loading branch information
GoudekettingRM committed Jan 23, 2024
1 parent 5103b4f commit 21fbef8
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Expand Up @@ -30,7 +30,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Send NTFY Notification on publish a publish happens
if: steps.changesets.outputs.published == 'true'
# You can do something when a publish happens.
run: curl -d "A new version of Next Navigate was published!" -u ${{ secrets.NTFY_USER }}:${{ secrets.NTFY_PASSWORD }} ntfy.goudeketting.nl/parameterizejs
# - name: Send NTFY Notification on publish a publish happens
# if: steps.changesets.outputs.published == 'true'
# # You can do something when a publish happens.
# run: curl -d "A new version of Next Navigate was published!" -u ${{ secrets.NTFY_USER }}:${{ secrets.NTFY_PASSWORD }} ntfy.goudeketting.nl/parameterizejs
7 changes: 7 additions & 0 deletions dist/index.d.mts
@@ -0,0 +1,7 @@
type TParameterizeOptions = {
charCap?: number;
separator?: string;
};
declare const parameterize: (str: string, opts?: TParameterizeOptions) => string;

export { parameterize };
7 changes: 7 additions & 0 deletions dist/index.d.ts
@@ -0,0 +1,7 @@
type TParameterizeOptions = {
charCap?: number;
separator?: string;
};
declare const parameterize: (str: string, opts?: TParameterizeOptions) => string;

export { parameterize };

0 comments on commit 21fbef8

Please sign in to comment.