Skip to content

Commit

Permalink
fix order of dependency 'includes'
Browse files Browse the repository at this point in the history
  • Loading branch information
carandraug committed May 21, 2018
1 parent 93914ba commit b1b325c
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,15 @@ DIST_ARCHIVES := $(distdir).tar.gz


npm_css_dependencies = \
node_modules/bootstrap/dist/css/bootstrap.min.css \
node_modules/bootstrap/dist/css/bootstrap.min.css

## The order of this dependencies matters because it's the order that
## will be used when creating the index.html and help.html files.
npm_js_dependencies = \
node_modules/bootstrap/dist/js/bootstrap.min.js \
node_modules/chart.js/dist/Chart.min.js \
node_modules/jquery/dist/jquery.min.js \
node_modules/popper.js/dist/umd/popper.min.js
node_modules/popper.js/dist/umd/popper.min.js \
node_modules/bootstrap/dist/js/bootstrap.min.js \
node_modules/chart.js/dist/Chart.min.js


DISTFILES = \
Expand Down

0 comments on commit b1b325c

Please sign in to comment.