September 2018
Intermediate to advanced
328 pages
9h 10m
English
The application uses Version 4 of Webpack (the most recent version as of writing this) to build our application. We need to use Webpack plugins to load the various file types used in the application and Babel to utilize newer JavaScript features. The following snippet lists the devDependencies we're using in the project (taken from package.json):
..."devDependencies": { "@babel/core": "^7.0.0-rc.1", "@babel/preset-env": "^7.0.0-rc.1", "babel-loader": "^8.0.0-beta.4", "cpp-wasm-loader": "0.7.7", "css-loader": "1.0.0", "file-loader": "1.1.11", "html-loader": "0.5.5", "html-webpack-plugin": "3.2.0", "mini-css-extract-plugin": "0.4.1", "rimraf": "2.6.2", "webpack": "4.16.5", "webpack-cli": "3.1.0", "webpack-dev-server": ...Read now
Unlock full access