add the debug plugin

Hello ! I made this PR to add my debug plugin, it will help plugin devs debugging their plugins, and remix devs testing the plugin-api !
Also sources are available [here](https://github.com/pldespaigne/remix-debug-plugin) if you want to have a look.
pull/1/head
pldespaigne 5 years ago committed by GitHub
parent b0041000df
commit 2ef19fe40f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 11
      src/remixAppManager.js

@ -179,6 +179,17 @@ export class RemixAppManager extends PluginEngine {
icon: 'https://image.flaticon.com/icons/svg/1570/1570493.svg',
location: 'sidePanel'
}
const debugPlugin = {
name: 'debugPlugin',
displayName: 'Debug Tools for Remix plugins',
description: 'Easily test and debug your plugins !',
methods: ['sayHello', 'sayMyName', 'sayOurNames'], // test calls with 0, 1, and 2 args
events: [],
version: '0.1.0-alpha',
url: 'https://remix-debug-a.surge.sh',
icon: 'https://remix-debug-a.surge.sh/icon.png',
location: 'sidePanel'
}
return [
new IframePlugin(pipeline),
new IframePlugin(vyper),

Loading…
Cancel
Save