@grafana/create-plugin 7.3.0 → 7.3.1-canary.2560.25399650964.0
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.
- package/package.json +2 -2
- package/templates/backend/.golangci.yml +5 -0
- package/templates/backend-app/.golangci.yml +5 -0
- package/templates/common/.config/tsconfig.json +1 -0
- package/templates/common/AGENTS.md +1 -1
- package/templates/common/CLAUDE.md +1 -1
- package/templates/common/GEMINI.md +1 -1
- package/templates/github/workflows/ci.yml +4 -4
- package/templates/github/workflows/is-compatible.yml +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grafana/create-plugin",
|
|
3
|
-
"version": "7.3.0",
|
|
3
|
+
"version": "7.3.1-canary.2560.25399650964.0",
|
|
4
4
|
"repository": {
|
|
5
5
|
"directory": "packages/create-plugin",
|
|
6
6
|
"url": "https://github.com/grafana/plugin-tools"
|
|
@@ -55,5 +55,5 @@
|
|
|
55
55
|
"engines": {
|
|
56
56
|
"node": ">=20"
|
|
57
57
|
},
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "6dc43520fa3a57828524b7b6a195c9dc2de29336"
|
|
59
59
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
## Project knowledge
|
|
2
|
-
|
|
2
|
+
This repository contains a **Grafana plugin**. You must Read @./.config/AGENTS/instructions.md before doing changes.
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
## Project knowledge
|
|
2
|
-
|
|
2
|
+
This repository contains a **Grafana plugin**. You must Read @./.config/AGENTS/instructions.md before doing changes.
|
|
@@ -31,7 +31,7 @@ jobs:
|
|
|
31
31
|
{{#if_eq packageManagerName "pnpm"}}
|
|
32
32
|
# pnpm action uses the packageManager field in package.json to
|
|
33
33
|
# understand which version to install.
|
|
34
|
-
- uses: pnpm/action-setup@
|
|
34
|
+
- uses: pnpm/action-setup@v6
|
|
35
35
|
{{/if_eq}}
|
|
36
36
|
- name: Setup Node.js environment
|
|
37
37
|
uses: actions/setup-node@v6
|
|
@@ -74,14 +74,14 @@ jobs:
|
|
|
74
74
|
|
|
75
75
|
- name: Build backend
|
|
76
76
|
if: steps.check-for-backend.outputs.has-backend == 'true'
|
|
77
|
-
uses: magefile/mage-action@
|
|
77
|
+
uses: magefile/mage-action@a662bd8c29d8106879588cfff83b2faf6e6f59db # v4
|
|
78
78
|
with:
|
|
79
79
|
version: latest
|
|
80
80
|
args: buildAll
|
|
81
81
|
|
|
82
82
|
- name: Test backend
|
|
83
83
|
if: steps.check-for-backend.outputs.has-backend == 'true'
|
|
84
|
-
uses: magefile/mage-action@
|
|
84
|
+
uses: magefile/mage-action@a662bd8c29d8106879588cfff83b2faf6e6f59db # v4
|
|
85
85
|
with:
|
|
86
86
|
version: latest
|
|
87
87
|
args: test
|
|
@@ -187,7 +187,7 @@ jobs:
|
|
|
187
187
|
{{#if_eq packageManagerName "pnpm"}}
|
|
188
188
|
# pnpm action uses the packageManager field in package.json to
|
|
189
189
|
# understand which version to install.
|
|
190
|
-
- uses: pnpm/action-setup@
|
|
190
|
+
- uses: pnpm/action-setup@v6
|
|
191
191
|
{{/if_eq}}
|
|
192
192
|
- name: Setup Node.js environment
|
|
193
193
|
uses: actions/setup-node@v6
|
|
@@ -14,11 +14,11 @@ jobs:
|
|
|
14
14
|
{{#if_eq packageManagerName "pnpm"}}
|
|
15
15
|
# pnpm action uses the packageManager field in package.json to
|
|
16
16
|
# understand which version to install.
|
|
17
|
-
- uses: pnpm/action-setup@
|
|
17
|
+
- uses: pnpm/action-setup@903f9c1a6ebcba6cf41d87230be49611ac97822e # v6.0.3
|
|
18
18
|
{{/if_eq}}
|
|
19
19
|
|
|
20
20
|
- name: Setup Node.js environment
|
|
21
|
-
uses: actions/setup-node@
|
|
21
|
+
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
|
|
22
22
|
with:
|
|
23
23
|
node-version: '22'
|
|
24
24
|
cache: '{{ packageManagerName }}'
|