1
0
Fork 0
mirror of https://github.com/zrgn/zrgn.github.io synced 2025-06-26 13:48:34 +00:00

Add framework for creating reveal.js presentations.

This commit is contained in:
Alex Wood 2020-07-16 11:14:41 -04:00 committed by Adam Price
parent 08053c05d8
commit 80850677e1
58 changed files with 6582 additions and 34 deletions

View file

@ -9,14 +9,23 @@ module.exports = function (grunt) {
options: { destPrefix: '_sass/vendor' },
files: {
'bulma/sass': 'bulma/sass',
'bulma/bulma.sass': 'bulma/bulma.sass'
'bulma/bulma.sass': 'bulma/bulma.sass',
'reveal': 'reveal.js/css',
}
},
js: {
options: { destPrefix: 'assets/vendor/js' },
jquery: {
options: { destPrefix: 'assets/vendor/jquery' },
files: {
'jquery/jquery.min.js': 'jquery/dist/jquery.min.js',
'jquery/jquery.min.map': 'jquery/dist/jquery.min.map'
'jquery.min.js': 'jquery/dist/jquery.min.js',
'jquery.min.map': 'jquery/dist/jquery.min.map',
}
},
reveal: {
options: { destPrefix: 'assets/vendor/reveal' },
files: {
'reveal.js': 'reveal.js/dist/reveal.js',
'reveal.css': 'reveal.js/dist/reveal.css',
'plugin': 'reveal.js/plugin',
}
}
},