{"id":20020653,"url":"https://github.com/netcentric/fe-build","last_synced_at":"2025-10-14T09:04:39.979Z","repository":{"id":39276011,"uuid":"368131853","full_name":"Netcentric/fe-build","owner":"Netcentric","description":"All-in-one solution for modern Frontend projects, with special focus on AEM (Adobe Experience Manager)","archived":false,"fork":false,"pushed_at":"2025-03-13T21:28:51.000Z","size":1766,"stargazers_count":22,"open_issues_count":7,"forks_count":9,"subscribers_count":21,"default_branch":"main","last_synced_at":"2025-04-09T16:07:25.704Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Netcentric.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"docs/CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"docs/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-05-17T09:38:58.000Z","updated_at":"2025-03-13T15:27:52.000Z","dependencies_parsed_at":"2023-02-14T07:01:04.648Z","dependency_job_id":"dc5c6250-bd69-49aa-a042-33f9feaa1582","html_url":"https://github.com/Netcentric/fe-build","commit_stats":{"total_commits":218,"total_committers":13,"mean_commits":16.76923076923077,"dds":0.7477064220183487,"last_synced_commit":"8054cef441a4faaff502ca67ae826aae574937a8"},"previous_names":[],"tags_count":21,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Netcentric%2Ffe-build","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Netcentric%2Ffe-build/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Netcentric%2Ffe-build/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Netcentric%2Ffe-build/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Netcentric","download_url":"https://codeload.github.com/Netcentric/fe-build/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248065287,"owners_count":21041871,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-13T08:33:30.127Z","updated_at":"2025-10-14T09:04:39.868Z","avatar_url":"https://github.com/Netcentric.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# @netcentric/fe-build\n\nFrontend build tools for AEM projects.\n\n[![Version](https://img.shields.io/npm/v/@netcentric/fe-build.svg)](https://npmjs.org/package/@netcentric/fe-build)\n[![Build Status](https://github.com/netcentric/fe-build/workflows/CI/badge.svg?branch=main)](https://github.com/netcentric/fe-build/actions)\n[![CodeQL Analysis](https://github.com/netcentric/fe-build/workflows/CodeQL/badge.svg?branch=main)](https://github.com/netcentric/fe-build/actions)\n[![semver: semantic-release](https://img.shields.io/badge/semver-semantic--release-blue.svg)](https://github.com/semantic-release/semantic-release)\n[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)\n\n## Abstract\nAll-in-one solution for modern Frontend projects, with special focus on [Adobe Experience Manager](https://business.adobe.com/products/experience-manager/adobe-experience-manager.html) development (AEM). It compiles your Scss and JS source files and creates the appropriate [clientLibs](https://experienceleague.adobe.com/docs/experience-manager-65/developing/introduction/clientlibs.html?lang=en) to be included by AEM.\n\n## Getting started\nUse [npm](https://docs.npmjs.com/about-npm/) to install fe-build:\n```\nnpm i @netcentric/fe-build\n```\n\nAdd the `nc-fe-build` task in the scripts section of your package.json file:\n```json\n  \"scripts\": {\n    \"build\": \"nc-fe-build\"\n  },\n```\n\nCreate a directory named `src` and put some Scss and JS files there named \"*.source.scss\" and \"*.source.js\".\n\nCreate a file named `.febuild` file one level up from where the source code directory is with the following content:\n```javascript\nmodule.exports = {}\n```\n\nFinally, run the build task:\n```bash\nnpm run build\n```\n\n## Features\n### JavaScript\n\n- Lint source code with [ESLint](https://eslint.org/).\n- Transpilation with [Babel](https://babeljs.io/).\n- [core-js](https://github.com/zloirock/core-js) polyfills are automatically added when needed.\n- Bundled and optimized with [Webpack](https://webpack.js.org/).\n- Analyze bundles with [Webpack Bundle Analyzer](https://www.npmjs.com/package/webpack-bundle-analyzer).\n\n### CSS\n\n- Lint source code with [Stylelint](https://stylelint.io/).\n- [SASS](https://sass-lang.com/) compilation.\n- Add vendor prefixes with [Autoprefixer](https://github.com/postcss/autoprefixer).\n\n### ClientLibraries\n\n- Automatically create [clientLibrary resources](https://experienceleague.adobe.com/docs/experience-manager-65/developing/introduction/clientlibs.html?lang=en) based on the source files.\n- Include all generated CSS and JS files in the css.txt and js.txt files.\n\n## Guides\n\n+ [Configuration](./docs/configuration.md)\n+ [Recommended NPM Tasks](./docs/tasks.md)\n+ [Quick Start](./docs/quick_start.md)\n+ [Migrating to v4.0.0](./docs/migration.md)\n+ [Contributing](./docs/CONTRIBUTING.md)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnetcentric%2Ffe-build","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnetcentric%2Ffe-build","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnetcentric%2Ffe-build/lists"}