From c2e50623c684755afcf8488c24452c7ff396f652 Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Thu, 27 Aug 2020 09:19:13 +0200 Subject: [PATCH] explain how to update js packages in views --- doc/README.npm | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 doc/README.npm diff --git a/doc/README.npm b/doc/README.npm new file mode 100644 index 000000000..382f1785b --- /dev/null +++ b/doc/README.npm @@ -0,0 +1,16 @@ +Installation of external js packages +------------------------------------- + +All javascript was located in styles/bootstrap until SeedDMS 5.1.18 and 6.0.11. +Since 5.1.19 and 6.0.12 most of it has moved into the view at views/boostrap/vendors +and is no longer placed in git but must be installed by npm and grunt. + +Run + +`npm install` + +and afterwards + +`grunt` + +to download the js packages and copy them into the new location.