@grafana/create-plugin 6.2.0-canary.2283.19225164741.0 → 6.2.0-canary.2283.19289604632.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.
@@ -23,7 +23,7 @@ var defaultMigrations = {
23
23
  migrationScript: "./scripts/004-eslint9-flat-config.js"
24
24
  },
25
25
  "005-react-18-3": {
26
- version: "6.1.7-beta.1",
26
+ version: "6.1.9",
27
27
  description: "Update React and ReactDOM 18.x versions to ^18.3.0 to surface React 19 compatibility issues.",
28
28
  migrationScript: "./scripts/005-react-18-3.js"
29
29
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grafana/create-plugin",
3
- "version": "6.2.0-canary.2283.19225164741.0",
3
+ "version": "6.2.0-canary.2283.19289604632.0",
4
4
  "repository": {
5
5
  "directory": "packages/create-plugin",
6
6
  "url": "https://github.com/grafana/plugin-tools"
@@ -59,5 +59,5 @@
59
59
  "engines": {
60
60
  "node": ">=20"
61
61
  },
62
- "gitHead": "2771e041152fce899b6ecbbf3a37dce085a4a563"
62
+ "gitHead": "7ab3faeb7918149d262ed0e0518450499b78bbcc"
63
63
  }
@@ -36,7 +36,7 @@ export default {
36
36
  migrationScript: './scripts/004-eslint9-flat-config.js',
37
37
  },
38
38
  '005-react-18-3': {
39
- version: '6.1.7-beta.1',
39
+ version: '6.1.9',
40
40
  description: 'Update React and ReactDOM 18.x versions to ^18.3.0 to surface React 19 compatibility issues.',
41
41
  migrationScript: './scripts/005-react-18-3.js',
42
42
  },
@@ -266,7 +266,7 @@ const DIST_TAGS = {
266
266
  *
267
267
  * @param incomingVersion - The incoming version to compare.
268
268
  * @param existingVersion - The existing version to compare.
269
- * @param orEqualTo - Whether to include the existing version in the comparison.
269
+ * @param orEqualTo - Whether to check for greater than or equal to (>=) instead of just greater than (>).
270
270
  *
271
271
  */
272
272
  export function isVersionGreater(incomingVersion: string, existingVersion: string, orEqualTo = false) {