Commit 67e45a1d by Ryan McKinley Committed by GitHub

Plugins: do not publish bundled plugins to npm (#23401)

parent 7425f9b4
......@@ -20,6 +20,7 @@ const bundleManagedPluginsRunner: TaskRunner<BundeManagedOptions> = async () =>
for (const plugin of plugins) {
process.chdir(`${MANAGED_PLUGINS_PATH}/${scope}/${plugin}`);
try {
console.log(`[${scope}]: ${plugin} building...`);
await execa('yarn', ['dev']);
console.log(`[${scope}]: ${plugin} bundled`);
} catch (e) {
......
......@@ -2,6 +2,7 @@
"name": "@grafana-plugins/input-datasource",
"version": "6.6.0-pre",
"description": "Input Datasource",
"private": true,
"repository": {
"type": "git",
"url": "http://github.com/grafana/grafana.git"
......@@ -15,8 +16,8 @@
"author": "Grafana Labs",
"license": "Apache-2.0",
"devDependencies": {
"@grafana/data": "^6.6.0-pre",
"@grafana/ui": "^6.6.0-pre",
"@grafana/toolkit": "^6.6.0-pre"
"@grafana/data": "^7.0.0-pre",
"@grafana/ui": "^7.0.0-pre",
"@grafana/toolkit": "^7.0.0-pre"
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment