Skip to content

Commit 31b0951

Browse files
DAB0mBUrigo
authored andcommitted
chore(bundle): Fix bundler not bundling local version (#30)
1 parent 911b3ef commit 31b0951

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

bundle-min.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ cd $BUNDLER_PATH
2020

2121
# Add packages
2222
echo > .meteor/packages # Delete all default packages
23-
PACKAGE_DIRS="$PROJECT_ROOT/packages" meteor add $PACKAGE
23+
METEOR_PACKAGE_DIRS="$PROJECT_ROOT/packages" meteor add $PACKAGE
2424

2525
# Build the packages
26-
PACKAGE_DIRS=$PROJECT_ROOT/packages meteor build --debug .
26+
METEOR_PACKAGE_DIRS=$PROJECT_ROOT/packages meteor build --debug .
2727
tar -zxf $BUNDLER_TEMP.tar.gz
2828

2929
OUTPUT_PATH="$DIST_PATH/$NAME-bundler-output"
@@ -46,4 +46,4 @@ npm install uglify-js
4646
cp $OUTPUT_PATH/$NAME.bundle.* $DIST_PATH
4747

4848
# Cleanup
49-
rm -rf $BUNDLER_PATH $OUTPUT_PATH
49+
rm -rf $BUNDLER_PATH $OUTPUT_PATH

packages/angular-meteor-auth

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
..

0 commit comments

Comments
 (0)