@tozielinski/next-upstash-nonce 1.2.1 → 1.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.2.2](https://github.com/tozielinski/next-upstash-nonce/compare/v1.2.1...v1.2.2) (2025-11-21)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * add .npmignore ([4aafa2c](https://github.com/tozielinski/next-upstash-nonce/commit/4aafa2c9f4081c44030babbeb35c8a5573ef6c3b))
9
+
3
10
  ## [1.2.1](https://github.com/tozielinski/next-upstash-nonce/compare/v1.2.0...v1.2.1) (2025-11-21)
4
11
 
5
12
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tozielinski/next-upstash-nonce",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "description": "Create, store, verify and delete nonces in Redis by Upstash for Next.js",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,29 +0,0 @@
1
- name: Publish to npm
2
-
3
- on:
4
- push:
5
- tags:
6
- - "v*.*.*"
7
-
8
- permissions:
9
- id-token: write
10
- contents: write
11
-
12
- jobs:
13
- publish:
14
- name: Publish package to npm
15
- runs-on: ubuntu-latest
16
- steps:
17
- - uses: actions/checkout@v4
18
-
19
- - name: Setup Node
20
- uses: actions/setup-node@v4
21
- with:
22
- node-version: "20"
23
- registry-url: "https://registry.npmjs.org/"
24
-
25
- - name: Update npm
26
- run: npm i -g npm@latest
27
- - run: npm ci
28
- - run: npm run build
29
- - run: npm publish --access public
@@ -1,27 +0,0 @@
1
- name: Release Please
2
-
3
- on:
4
- push:
5
- branches:
6
- - main
7
-
8
- permissions:
9
- contents: write
10
- pull-requests: write
11
-
12
- jobs:
13
- release:
14
- runs-on: ubuntu-latest
15
-
16
- steps:
17
- - uses: actions/checkout@v4
18
-
19
- - name: Run Release Please
20
- uses: googleapis/release-please-action@v4
21
- with:
22
- token: ${{ secrets.GH_PAT }}
23
- release-type: node
24
- path: "." # das root package
25
- config-file: .release-please-config.json
26
- manifest-file: .release-please-manifest.json
27
-
@@ -1,9 +0,0 @@
1
- {
2
- "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
3
- "release-type": "node",
4
- "packages": {
5
- ".": {
6
- "component": "next-upstash-nonce"
7
- }
8
- }
9
- }
@@ -1,3 +0,0 @@
1
- {
2
- ".": "1.2.1"
3
- }