Clarification on what to VCS-ignore and what to commit? #41
-
Setting up jdeploy on a small project for which it seems absolutely perfect (https://github.com/paul-griffith/kindling) Do I ignore both subfolders and all their contents, and only commit the root |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Both the jdeploy-bundle and jdeploy directories can be kept out of version control. The jdeploy directory will contain build outputs from creating bundles. (if you have the bundles or installers properties defined) in the jdeploy object of the package.json The jdeploy-bundle directory includes all of the files that are published to npm when you run "publish". Both of these are transient build artifacts that will be regenerated each time you build - so no need to have them in version control. |
Beta Was this translation helpful? Give feedback.
Both the jdeploy-bundle and jdeploy directories can be kept out of version control.
The jdeploy directory will contain build outputs from creating bundles. (if you have the bundles or installers properties defined) in the jdeploy object of the package.json
The jdeploy-bundle directory includes all of the files that are published to npm when you run "publish". Both of these are transient build artifacts that will be regenerated each time you build - so no need to have them in version control.