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