@grafana/create-plugin 4.4.2 → 4.4.3
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,15 @@
|
|
|
1
|
+
# v4.4.3 (Thu Mar 28 2024)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Create Plugin: Update default yarn version to 1.22.22 [#839](https://github.com/grafana/plugin-tools/pull/839) ([@jackw](https://github.com/jackw))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Jack Westbrook ([@jackw](https://github.com/jackw))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v4.4.2 (Thu Mar 28 2024)
|
|
2
14
|
|
|
3
15
|
#### 🐛 Bug Fix
|
|
@@ -6,7 +6,7 @@ const NPM_LOCKFILE = 'package-lock.json';
|
|
|
6
6
|
const PNPM_LOCKFILE = 'pnpm-lock.yaml';
|
|
7
7
|
const YARN_LOCKFILE = 'yarn.lock';
|
|
8
8
|
const SUPPORTED_PACKAGE_MANAGERS = ['npm', 'yarn', 'pnpm'];
|
|
9
|
-
const DEFAULT_PACKAGE_MANAGER = { packageManagerName: 'yarn', packageManagerVersion: '1.22.
|
|
9
|
+
const DEFAULT_PACKAGE_MANAGER = { packageManagerName: 'yarn', packageManagerVersion: '1.22.22' };
|
|
10
10
|
export function getPackageManagerFromUserAgent() {
|
|
11
11
|
const agent = process.env.npm_config_user_agent;
|
|
12
12
|
if (!agent) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grafana/create-plugin",
|
|
3
|
-
"version": "4.4.
|
|
3
|
+
"version": "4.4.3",
|
|
4
4
|
"repository": {
|
|
5
5
|
"directory": "packages/create-plugin",
|
|
6
6
|
"url": "https://github.com/grafana/plugin-tools"
|
|
@@ -87,5 +87,5 @@
|
|
|
87
87
|
"engines": {
|
|
88
88
|
"node": ">=20"
|
|
89
89
|
},
|
|
90
|
-
"gitHead": "
|
|
90
|
+
"gitHead": "1555b0a18fb078459d9baa81b026455c14ef5359"
|
|
91
91
|
}
|
|
@@ -7,7 +7,7 @@ const NPM_LOCKFILE = 'package-lock.json';
|
|
|
7
7
|
const PNPM_LOCKFILE = 'pnpm-lock.yaml';
|
|
8
8
|
const YARN_LOCKFILE = 'yarn.lock';
|
|
9
9
|
const SUPPORTED_PACKAGE_MANAGERS = ['npm', 'yarn', 'pnpm'];
|
|
10
|
-
const DEFAULT_PACKAGE_MANAGER = { packageManagerName: 'yarn', packageManagerVersion: '1.22.
|
|
10
|
+
const DEFAULT_PACKAGE_MANAGER = { packageManagerName: 'yarn', packageManagerVersion: '1.22.22' };
|
|
11
11
|
|
|
12
12
|
export type PackageManager = {
|
|
13
13
|
packageManagerName: string;
|