jelix / minify-module
module providing a Minify features to a Jelix application.
Installs: 2 791
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 0
Open Issues: 1
Type:jelix-module
Requires
- mrclay/minify: 2.2.0
Conflicts
- jelix/jelix: <1.7.0-beta.4
This package is auto-updated.
Last update: 2024-11-14 12:49:59 UTC
README
This is a module for Jelix, providing Minify features for HTML response objects.
Minify is a library which allow to concatenate and minify CSS and JS files. It improves performance during the load of the page. This module provides plugins to integrate it into a Jelix application.
This module is for Jelix 1.7.x and higher. See the jelix/jelix repository to see its history before Jelix 1.7.
Installation
Install it by hands like any other Jelix modules, or use Composer if you installed Jelix 1.7+ with Composer.
In your project:
composer require "jelix/minify-module"
Launch the configurator for your application to enable and configure the module
php yourapp/dev.php module:configure jminify
Then run the installer
php yourapp/install/installer.php
You can use the module.
Configuring the module
In the configuration file of the application, after the installation you should
have these parameters in the jResponseHtml
section:
[jResponseHtml] plugins = minify ;concatenate and minify CSS and/or JS files : minifyCSS = off # [on|off] : concatenate/minify CSS files minifyJS = off # [on|off] : concatenate/minify JS files ; list of filenames (no path) which shouldn't be minified - coma separated : minifyExcludeCSS = "file1.css,file2.css" minifyExcludeJS = "jelix/wymeditor/jquery.wymeditor.js" ; bootstrap file for Minify. indicate a relative path to the basePath. minifyEntryPoint = minify.php
With minifyCSS
and minifyJS
you activate the "minification". You
can indicate files to NOT minify in minifyExcludeCSS
and
minifyExcludeJS
. Keep the file name jelix/wymeditor/jquery.wymeditor.js
(which is
bundled into Jelix) in minifyExcludeJS
. Wymeditor doesn't like to be concatenated with other files.
Indicated path should be
- relative to the base path of the application (without a leading /)
- or relative to the domain name (with a leading /)
Don't indicate full URL (with http://
...), they are automatically excluded.
Configuring Minify
The module install a copy a script minify.php
in your www/
directory.
If you want to choose an other name for this script, indicate its name into the
option minifyEntryPoint
.
The module installer create also minifyConfig.php
and minifyGroupsConfig.php
into the app/system
directory of your application. These are files
to set Minify native options. Read the documentation of Minify to know options.
unit tests
Unit tests are in Testapp, in the jelix/jelix repository.