1
0
قرینه از https://github.com/matomo-org/matomo.git synced 2025-08-21 22:47:43 +00:00
Files
matomo/node_modules/chroma-js/Makefile
diosmosis b12946909f run npm update and include node_modules (#16079)
* update npm packages to latest

* fix javascript path location

* update screenshots

* Add node_modules for users that do not have npm insalled but use git to deploy.

* fix release checklist test

* Add old chroma-js + some files missing from node_module.

* remove npm install

* fix .travis.yml

* update expected screenshots

* update submodule

Co-authored-by: sgiehl <stefan@matomo.org>
2020-06-26 02:33:41 -07:00

24 خطوط
623 B
Makefile
Vendored

all: chroma.min.js
clean:
@rm chroma.js chroma.min.js license.coffee
license.coffee: LICENSE
@echo "###*" > $@ \
echo " * @license" >> $@ \
echo " *" >> $@ \
while read i \
do \
echo " * $i" >> $@ \
done < LICENSE \
echo "###" >> $@
chroma.js: license.coffee src/api.coffee src/color.coffee src/conversions/*.coffee src/scale.coffee src/limits.coffee src/colors/*.coffee src/utils.coffee src/interpolate.coffee
@coffee -o . -j $@ $^
chroma.min.js: chroma.js
@uglifyjs --comments "@license" chroma.js > $@
test: chroma.js
@npm test