Frontend build tools for AEM projects.
All-in-one solution for modern Frontend projects, with special focus on Adobe Experience Manager development (AEM). It compiles your Scss and JS source files and creates the appropriate clientLibs to be included by AEM.
Use npm to install fe-build:
npm i @netcentric/fe-build
Add the nc-fe-build
task in the scripts section of your package.json file:
"scripts": {
"build": "nc-fe-build"
},
Create a directory named src
and put some Scss and JS files there named ".source.scss" and ".source.js".
Create a file named .febuild
file one level up from where the source code directory is with the following content:
module.exports = {}
Finally, run the build task:
npm run build