@gowri48/npmpublish 1.8.5 → 1.8.7

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.
@@ -11,21 +11,20 @@ jobs:
11
11
  runs-on: ubuntu-latest
12
12
  steps:
13
13
  - uses: actions/checkout@v6
14
-
14
+ - uses: pnpm/action-setup@v6
15
+ with:
16
+ version: 10
15
17
 
16
18
  - uses: gowridurgad/setup-node@auth-token
17
19
  with:
18
20
  node-version: '24'
19
21
  registry-url: "https://registry.npmjs.org"
20
- cache: npm
22
+ cache: pnpm
21
23
  auth-token-line: 'false'
22
-
24
+
23
25
  - name: Print .npmrc contents
24
26
  run: cat "${NPM_CONFIG_USERCONFIG}"
25
27
 
26
- - run: npm install
28
+ - run: pnpm install
27
29
 
28
- - run: npm publish
29
-
30
- - name: Print .npmrc contents
31
- run: cat "${NPM_CONFIG_USERCONFIG}"
30
+ - run: pnpm publish --no-git-checks
package/package.json CHANGED
@@ -1,23 +1,22 @@
1
1
  {
2
2
  "name": "@gowri48/npmpublish",
3
- "version": "1.8.5",
3
+ "version": "1.8.7",
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
- "build": "node -e \"console.log('build ok')\"",
11
- "test": "node -e \"console.log('ok')\""
12
- },
13
9
  "publishConfig": {
14
10
  "access": "public"
15
-
16
11
  },
17
12
  "dependencies": {
18
13
  "axios": "^1.7.0"
19
14
  },
20
15
  "engines": {
21
16
  "node": ">=12"
17
+ },
18
+ "scripts": {
19
+ "build": "node -e \"console.log('build ok')\"",
20
+ "test": "node -e \"console.log('ok')\""
22
21
  }
23
- }
22
+ }