liferay-theme-tasks
Version:
A set of tasks for building and deploying Liferay Portal themes.
18 lines (13 loc) • 367 B
JavaScript
/**
* SPDX-FileCopyrightText: © 2017 Liferay, Inc. <https://liferay.com>
* SPDX-License-Identifier: MIT
*/
;
const project = require('../../lib/project');
const ExtendPrompt = require('../prompts/extend_prompt');
module.exports = function () {
const {gulp} = project;
gulp.task('extend', (callback) => {
ExtendPrompt.prompt(callback);
});
};