@yopdev/dev-server 3.0.3-beta.7 → 3.0.3

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.
@@ -7,6 +7,10 @@ on:
7
7
  release:
8
8
  types: [created]
9
9
 
10
+ permissions:
11
+ id-token: write # Required for OIDC
12
+ contents: read
13
+
10
14
  jobs:
11
15
  build:
12
16
  timeout-minutes: 5
@@ -31,8 +35,8 @@ jobs:
31
35
  with:
32
36
  node-version: 20
33
37
  registry-url: https://registry.npmjs.org/
38
+ - name: Upgrade npm
39
+ run: npm install -g npm@latest
34
40
  - run: npm ci
35
41
  - run: npm run compile
36
42
  - run: npm publish
37
- env:
38
- NODE_AUTH_TOKEN: ${{secrets.npm_token}}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yopdev/dev-server",
3
- "version": "3.0.3-beta.7",
3
+ "version": "3.0.3",
4
4
  "scripts": {
5
5
  "compile": "tsc",
6
6
  "pretest": "npm run compile",
@@ -13,7 +13,7 @@
13
13
  "@types/aws-lambda": "8.10.114",
14
14
  "@types/js-yaml": "^4.0.9",
15
15
  "@types/node": "^20.9.0",
16
- "axios": "^1.6.2",
16
+ "axios": "^1.13.5",
17
17
  "ts-jest": "^29.1.1",
18
18
  "typescript": "^5.2.2"
19
19
  },