Skip to content

Commit

Permalink
chore(deps): fix lodash import (#3494)
Browse files Browse the repository at this point in the history
  • Loading branch information
filipesilva authored Dec 9, 2016
1 parent 901a64f commit 87b93e1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@
"@types/fs-extra": "^0.0.31",
"@types/glob": "^5.0.29",
"@types/jasmine": "^2.2.32",
"@types/lodash": "4.14.42",
"@types/lodash": "^4.14.43",
"@types/mock-fs": "3.6.28",
"@types/node": "^6.0.36",
"@types/request": "0.0.30",
Expand Down
4 changes: 2 additions & 2 deletions packages/angular-cli/commands/serve.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import * as assign from 'lodash/assign';
import * as denodeify from 'denodeify';
const Command = require('../ember-cli/lib/models/command');
const assign = require('lodash/assign');
const SilentError = require('silent-error');
const PortFinder = require('portfinder');
const Command = require('../ember-cli/lib/models/command');
import ServeWebpackTask from '../tasks/serve-webpack';

PortFinder.basePort = 49152;
Expand Down

0 comments on commit 87b93e1

Please sign in to comment.