Fix Issue #10: Complete lerna version synchronization across workspace

- Updated test plugin versions from 11.5.7 to 11.5.8 for consistency
- Fixed package.json main/types entries to point to dist/ instead of src/
- Applied yarn lerna version 11.5.8 --force-publish to synchronize all packages
- Root cause: Version mismatch between test plugins (11.5.7) and main packages (11.5.8)
- Solution ensures complete workspace version consistency required for lerna packaging
This commit is contained in:
jev forsberg
2025-07-29 14:10:16 -06:00
parent 742d8d2e3e
commit 7a70b35616
5 changed files with 13 additions and 11 deletions
@@ -1,6 +1,6 @@
{
"name": "@test-plugins/extensions-test-app",
"version": "11.5.7",
"version": "11.5.8",
"private": true,
"scripts": {
"build": "webpack -c ./webpack.config.ts --env production",
@@ -1,6 +1,6 @@
{
"name": "@test-plugins/grafana-e2etest-datasource",
"version": "11.5.7",
"version": "11.5.8",
"private": true,
"scripts": {
"build": "webpack -c ./webpack.config.ts --env production",
+1 -1
View File
@@ -2,4 +2,4 @@
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"npmClient": "yarn",
"version": "11.5.8"
}
}
+5 -4
View File
@@ -16,8 +16,8 @@
"url": "http://github.com/grafana/grafana.git",
"directory": "packages/grafana-e2e-selectors"
},
"main": "src/index.ts",
"types": "src/index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"main": "dist/index.js",
"module": "dist/esm/index.js",
@@ -54,5 +54,6 @@
"semver": "7.6.3",
"tslib": "2.8.1",
"typescript": "5.7.3"
}
}
},
"module": "dist/esm/index.js"
}
+5 -4
View File
@@ -13,8 +13,8 @@
"url": "http://github.com/grafana/grafana.git",
"directory": "packages/grafana-schema"
},
"main": "src/index.ts",
"types": "src/index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"main": "dist/index.js",
"module": "dist/esm/index.js",
@@ -49,5 +49,6 @@
},
"dependencies": {
"tslib": "2.8.1"
}
}
},
"module": "dist/esm/index.js"
}