diff options
author | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2018-12-12 23:21:10 +0100 |
---|---|---|
committer | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2018-12-12 23:21:10 +0100 |
commit | 33e82b796e7870a9523b6e9653877a2613f8f7a2 (patch) | |
tree | 7450136c1178008d9ba17bc2408ee5f43c71e9c4 /.config | |
parent | 7b02d60829d1151a9fd1e726a0a995b92b165328 (diff) | |
download | svg.js-33e82b796e7870a9523b6e9653877a2613f8f7a2.tar.gz svg.js-33e82b796e7870a9523b6e9653877a2613f8f7a2.zip |
Release 3.0.53.0.5
Diffstat (limited to '.config')
-rw-r--r-- | .config/karma.es6.js | 2 | ||||
-rw-r--r-- | .config/rollup.tests.js | 5 |
2 files changed, 5 insertions, 2 deletions
diff --git a/.config/karma.es6.js b/.config/karma.es6.js index 7a7a875..81605cf 100644 --- a/.config/karma.es6.js +++ b/.config/karma.es6.js @@ -33,7 +33,7 @@ module.exports = function (config) { type: 'module' }, { - pattern: 'spec/spec/types/*.js', + pattern: 'spec/spec/*/*.js', included: true, type: 'module' } diff --git a/.config/rollup.tests.js b/.config/rollup.tests.js index 518be94..e524a79 100644 --- a/.config/rollup.tests.js +++ b/.config/rollup.tests.js @@ -2,7 +2,10 @@ import babel from 'rollup-plugin-babel' import multiEntry from 'rollup-plugin-multi-entry' export default { - input: ['spec/setupBrowser.js', 'spec/spec/types/*.js', 'spec/spec/utils/*.js'], + input: [ + 'spec/setupBrowser.js', + 'spec/spec/*/*.js' + ], output: { file: 'spec/es5TestBundle.js', name: 'SVGTests', |