Skip to content

Commit 2ebc74d

Browse files
committed
fix(npm_publish): update transitive typings provided in npm distribution
1 parent c7e9f86 commit 2ebc74d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

scripts/publish/npm_publish.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ function publishModule {
3030
if [ $NAME = "angular2" ]; then
3131
# Publish bundles and typings
3232
mkdir -p $PUBLISH_DIR/bundles/typings/angular2
33-
mkdir -p $PUBLISH_DIR/bundles/typings/es6-promise
34-
mkdir -p $PUBLISH_DIR/bundles/typings/rx
33+
mkdir -p $PUBLISH_DIR/bundles/typings/es6-shim
34+
mkdir -p $PUBLISH_DIR/bundles/typings/jasmine
3535
# Copy Bundles
3636
cp -r $ROOT_DIR/dist/js/bundle/$FILES $PUBLISH_DIR/bundles
3737
# Copy Typings
3838
cp -r $ROOT_DIR/dist/docs/typings/angular2/$DTS_FILES $PUBLISH_DIR/bundles/typings/angular2
39-
cp -r $ROOT_DIR/modules/angular2/typings/es6-promise/$DTS_FILES $PUBLISH_DIR/bundles/typings/es6-promise
40-
cp -r $ROOT_DIR/modules/angular2/typings/rx/$DTS_FILES $PUBLISH_DIR/bundles/typings/rx
39+
cp -r $ROOT_DIR/modules/angular2/typings/es6-shim/$DTS_FILES $PUBLISH_DIR/bundles/typings/es6-shim
40+
cp -r $ROOT_DIR/modules/angular2/typings/jasmine/$DTS_FILES $PUBLISH_DIR/bundles/typings/jasmine
4141
fi
4242

4343
if [ $NAME = "benchpress" ]; then

0 commit comments

Comments
 (0)