Skip to content

Commit

Permalink
Merge branch 'release-8.0.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Apr 14, 2022
2 parents 31b8418 + 3cbadc5 commit 92f8a51
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 26 deletions.
45 changes: 45 additions & 0 deletions views/build/grunt/bundle.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
/**
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; under version 2
* of the License (non-upgradable).
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* Copyright (c) 2022 (original work) Open Assessment Technologies SA;
*/

/**
* Bundle the extension
* @param {Object} grunt - the grunt objectt (by convention)
*/
module.exports = function (grunt) {
'use strict';

grunt.config.merge({
bundle: {
qtiitempci: {
options: {
extension: 'qtiItemPci',
dependencies: ['taoItems', 'taoQtiItem'],
bundles: [
{
name: 'qtiItemPci',
default: true,
babel: true
}
]
}
}
}
});

grunt.registerTask('qtiitempcibundle', ['bundle:qtiitempci']);
};
Loading

0 comments on commit 92f8a51

Please sign in to comment.