-
-
Notifications
You must be signed in to change notification settings - Fork 160
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: create @signalk/plugin-config package within same git project #521
chore: create @signalk/plugin-config package within same git project #521
Conversation
Move makes it easier for this github repo to be used as a monorepo and for plugin-config to be its own npm module.
Since plugin-config is its own module it should have its own ignore files. This removes old rules from root and adds them to plugin-config directory.
Need to change way we get path of the plugin-config assets. Using get-installed-path makes it easy. Server now works with plugin-config as package.
I forgot to leave a comment of what the function does.
This is ready to review. Server changed the way we get the public path of for plugin-config assets. Using new get-installed-path dependency makes it easy. Server now works with |
Script to compile main.js before publishing npm module.
When plugin-config is a package the build process is not required.
References to the plugin-config build process have been removed. As a package it is no longer required. |
… into packages-plugin-config
I don't think we need this get code. You can just use app.config.appPath |
Where would we use |
On second thought. Lets keep it. |
Can you come up with a better title. Something will make more sense to a layman in the CHANGELOG |
Do not want to install extra packages when folks npm install the plugin-config package.
Needed to make npm happy.
Move
plugin-config
to/packages/plugin-config
. This makes it easier for this github repo to be used as a "monorepo" and forplugin-config
to be its ownnpm
module.Since
plugin-config
is its own module it should have its own ignore files. This removes old rules from the root and adds them topackages/plugin-config
directory.