@gowri48/npmpublish 1.3.2 → 1.3.4

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.
@@ -13,18 +13,18 @@ jobs:
13
13
  environment: release
14
14
  steps:
15
15
  - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
16
-
16
+
17
+ - uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5
17
18
 
18
19
  - name: Use Node.js 24
19
20
  uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6
20
21
  with:
21
22
  node-version: "24"
22
23
  registry-url: "https://registry.npmjs.org"
23
- package-manager-cache: false
24
+ cache: pnpm
25
+ package-manager-cache: true
24
26
 
25
- - run: npm install
27
+ - run: pnpm install
26
28
 
27
29
  - name: Publish
28
- run: npm publish
29
-
30
-
30
+ run: pnpm publish --recursive --no-git-checks --verbose
package/package.json CHANGED
@@ -1,16 +1,13 @@
1
1
  {
2
2
  "name": "@gowri48/npmpublish",
3
- "version": "1.3.2",
3
+ "version": "1.3.4",
4
4
  "description": "Your package description",
5
5
  "main": "index.js",
6
6
  "repository": "github:gowridurgad/npm-publish",
7
7
  "author": "gowridurgad",
8
8
  "license": "ISC",
9
- "scripts": {
10
- "test": "echo \"Error: no test specified\" && exit 1"
11
- },
12
9
  "publishConfig": {
13
- "access": "public"
10
+ "access": "public"
14
11
  },
15
12
  "dependencies": {
16
13
  "axios": "^1.7.0"
@@ -18,5 +15,7 @@
18
15
  "engines": {
19
16
  "node": ">=12"
20
17
  },
21
- "packageManager": "npm@11.11.0"
22
- }
18
+ "scripts": {
19
+ "test": "echo \"Error: no test specified\" && exit 1"
20
+ }
21
+ }