I have a problem while building multiple modules as it takes so much time for building the entire project
While bundling the project i have 3 modules in it and i need to seperate the core modules from bundling every time and also is there any option of bundling independent modules on demand? Thanks
Andrei Bazavan
@rokyed
Hi guys and girls, if someone knows where the aliases are processed for the require please let me know, if not I have a feature request from you (else i would have implemented it myself), I want the aliases to be able to take an array and if requested file from alias is not present there then it should fallback to the next item in the array and so on.
Thanks :)
Héctor León
@HectorLS
Hi everybody!, some can tell me if there is a way to setup Webpack to ensure that the generated CSS file is loaded before JS, thanks in advance.
Charlie Choiniere
@nek4life
Question about tree shaking. If I use the import syntax on a file that just returns a map from a java properties file can I use destructuring to only include the messages that are being imported via destructuring?
vu minh chien
@adambet3
yes
Vilva Athiban P B
@vilvaathibanpb
@vilvaathibanpb Hello, I have babelrc, babel presets in place and I tried migrating to webpack 4 recently which on minification of build (using uglify plugin) gives a set of junk values in the minified files any thought on this?
Isac
@isacjunior
Hi guys! Someone are using the new feature webpackPrefetch in webpack 4.6? Actually, I use react-loadable. Someone can say if loadable use prefetch or preload concept ?
Hi, I'm trying to write a plugin that analyzes a specific object in the source code based on variable name. i've been trying to figure out how to use the parser for about 8 hours without any luck. i've managed to get the varDeclaration expression but couldn't figure out how to get the value of the object. the documentation is very lacking and is in correct, is there anyone that has experience with such a thing?
Calvin Wilkinson
@KinsonDigital
Hello all!!
I am having an issue using libraries generated by webpack. Any assistance would greatly be appreciated. :smile:
KuroyukiDev
@KuroyukiDev
Hi everyone, I'm new to Webpack and modularized JS development. I'm working on a Udemy lesson project that uses HTML, JS, AJAX, PHP and SQL, and I was wondering how to configure webpack.config.js to work with a MAMP server along with a webpack-dev-server. Anybody know how to set that up? I can take it from there once I have that set up.
Or better yet, is there some CLI plugin for webpack-dev-server that integrates PHP Apache server and SQL server support for localhost development?
Minanshu Singh
@kryptokinght
So i was going through the source code of the Tapable class which is the backbone of the entire plugin system of webpack. Webpack itself is made up of 100 of plugins that hook up to this event system. I was ASKING, which Javascript desgin pattern was followed in writing the Webpack source code?
Edoardo Gallo
@EdoardoGallo_twitter
Hi guys, i don't know if it's OT but: i'm trying to revert a CommonJS library to ES2015 syntax. Is there something i can use in Webpack? I know that WebPack is the exact oppose but maybe there is some feature i could use.
I also tried lebab package but it did not work due to the "unsafe" transforms on code
Terry Di luzio
@tdiluzio
Hi guys I need your opinion, I'm working with factory components and am currently building them prior to use them in a parent app.
Do you think it's a good idea to build them to production individually (what I'm doing currently)
Or to all the heavy building stuffs in the parent app?
Beknar Askarov
@askbeka
Hi, I want to replace all static es6 import declarations with dynamic import() ones, what is the best way to accomplish that? Couldn't find anything suitable on internet. I need this to safely externalise dependencies, if they are not available on page they will load it from CDN. I can make a loader, but I will not have proper source-maps, or make babel-plugin which is good but I need to combine it with webpack plugin I guess.