From 0c020f222e84f5837ced99c4f83337b1d4d36058 Mon Sep 17 00:00:00 2001 From: Shavonn Brown Date: Fri, 28 Feb 2020 11:27:45 -0500 Subject: [PATCH] canary 404 previous versions (#22495) --- packages/grafana-toolkit/README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/grafana-toolkit/README.md b/packages/grafana-toolkit/README.md index 10b063b8487..ff170494009 100644 --- a/packages/grafana-toolkit/README.md +++ b/packages/grafana-toolkit/README.md @@ -231,6 +231,9 @@ module.exports = { ### How do I add third-party dependencies that are not npm packages? Put them in the `static` directory in the root of your project. The `static` directory is copied when the plugin is built. +### I am getting this message when I run yarn install: `Request failed \"404 Not Found\"` +If you are using version `canary`, this error occurs because a `canary` release unpublishes previous versions leaving `yarn.lock` outdated. Remove `yarn.lock` and run `yarn install` again. + ### I am getting this message when I run my plugin: `Unable to dynamically transpile ES module A loader plugin needs to be configured via SystemJS.config({ transpiler: 'transpiler-module' }).` This error occurs when you bundle your plugin using the `grafana-toolkit plugin:dev` task and your code comments include ES2016 code.