@grafana/create-plugin 3.0.0-canary.658.dabaee1.0 → 3.0.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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
# v3.0.0 (Fri Jan 12 2024)
|
|
2
|
+
|
|
3
|
+
#### 💥 Breaking Change
|
|
4
|
+
|
|
5
|
+
- Build: Migrate create-plugin to ESM [#658](https://github.com/grafana/plugin-tools/pull/658) ([@jackw](https://github.com/jackw))
|
|
6
|
+
|
|
7
|
+
#### 🐛 Bug Fix
|
|
8
|
+
|
|
9
|
+
- Chore: Fixed liniting issues in template [#657](https://github.com/grafana/plugin-tools/pull/657) ([@mckn](https://github.com/mckn))
|
|
10
|
+
|
|
11
|
+
#### Authors: 2
|
|
12
|
+
|
|
13
|
+
- Jack Westbrook ([@jackw](https://github.com/jackw))
|
|
14
|
+
- Marcus Andersson ([@mckn](https://github.com/mckn))
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
1
18
|
# v2.11.2 (Wed Jan 10 2024)
|
|
2
19
|
|
|
3
20
|
#### 🐛 Bug Fix
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grafana/create-plugin",
|
|
3
|
-
"version": "3.0.0
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"repository": {
|
|
5
5
|
"directory": "packages/create-plugin",
|
|
6
6
|
"url": "https://github.com/grafana/plugin-tools"
|
|
@@ -36,8 +36,7 @@
|
|
|
36
36
|
"generate-datasource-backend": "tsc && npm run clean-generated && CREATE_PLUGIN_DEV=true node ./dist/bin/run.js --pluginName='Sample datasource' --orgName='sample-org' --pluginDescription='This is a sample datasource.' --pluginType='datasource' --hasBackend --hasGithubWorkflows --hasGithubLevitateWorkflow",
|
|
37
37
|
"lint": "eslint --cache --ext .js,.jsx,.ts,.tsx ./src",
|
|
38
38
|
"lint:fix": "npm run lint -- --fix",
|
|
39
|
-
"test": "vitest",
|
|
40
|
-
"test:ci": "vitest run",
|
|
39
|
+
"test": "vitest run",
|
|
41
40
|
"typecheck": "tsc --noEmit"
|
|
42
41
|
},
|
|
43
42
|
"dependencies": {
|
|
@@ -87,5 +86,5 @@
|
|
|
87
86
|
"engines": {
|
|
88
87
|
"node": ">=20"
|
|
89
88
|
},
|
|
90
|
-
"gitHead": "
|
|
89
|
+
"gitHead": "7342c6e3b528a3e9adcc3a49c6a3fca188f6cde6"
|
|
91
90
|
}
|
|
@@ -157,7 +157,7 @@ const config = async (env): Promise<Configuration> => {
|
|
|
157
157
|
{ from: 'img/**/*', to: '.', noErrorOnMissing: true }, // Optional
|
|
158
158
|
{ from: 'libs/**/*', to: '.', noErrorOnMissing: true }, // Optional
|
|
159
159
|
{ from: 'static/**/*', to: '.', noErrorOnMissing: true }, // Optional
|
|
160
|
-
{ from: '**/query_help.md', to: '.', noErrorOnMissing: true}, // Optional
|
|
160
|
+
{ from: '**/query_help.md', to: '.', noErrorOnMissing: true }, // Optional
|
|
161
161
|
],
|
|
162
162
|
}),
|
|
163
163
|
// Replace certain template-variables in the README and plugin.json
|