Skip to content

Commit

Permalink
fix(build): fixed prod build webpack config
Browse files Browse the repository at this point in the history
  • Loading branch information
valorkin committed Jul 11, 2016
1 parent 25f6ffd commit 753cc67
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@

### BREAKING CHANGES

* dropdown: * dropdown property `disabled` renamed to `isDisabled`

* dropdown: dropdown property `disabled` renamed to `isDisabled`
* ng2-bootstrap: missprint MODAL_DIRECTVES renamed to MODAL_DIRECTIVES


<a name="1.0.17"></a>
Expand Down
4 changes: 2 additions & 2 deletions components/typeahead/typeahead.directive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ import {TypeaheadUtils} from './typeahead-utils';
import {TypeaheadContainerComponent} from './typeahead-container.component';
import {TypeaheadOptions} from './typeahead-options.class';

import {Observable} from 'rxjs/Rx';

import 'rxjs/add/observable/from';
import 'rxjs/add/operator/debounceTime';
import 'rxjs/add/operator/filter';
import 'rxjs/add/operator/map';
import 'rxjs/add/operator/mergeMap';
import 'rxjs/add/operator/toArray';

import {Observable} from 'rxjs/Observable';

import {global} from '@angular/core/src/facade/lang';
/* tslint:disable */
const KeyboardEvent = (global as any).KeyboardEvent as KeyboardEvent;
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"flow.lint": "npm run flow.eslint && npm run flow.tslint",
"flow.changelog": "./node_modules/.bin/conventional-changelog -i CHANGELOG.md -s -p angular -v",
"flow.github-release": "./node_modules/.bin/conventional-github-releaser -p angular",
"flow.build:prod": "NODE_ENV=production ./node_modules/.bin/webpack --progress --color",
"flow.build:prod": "NODE_ENV=production ./node_modules/.bin/webpack --progress --color --display-error-details --display-cached",
"flow.build:dev": "./node_modules/.bin/webpack --progress --color",
"flow.serve:dev": "./node_modules/.bin/webpack-dev-server --hot --inline --colors --display-error-details --display-cached",
"flow.serve:prod": "NODE_ENV=production ./node_modules/.bin/webpack-dev-server --hot --inline --colors --display-error-details --display-cached",
Expand Down Expand Up @@ -87,7 +87,7 @@
"gulp-tslint": "5.0.0",
"lite-server": "2.2.0",
"marked": "0.3.5",
"ng2-webpack-config": "github:valor-software/ng2-webpack-config",
"ng2-webpack-config": "0.0.3",
"pre-commit": "1.1.3",
"reflect-metadata": "0.1.2",
"require-dir": "0.3.0",
Expand Down
3 changes: 1 addition & 2 deletions typings.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"dependencies": {
"moment": "registry:npm/moment#2.10.5+20160211003958",
"webpack": "registry:npm/webpack#1.12.9+20160219013405"
"webpack": "registry:npm/webpack#1.12.9+20160418172948"
},
"devDependencies": {},
"globalDependencies": {
Expand Down

0 comments on commit 753cc67

Please sign in to comment.