X Tutup
Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions DEVELOPER.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,12 +145,6 @@ You can selectively build either the JS or Dart versions as follows:
* `$(npm bin)/gulp build.js`
* `$(npm bin)/gulp build.dart`

Also note that in order for the whole test suite to succeed you will need to generate the type definitions by running:

```shell
$(npm bin)/gulp docs/typings
```

To clean out the `dist` folder, run:

```shell
Expand Down
3 changes: 1 addition & 2 deletions scripts/publish/npm_publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ cd $ROOT_DIR

gulp clean
# benchpress.bundle and bundles.js will implicitly build everything we need
gulp benchpress.bundle bundles.js docs/typings
gulp benchpress.bundle bundles.js

NPM_DIR=$ROOT_DIR/dist/npm
rm -fr $NPM_DIR
Expand Down Expand Up @@ -35,7 +35,6 @@ function publishModule {
# Copy Bundles
cp -r $ROOT_DIR/dist/js/bundle/$FILES $PUBLISH_DIR/bundles
# Copy Typings
cp -r $ROOT_DIR/dist/docs/typings/angular2/$DTS_FILES $PUBLISH_DIR/bundles/typings/angular2
cp -r $ROOT_DIR/modules/angular2/typings/es6-shim/$DTS_FILES $PUBLISH_DIR/bundles/typings/es6-shim
cp -r $ROOT_DIR/modules/angular2/typings/jasmine/$DTS_FILES $PUBLISH_DIR/bundles/typings/jasmine
fi
Expand Down
X Tutup