@grafana/create-plugin 1.2.1-canary.217.2441a25.0 → 1.2.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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ # v1.2.1 (Thu Mar 30 2023)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - Create Plugin: Don't upgrade grafana dependencies when running update command [#217](https://github.com/grafana/plugin-tools/pull/217) ([@academo](https://github.com/academo))
6
+ - CreatePlugin: Add vscode launch.json files for backend debug mode [#224](https://github.com/grafana/plugin-tools/pull/224) ([@xnyo](https://github.com/xnyo))
7
+
8
+ #### Authors: 2
9
+
10
+ - Esteban Beltran ([@academo](https://github.com/academo))
11
+ - Giuseppe Guerra ([@xnyo](https://github.com/xnyo))
12
+
13
+ ---
14
+
1
15
  # v1.2.0 (Fri Mar 17 2023)
2
16
 
3
17
  #### 🚀 Enhancement
package/dist/constants.js CHANGED
@@ -72,7 +72,6 @@ exports.TEXT = {
72
72
  updateNpmDependenciesPrompt: '**Would you like to update the following dependencies in the `package.json?`**',
73
73
  updateNpmDependenciesSuccess: 'Successfully updated the NPM dependencies.',
74
74
  updateNpmDependenciesAborted: 'No NPM dependencies have been updated.',
75
- updateGrafanaNpmDependenciesPrompt: '**Would you like to update the Grafana packages (@grafana/*) in the `package.json?`**',
76
75
  removeNpmDependenciesPrompt: '**Would you like to remove the following possibly unnecessary NPM dependencies?**',
77
76
  removeNpmDependenciesSuccess: 'Unnecessary NPM dependencies removed successfully.',
78
77
  removeNpmDependenciesAborted: 'No NPM dependencies have been removed.',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grafana/create-plugin",
3
- "version": "1.2.1-canary.217.2441a25.0",
3
+ "version": "1.2.1",
4
4
  "main": "index.js",
5
5
  "repository": {
6
6
  "directory": "packages/create-plugin",
@@ -63,5 +63,5 @@
63
63
  "engines": {
64
64
  "node": ">=16"
65
65
  },
66
- "gitHead": "2441a259304e84ba36c37fb0e0d9f686b290a3d7"
66
+ "gitHead": "3f3864d4b4f3b1e19f16d580258999290c8c695b"
67
67
  }
package/src/constants.ts CHANGED
@@ -95,7 +95,6 @@ export const TEXT = {
95
95
  updateNpmDependenciesPrompt: '**Would you like to update the following dependencies in the `package.json?`**',
96
96
  updateNpmDependenciesSuccess: 'Successfully updated the NPM dependencies.',
97
97
  updateNpmDependenciesAborted: 'No NPM dependencies have been updated.',
98
- updateGrafanaNpmDependenciesPrompt: '**Would you like to update the Grafana packages (@grafana/*) in the `package.json?`**',
99
98
 
100
99
  removeNpmDependenciesPrompt: '**Would you like to remove the following possibly unnecessary NPM dependencies?**',
101
100
  removeNpmDependenciesSuccess: 'Unnecessary NPM dependencies removed successfully.',