TYPO3 v15 dev-main snapshot ()

This commit is contained in:
2026-08-10 22:31:09 +02:00
commit af8cc155b5
6818 changed files with 642608 additions and 0 deletions
@@ -0,0 +1,52 @@
.. include:: /Includes.rst.txt
.. _feature-63729-1668719172:
===================================
Feature: #63729 - Introduce GruntJS
===================================
See :issue:`63729`
Description
===========
In order to unify build processes in the backend we introduce
`GruntJS <http://gruntjs.com/>`_ as a central taskrunner. It will
provide a global config that takes over the responsibility
for all build processes in the future starting with the less
files of the backend skin.
The build files are located in the *Build* folder located in the root directory.
For detailed information about setting up GruntJS please head to http://gruntjs.com/.
Initial setup
~~~~~~~~~~~~~
.. code-block:: bash
npm install
npm install -g grunt-cli
Registered Tasks
~~~~~~~~~~~~~~~~
Compiling Less files:
.. code-block:: bash
grunt less
Watching Less files:
.. code-block:: bash
grunt watch
.. index:: JavaScript