I would like to ask if the front-end has any technology that selects the corresponding modules through the interface or other methods, packages and exports the corresponding front-end files, and removes irrelevant modules ?
For example:
1: Module one
2: Function one
3: Module two
4: Style one
After selecting module one, function one and style one, export the corresponding Front-end page functions, etc.?
三叔2017-07-07 10:36:32
Webpack sharding function can be realized
https://webpack.toobug.net/zh...
曾经蜡笔没有小新2017-07-07 10:36:32
Front-end packaging is now all command line. The more common one now is webpack
. I have never seen one with UI.
Even for packaging, the demand relationship between modules is all in the code. I have never seen it need to be manually selected. Your demand is strange.