mirror of
https://github.com/SAP/jenkins-library.git
synced 2025-04-25 12:24:42 +02:00
11 lines
215 B
JavaScript
11 lines
215 B
JavaScript
|
module.exports = function (grunt) {
|
||
|
'use strict';
|
||
|
grunt.loadNpmTasks('@sap/grunt-sapui5-bestpractice-build');
|
||
|
|
||
|
grunt.registerTask('default', [
|
||
|
'lint',
|
||
|
'clean',
|
||
|
'build'
|
||
|
]);
|
||
|
};
|