-
-
Notifications
You must be signed in to change notification settings - Fork 24
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
Make folder of JS part a submodule #20
Comments
Could you explain the advantage of submodule aproach!? |
Now you have a single repo for JS and C++ parts of plugin, but they are relatively standalone: most of users don't need the C++ part of your repo, but everybody needs the JS one, and the JS part is interacting with C++ through API and is not needed in order to build. The advantage of having separate repos for that is that they can be cloned separately, so you can place JS part repo into your npp "plugins/jN/" dir, upgrade with git pull and develop in place. To install it a user just needs to clone it there. Now a user have to clone the whole repo and extract JS part from there. Another solution is to clone my repo ;) |
:) |
In fact I have never used appveyor, but I guess git submodules should do the work as long as you can trigger submodule update. |
Not a bad idea with the submodule. If you'll want to go for it, only adding an "install" phase as described in the doc should be enough. The rest of the page should not apply, I suppose, as the repo will probably not be a private one. |
Move folder with JS part (
/deploy/[Notepad++ Directory]/plugins/jN
) to separate repoMake it a submodule
Merge with https://github.com/KOLANICH/jN-npp-scripts
The text was updated successfully, but these errors were encountered: