react-performance-advisor 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.
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
name: Publish to npm
|
|
2
2
|
|
|
3
|
-
# This tells GitHub to run this script whenever you publish a new Release on GitHub
|
|
4
3
|
on:
|
|
5
4
|
release:
|
|
6
5
|
types: [published]
|
|
@@ -9,7 +8,6 @@ jobs:
|
|
|
9
8
|
build-and-publish:
|
|
10
9
|
runs-on: ubuntu-latest
|
|
11
10
|
|
|
12
|
-
# These permissions are REQUIRED for npm's Trusted Publishers (OIDC) to work securely
|
|
13
11
|
permissions:
|
|
14
12
|
contents: read
|
|
15
13
|
id-token: write
|
|
@@ -21,8 +19,7 @@ jobs:
|
|
|
21
19
|
- name: Setup Node.js
|
|
22
20
|
uses: actions/setup-node@v4
|
|
23
21
|
with:
|
|
24
|
-
node-version: '
|
|
25
|
-
registry-url: 'https://registry.npmjs.org'
|
|
22
|
+
node-version: '24.x'
|
|
26
23
|
|
|
27
24
|
- name: Install dependencies
|
|
28
25
|
run: npm ci
|
|
@@ -31,6 +28,4 @@ jobs:
|
|
|
31
28
|
run: npm run build
|
|
32
29
|
|
|
33
30
|
- name: Publish to npm
|
|
34
|
-
run: npm publish --provenance --access public
|
|
35
|
-
env:
|
|
36
|
-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
31
|
+
run: npm publish --provenance --access public
|
package/package.json
CHANGED
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-performance-advisor",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"module": "./dist/index.mjs",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"description": "An AI-powered React performance monitoring tool.",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://github.com/Hirunagrad/React-Performance-Advisor"
|
|
11
|
+
},
|
|
8
12
|
"keywords": [
|
|
9
13
|
"react",
|
|
10
14
|
"performance",
|