Copprhead - For my TrackViewer plugin, I need t...
For my TrackViewer plugin, I need to configure my ng build to output the correct file/folder structure as spec'd for a SK plugin. Currently I have the viewer in one repo as standalone app and the plugin in another repo, where I just copy the output of the viewer build. (That's what I 'npm publish'). It would be better to have it all in one repo with a 'skplugin' and a 'standalone' build target. Can anyone recommend examples or docs?
2 Replies
Here is the actual reference to what signalk-server expects for plugin paths https://github.com/SignalK/signalk-server/blob/master/src/interfaces/webapps.js#L54
basically the path would be /public/index.html and then every resource is loaded from there.
Angular supports output directory via angular.json or the cli flag --output-path
I assume you're using Angular given the reference to
ng build
?
If so Freeboard-SK repo is a web app and plugin so you can look at angular.json and tsconfig-helper.json for reference.