Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removing crypto filter from config #1550

Closed
wants to merge 1 commit into from
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
3 changes: 1 addition & 2 deletions addon/ng2/models/webpack-build-common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,13 +75,12 @@ export function getWebpackCommonConfig(projectRoot: string, sourceDir: string) {
}),
new CopyWebpackPlugin([{
context: path.resolve(projectRoot, './public'),
from: '**/*',
from: '**/*',
to: path.resolve(projectRoot, './dist')
}])
],
node: {
global: 'window',
crypto: 'empty',
module: false,
clearImmediate: false,
setImmediate: false
Expand Down
1 change: 0 additions & 1 deletion addon/ng2/models/webpack-build-development.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ export const getWebpackDevConfigPartial = function(projectRoot: string, sourceDi
},
node: {
global: 'window',
crypto: 'empty',
process: true,
module: false,
clearImmediate: false,
Expand Down
1 change: 0 additions & 1 deletion addon/ng2/models/webpack-build-production.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ export const getWebpackProdConfigPartial = function(projectRoot: string, sourceD
},
node: {
global: 'window',
crypto: 'empty',
process: true,
module: false,
clearImmediate: false,
Expand Down
1 change: 0 additions & 1 deletion addon/ng2/models/webpack-build-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@ const getWebpackTestConfig = function(projectRoot, sourceDir) {
node: {
global: 'window',
process: false,
crypto: 'empty',
module: false,
clearImmediate: false,
setImmediate: false
Expand Down