0a5ab058a6
- Angular 12 application with PrimeNG components - 5 existing Cypress e2e test suites - SCSS styling with BEM naming convention - i18n support (10 languages) - Leaflet map integration - Complete component hierarchy and routing structure This baseline will be used for Angular → React migration.
19 lines
281 B
Makefile
19 lines
281 B
Makefile
|
|
build: components index.js
|
|
@component build --dev
|
|
|
|
components: component.json
|
|
@component install --dev
|
|
|
|
clean:
|
|
rm -fr build components template.js
|
|
|
|
test: node_modules
|
|
@./node_modules/mocha/bin/mocha \
|
|
--reporter spec
|
|
|
|
node_modules: package.json
|
|
@npm install
|
|
|
|
.PHONY: clean
|