Create vendor file of bower dependencies using webpack4
up vote
0
down vote
favorite
I'm trying to migrate our solution from grunt to webpack4.
We want to create vendor.js from all out bower dependencies without any luck.
On the entry part we set all the keys from the bower file
entry: {
bundle: './views/index.ejs',
vendor: Object.keys(bowerPkg.dependencies)
},
On the resolve section we used bower resolve plugin (https://github.com/codewizz/bower-resolve-webpack-plugin)
resolve: {
plugins: [new BowerResolvePlugin()],
modules: ['libs'],
descriptionFiles: ['bower.json'],
extensions: ['.js', '.json', '.html'],
mainFields: ['main']
}
But it doesn't able to resolve those dependencies
Module not found: Error: Can't resolve 'underscore-query' in
Any help(or some reference for webpack4 config with bower.
Thanks
Zee
webpack bower webpack-4
add a comment |
up vote
0
down vote
favorite
I'm trying to migrate our solution from grunt to webpack4.
We want to create vendor.js from all out bower dependencies without any luck.
On the entry part we set all the keys from the bower file
entry: {
bundle: './views/index.ejs',
vendor: Object.keys(bowerPkg.dependencies)
},
On the resolve section we used bower resolve plugin (https://github.com/codewizz/bower-resolve-webpack-plugin)
resolve: {
plugins: [new BowerResolvePlugin()],
modules: ['libs'],
descriptionFiles: ['bower.json'],
extensions: ['.js', '.json', '.html'],
mainFields: ['main']
}
But it doesn't able to resolve those dependencies
Module not found: Error: Can't resolve 'underscore-query' in
Any help(or some reference for webpack4 config with bower.
Thanks
Zee
webpack bower webpack-4
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I'm trying to migrate our solution from grunt to webpack4.
We want to create vendor.js from all out bower dependencies without any luck.
On the entry part we set all the keys from the bower file
entry: {
bundle: './views/index.ejs',
vendor: Object.keys(bowerPkg.dependencies)
},
On the resolve section we used bower resolve plugin (https://github.com/codewizz/bower-resolve-webpack-plugin)
resolve: {
plugins: [new BowerResolvePlugin()],
modules: ['libs'],
descriptionFiles: ['bower.json'],
extensions: ['.js', '.json', '.html'],
mainFields: ['main']
}
But it doesn't able to resolve those dependencies
Module not found: Error: Can't resolve 'underscore-query' in
Any help(or some reference for webpack4 config with bower.
Thanks
Zee
webpack bower webpack-4
I'm trying to migrate our solution from grunt to webpack4.
We want to create vendor.js from all out bower dependencies without any luck.
On the entry part we set all the keys from the bower file
entry: {
bundle: './views/index.ejs',
vendor: Object.keys(bowerPkg.dependencies)
},
On the resolve section we used bower resolve plugin (https://github.com/codewizz/bower-resolve-webpack-plugin)
resolve: {
plugins: [new BowerResolvePlugin()],
modules: ['libs'],
descriptionFiles: ['bower.json'],
extensions: ['.js', '.json', '.html'],
mainFields: ['main']
}
But it doesn't able to resolve those dependencies
Module not found: Error: Can't resolve 'underscore-query' in
Any help(or some reference for webpack4 config with bower.
Thanks
Zee
webpack bower webpack-4
webpack bower webpack-4
asked Nov 11 at 7:00
Zee
66
66
add a comment |
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53246542%2fcreate-vendor-file-of-bower-dependencies-using-webpack4%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown