diff options
Diffstat (limited to 'apps/accessibility/Makefile')
-rw-r--r-- | apps/accessibility/Makefile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/apps/accessibility/Makefile b/apps/accessibility/Makefile new file mode 100644 index 00000000000..fcc49a13421 --- /dev/null +++ b/apps/accessibility/Makefile @@ -0,0 +1,26 @@ +all: dev-setup build-js-production + +dev-setup: clean clean-dev npm-init + +npm-init: + npm install + +npm-update: + npm update + +build-js: + npm run dev + +build-js-production: + npm run build + +watch-js: + npm run watch + +clean: + rm -f js/accessibility.js + rm -f js/accessibility.js.map + +clean-dev: + rm -rf node_modules + |