mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Include npm related files into Makefile and .gitignore
Extedned Makefile in install/ui - $ make clean-local removes npm related files in the install/ui directory Add node_modules and package-lock.json into .gitignore Fixes: https://pagure.io/freeipa/issue/7278 Reviewed-By: Christian Heimes <cheimes@redhat.com>
This commit is contained in:
parent
8aca1fe72a
commit
0f28c7e32e
6
.gitignore
vendored
6
.gitignore
vendored
@ -96,6 +96,12 @@ freeipa2-dev-doc
|
||||
/init/tmpfilesd/ipa.conf
|
||||
|
||||
!/install/ui/doc/Makefile.in
|
||||
/install/ui/node_modules/
|
||||
/install/ui/package-lock.json
|
||||
# package-lock file can be commited, but it makes sense for npm packages.
|
||||
# It stores informations about changes in node_modules. For now it is not
|
||||
# very useful
|
||||
# More info: https://docs.npmjs.com/files/package-lock.json
|
||||
/install/ui/release
|
||||
/install/ui/css/ipa.css
|
||||
/install/ui/src/dojo
|
||||
|
@ -32,3 +32,6 @@ EXTRA_DIST = \
|
||||
|
||||
install-data-hook:
|
||||
$(INSTALL) -d -m 755 $(DESTDIR)$(appdir)/js/plugins
|
||||
|
||||
clean-local:
|
||||
rm -rf package-lock.json node_modules
|
||||
|
Loading…
Reference in New Issue
Block a user