Files
meteor/tools/static-assets
Jesse Rosenberger cba649f709 Add Newlines to end of .gitignore files, specifically the new app skel
Even though I think the fight is a bit futile, it is considered best practice to have newlines at the end of all files.  At the request of meteor/meteor#7786, this commit adds newlines to the end of the new app skeleton `.gitignore` file.  These skel files are used when generating new meteor apps so this avoids perpetuation of this problem into futrue generations. ;)

In an effort to beef up this PR, I also took the liberty of fixing the few other Meteor files which were lacking newlines (all `.gitignore` files)

Closes meteor/meteor#7786
2016-09-26 15:32:08 +03:00
..

Isobuild Static Assets

Files here are designed to be copied to the output destination of a Meteor CLI command.

Sometimes, for code sharing, the JS files can be imported by parts of the tool (like mini-files.js - it is shared between built apps and tool).

skel - App Skeleton

skel is a folder that is the skeleton of a new fresh app. It is copied to the destination on meteor create command. The important part of the skeleton is the packages it includes by default.

skel-pack - Package Skeleton

Similar to skel, skel-pack is copied on meteor create --package command.

server - Bundled App's Bootstrap

The server folder is copied by Isobuild when the app is bundled (on meteor run or meteor build). The boot.js file is the default entry point of any built Meteor app, it loads the server program and runs the files from the manifest. It also sets up the source-maps and a backdoor for meteor shell.