Skip to content

Commit 87b93e1

Browse files
authored
chore(deps): fix lodash import (#3494)
See DefinitelyTyped/DefinitelyTyped#12995 (comment) for context.
1 parent 901a64f commit 87b93e1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@
142142
"@types/fs-extra": "^0.0.31",
143143
"@types/glob": "^5.0.29",
144144
"@types/jasmine": "^2.2.32",
145-
"@types/lodash": "4.14.42",
145+
"@types/lodash": "^4.14.43",
146146
"@types/mock-fs": "3.6.28",
147147
"@types/node": "^6.0.36",
148148
"@types/request": "0.0.30",

packages/angular-cli/commands/serve.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
import * as assign from 'lodash/assign';
21
import * as denodeify from 'denodeify';
3-
const Command = require('../ember-cli/lib/models/command');
2+
const assign = require('lodash/assign');
43
const SilentError = require('silent-error');
54
const PortFinder = require('portfinder');
5+
const Command = require('../ember-cli/lib/models/command');
66
import ServeWebpackTask from '../tasks/serve-webpack';
77

88
PortFinder.basePort = 49152;

0 commit comments

Comments
 (0)