@gowri48/npmpublish 1.0.9 → 1.1.1

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,13 +11,16 @@ jobs:
11
11
  runs-on: ubuntu-latest
12
12
  steps:
13
13
  - uses: actions/checkout@v6
14
+ - uses: pnpm/action-setup@v4
15
+ with:
16
+ version: 10
14
17
 
15
18
  - uses: actions/setup-node@v6
16
19
  with:
17
20
  node-version: '24'
18
21
  check-latest: true
19
22
  registry-url: 'https://registry.npmjs.org'
20
- cache: 'npm'
21
- cache-dependency-path: ./package-lock.json
22
-
23
+ cache: 'pnpm'
24
+ - run: pnpm install
25
+
23
26
  - run: npm publish --access=public
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gowri48/npmpublish",
3
- "version": "1.0.9",
3
+ "version": "1.1.1",
4
4
  "description": "Your package description",
5
5
  "main": "index.js",
6
6
  "repository": "github:gowridurgad/npm-publish",
@@ -10,10 +10,11 @@
10
10
  "test": "echo \"Error: no test specified\" && exit 1"
11
11
  },
12
12
  "publishConfig": {
13
- "access": "public"
14
-
13
+ "access": "public"
14
+ },
15
+ "dependencies": {
16
+ "axios": "^1.7.0"
15
17
  },
16
-
17
18
  "engines": {
18
19
  "node": ">=18"
19
20
  }
@@ -0,0 +1 @@
1
+ requests==2.25.1