@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 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": "5ab982a27ffff628e5a718dce885b5599176aefa"
58
+ "gitHead": "6dc43520fa3a57828524b7b6a195c9dc2de29336"
59
59
  }
@@ -0,0 +1,5 @@
1
+ version: '2'
2
+ linters:
3
+ exclusions:
4
+ paths:
5
+ - node_modules
@@ -0,0 +1,5 @@
1
+ version: '2'
2
+ linters:
3
+ exclusions:
4
+ paths:
5
+ - node_modules
@@ -16,6 +16,7 @@
16
16
  "ts-node": {
17
17
  "compilerOptions": {
18
18
  "module": "commonjs",
19
+ "moduleResolution": "node",
19
20
  "target": "es5",
20
21
  "esModuleInterop": true
21
22
  },
@@ -1,2 +1,2 @@
1
1
  ## Project knowledge
2
- Thie repository contains a **Grafana plugin**. You must Read @./.config/AGENTS/instructions.md before doing changes.
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
- Thie repository contains a **Grafana plugin**. You must Read @./.config/AGENTS/instructions.md before doing changes.
2
+ This repository contains a **Grafana plugin**. You must Read @./.config/AGENTS/instructions.md before doing changes.
@@ -1,3 +1,3 @@
1
1
  ## Project knowledge
2
- Thie repository contains a **Grafana plugin**. You must Read @./.config/AGENTS/instructions.md before doing changes.
2
+ This repository contains a **Grafana plugin**. You must Read @./.config/AGENTS/instructions.md before doing changes.
3
3
 
@@ -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@v4
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@6f50bbb8ea47d56e62dee92392788acbc8192d0b # v3.1.0
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@6f50bbb8ea47d56e62dee92392788acbc8192d0b # v3.1.0
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@v4
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@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
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@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
21
+ uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
22
22
  with:
23
23
  node-version: '22'
24
24
  cache: '{{ packageManagerName }}'