2019-01-23 15:05:05 +00:00
|
|
|
// New copy task for font files and config.json.
|
2018-06-07 09:22:51 +00:00
|
|
|
module.exports = {
|
2018-07-26 09:32:11 +00:00
|
|
|
// Override Ionic copyFonts task to exclude Roboto and Noto fonts.
|
|
|
|
copyFonts: {
|
|
|
|
src: ['{{ROOT}}/node_modules/ionicons/dist/fonts/**/*'],
|
|
|
|
dest: '{{WWW}}/assets/fonts'
|
|
|
|
},
|
2018-06-07 09:22:51 +00:00
|
|
|
copyFontAwesome: {
|
|
|
|
src: ['{{ROOT}}/node_modules/font-awesome/fonts/**/*'],
|
|
|
|
dest: '{{WWW}}/assets/fonts'
|
2019-01-23 15:05:05 +00:00
|
|
|
},
|
|
|
|
copyConfig: {
|
|
|
|
src: ['{{ROOT}}/src/config.json'],
|
|
|
|
dest: '{{WWW}}/'
|
2019-10-09 09:38:12 +00:00
|
|
|
},
|
2019-11-26 12:34:43 +00:00
|
|
|
copyMathJaxMain: {
|
|
|
|
src: ['{{ROOT}}/node_modules/mathjax/*.js'],
|
2019-10-09 09:38:12 +00:00
|
|
|
dest: '{{WWW}}/lib/mathjax'
|
|
|
|
},
|
2019-11-26 12:34:43 +00:00
|
|
|
copyMathJaxConfig: {
|
|
|
|
src: ['{{ROOT}}/node_modules/mathjax/config/**/*'],
|
|
|
|
dest: '{{WWW}}/lib/mathjax/config'
|
|
|
|
},
|
|
|
|
copyMathJaxExtensions: {
|
|
|
|
src: ['{{ROOT}}/node_modules/mathjax/extensions/**/*'],
|
|
|
|
dest: '{{WWW}}/lib/mathjax/extensions'
|
|
|
|
},
|
|
|
|
copyMathJaxFonts: {
|
|
|
|
src: ['{{ROOT}}/node_modules/mathjax/fonts/**/*'],
|
|
|
|
dest: '{{WWW}}/lib/mathjax/fonts'
|
|
|
|
},
|
|
|
|
copyMathJaxJax: {
|
|
|
|
src: ['{{ROOT}}/node_modules/mathjax/jax/**/*'],
|
|
|
|
dest: '{{WWW}}/lib/mathjax/jax'
|
|
|
|
},
|
|
|
|
copyMathJaxLocalization: {
|
|
|
|
src: ['{{ROOT}}/node_modules/mathjax/localization/**/*'],
|
|
|
|
dest: '{{WWW}}/lib/mathjax/localization'
|
|
|
|
},
|
2018-06-07 09:22:51 +00:00
|
|
|
};
|