UNPKG

liferay-theme-tasks

Version:

A set of tasks for building and deploying Liferay Portal themes.

27 lines (20 loc) 514 B
/** * SPDX-FileCopyrightText: © 2017 Liferay, Inc. <https://liferay.com> * SPDX-License-Identifier: MIT */ 'use strict'; const project = require('../../../../lib/project'); module.exports = () => { const {gulp} = project; gulp.task( 'upgrade:dependencies:liferay-frontend-common-css', (callback) => { project.removeDependencies(['liferay-frontend-common-css']); callback(); } ); return { customTasks: ['upgrade:dependencies:liferay-frontend-common-css'], targetVersion: '7.4', }; };