Download the PHP package andrewhaine/silverstripe-webpack-theme without Composer
On this page you can find all versions of the php package andrewhaine/silverstripe-webpack-theme. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download andrewhaine/silverstripe-webpack-theme
More information about andrewhaine/silverstripe-webpack-theme
Files in andrewhaine/silverstripe-webpack-theme
Package silverstripe-webpack-theme
Short Description Base SilverStripe theme with a webpack build system
License BSD-3-Clause
Informations about the package silverstripe-webpack-theme
Base SilverStripe theme with a webpack build system
Installation
Composer
This theme can be installed through composer, simply add the following line to your project's composer.json file.
If you are installing with composer it is advisable to remove the above option from your composer.json file after the initial installation in order to avoid installing duplicate themes or overriding your changes.
Manual Installation
Copy this theme into a subdirectory of your themes folder.
Usage
This theme is designed to optimise your production build by minifying assets and optimising images. Any assets referenced (explicitly or implicitly) in index.js will be compiled.
CSS
This theme supports both SCSS and Sass syntax.
The recommended entry point for all CSS is sass/style.sass, any files imported will be bundled into a single CSS file which can be included in the way you choose (Requirements API, link tag etc..).
The setup will also produce an editor.css file which is used by SilverStripe to style the TinyMCE fields in the CMS, styles imported into sass/editor.sass will be included in this file.
Linting
Linting is available from stylelint for SCSS and Sass files, the rules for the linter can be updated in .stylelintrc.yml. A full list of rules can be found here.
JavaScript
Javascript is included in the bundle in much the same way as CSS, the entry point for javascript in this theme is javascript/src/main.js.
The theme comes set up for development using ES6 Syntax but this can be adjusted accordingly by installing babel presets and changing the settings in .eslintrc.yml.
Images
Any images imported into the bundle, either directly or through a URL reference will be optimised, where possible files will be inlined using Data URIs, if an image is above 10kb it will be compressed using the image-webpack-loader and placed in the images directory (Names and extensions are preserved). Images need to be placed in the 'images' directory.
By default image compression is disabled for performance purposes - when the time comes to bundle images for production this can be re-enabled with the disable
option in webpack.common.babel.js
.
Development
In order to use the watch task you will need to tell webpack which url it should proxy when creating the development server - this is the development url you are using for your project. This option can be set in variables.js
.
The build system uses webpack dev server which allows hot reloading for speedy testing. To start the server run npm run watch
. The server will start on port 3000 you will also get a nice terminal interface courtesy of FormidableLabs.
With the server started you should then see your site updating live on localhost:3000 when any asset files are changed.
Once development is complete eject your css and minify the bundle using npm run build
. This will create the main CSS file (css/main.css) and your JS bundle (javascript/dist/main.bundle.js) which can then be included in your templates.
Signature
The system gives the ability to add a signature to the top of your css and js files, to edit the information shown or disable this feature, edit the options in variables.js
.