Skip to content

Commit 37462e8

Browse files
authored
Merge pull request #1464 from DAB0mB/fix/bundle
fix(bundle): Fix bundler not bundling local version
2 parents 2cb3598 + 6c3a663 commit 37462e8

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

packages/angular-meteor/bundle-min.sh

Lines changed: 2 additions & 2 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"
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
..

0 commit comments

Comments
 (0)