packages/plugins: move to plugins/

This commit is contained in:
Patrik Oldsberg
2020-03-06 14:32:41 +01:00
parent f12e7e9964
commit 49428520de
36 changed files with 15 additions and 15 deletions
+1 -1
View File
@@ -64,7 +64,7 @@ To create a new plugin, make sure you're run `yarn` to install dependencies, the
$ yarn create-plugin
```
This will prompt you to enter an ID for your plugin, and then create your plugin inside the `packages/plugins/` directory. The plugin will be automatically included in the app by modifing the app's `package.json` and `src/plugins.ts`.
This will prompt you to enter an ID for your plugin, and then create your plugin inside the `plugins/` directory. The plugin will be automatically included in the app by modifing the app's `package.json` and `src/plugins.ts`.
If you have `yarn start` already running you should be able to see the default page for your new plugin at [localhost:3000/my-plugin](http://localhost:3000/my-plugin), if you called the plugin `"my-plugin"`.