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:
@@ -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
@@ -2,4 +2,4 @@
|
||||
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
|
||||
"npmClient": "yarn",
|
||||
"version": "11.5.8"
|
||||
}
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
Reference in New Issue
Block a user