Skip to content

Commit

Permalink
Set PACKAGE_DIRS per default to include non-core packages
Browse files Browse the repository at this point in the history
  • Loading branch information
TomFreudenberg committed Oct 15, 2015
1 parent 9ab09b7 commit 0f204ad
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions meteor
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,13 @@ if [ "$METEOR_UNIVERSAL_FLAG" == "ENV" ] ; then
fi


# set ENV VAR and include non-core packages per default if $PACKAGE_DIRS
# is not set already
if [ -z "$PACKAGE_DIRS" ] && [ -d "$SCRIPT_DIR/packages/non-core" ] ; then
export PACKAGE_DIRS=$SCRIPT_DIR/packages/non-core
fi


# We used to set $NODE_PATH here to include the node_modules from the dev
# bundle, but now we just get them from the symlink at tools/node_modules. This
# is better because node_modules directories found via the ancestor walk from
Expand Down

0 comments on commit 0f204ad

Please sign in to comment.