mirror of
https://github.com/SAP/jenkins-library.git
synced 2025-01-04 04:07:16 +02:00
db5022a4ff
This scenario builds a UI5 app and deploys it to SAP Cloud Platform (neo).
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'
|
|
]);
|
|
};
|