Files
meteor/tools/static-assets
Ben Newman e59e0a582a Convert \s to /s in Npm.require'd module identifiers.
This is another way of addressing the problem I attempted to fix with
f34c5ec926 earlier today.

Apparently, older versions of compiler plugin-registering packages such as
standard-minifier-css and templating-compiler still depend on older
versions of the meteor package, which may still use path.join to import
fibers/future. This can be fixed by republishing those packages, as I did
in 917b01ac5f, but I'd prefer not to
republish every compiler plugin package.

Fortunately, we can also solve the problem by being more tolerant in the
implementation of Npm.require, which is what this commit does.
2017-09-18 16:54:23 -04: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-bare - Empty App Skeleton

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

skel-full - Scaffold App Skeleton

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

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.