generator-koality-theme
v2.0.6
Published
Yeoman generator for creating Drupal 8 component based themes.
Downloads
9
Readme
Koality D8 Theme Generator
This is a fork of the Media Current D8 Theme Generator. At this point most all code and features are thanks to all the hard work they have done. The main differences at this point are the following features:
- Auto add component libraries to the theme's library definition list which saves some key strokes
- Added the Koality Flexbox Grid as an install option
Yeoman generator for Drupal Themes - lets you quickly set up a Drupal 8 theme with sensible defaults and best practices.
What's New
Links
Usage
While the koality-theme generator can be run anywhere, it's happiest when it's run from an empty directory you'd like to become your theme.
I.E.
themes/custom/my_awesome_theme
First a note about using Node.js via NVM
While not a requirement we like to use NVM to manage the version of Node per project. Here's a quick one liner that will create a .nvmrc
file and install the latest stable version of Node using NVM.
nvm install stable | grep -ohe 'v[0-9]*\.[0-9]*\.[0-9]*' | head -1 > .nvmrc && nvm use
Getting Started
There are two ways to install and use the theme generator:
1. Use npx
This is the recommended way of running the theme generator.
If you're using [email protected]
or newer you already have npx available on the command line.
npx allows you to run one off commands using the latest version of a package without installing it globally.
npx -p yo -p generator-koality-theme -c 'yo koality-theme'
Tools like this you only run once every so often. By the time you need to run it again it'll be so far out of date you'll have to update it.
2. Install yo
and generator-koality-theme
globally:
This is NOT the recommended way of running the theme generator.
If you're using an older version of npm or just want to install it globally:
npm install -g yo generator-koality-theme
Run yo koality-theme
:
yo koality-theme
To see which generators and subgenerators you have, run yo --help
.
Update the generator as needed.
npm update -g generator-koality-theme
Generators
The koality-theme
generator makes use of several subgenerators. Each of these can be called individually.
Available generators:
- koality-theme (aka koality-theme:app, the main app)
- koality-theme:component
- koality-theme:js-behavior
- koality-theme:kss-style-guide
App
Main generator
Sets up a new theme, generating all the boilerplate you need to get started. The app generator also adds normalize and sample components.
Example:
npx -p yo -p generator-koality-theme -c 'yo koality-theme'
Or:
yo koality-theme
Component
Generates component boiler plate based on whatever name you pass it. Please delete whatever you don't need. If you haven't modified it, you don't need it.
Example:
npx -p yo -p generator-koality-theme -c 'yo koality-theme:component "Site Logo"'
Or:
yo koality-theme:component 'Site Logo'
This would generate the following files:
- components/site-logo/site-logo.scss
- components/site-logo/site-logo.json
- components/site-logo/site-logo.twig
JS Behavior
Generates a Drupal JS behavior based on whatever component file name you pass it.
Example:
npx -p yo -p generator-koality-theme -c 'yo koality-theme:js-behavior "site-logo"'
Or:
yo koality-theme:js-behavior 'site-logo'
By default this will put the new behavior in the components directory. For example if
the component name you passed it was site-logo
, it will generate a new behavior within:
src/components/site-logo/site-logo.es6.js
.
The generated file is ES6 / ES2015 ready and can be compiled by the provided build tools.
KSS Style Guide
Generates a KSS Node style guide. You must pass it a name and a machine name for the theme if run independently of the main app. If run by itself this subgenerator has no way to modify your existing gulpfile.js
Instead it will provide code you can copy and paste into your gulpfile.js
for it to work correctly.
Example:
npx -p yo -p generator-koality-theme -c 'yo koality-theme:kss-style-guide "Super Sweet Theme" "super_sweet_theme"'
Or:
yo koality-theme:kss-style-guide 'Super Sweet Theme' 'super_sweet_theme'
Use --help
to see all usage info.
Example:
npx -p yo -p generator-koality-theme -c 'yo koality-theme:kss-style-guide --help'
Or:
yo koality-theme:kss-style-guide --help
The New Theme
Sass & Gulp
Currently your new theme uses libSass and Gulp. While you can add whichever Gulp plugins you'd like, by default only the basics are provided.
- Gulp Sass
- Gulp Autoprefixer
- Browser Sync
- Source Maps
- Gulp Sass lint
- Gulp Eslint
- Gulp Babel
- Gulp imagemin
If you're not using [email protected]
or later (which generates a lockfile package-lock.json
) consider using shrinkwrap.
After you've got the Gulp file modified to your hearts content, shrinkwrap the dependencies so everyone uses the exact same node modules.
npm shrinkwrap --save-dev
Now running npm install
will download the node modules specified in the npm-shrinkwrap.json file.
Go Team
Provided by default are seven npm scripts that point to Gulp tasks. We run gulp through npm scripts so the build tools can change without the user ever knowing.
- Run the default build task (gulp in this instance) and everything in it.
This is the equivalent to running
gulp
on the command line with Gulp installed globally.
npm run build
- Compile Sass and JS.
npm run compile
- Watch files and run tasks when they change.
npm run watch
- Compress png and svg assets.
npm run compress
- Build the KSS Style guide.
npm run styleguide
- Lint Sass and JS files.
npm run lint
- Delete compiled Sass, JS and style guide files from the /dist directory.
npm run clean
Contributing
Would you like to contribute? Want to make a few changes or fix a bug? COME ON OVER!
Clone down this repo:
[email protected]:CodeKoalas/koality-drupal-theme-generator.git
Remove generator-koality-theme
if you have previously installed it:
Tip: use npm ls -g -depth=0
to see what global node modules are installed.
npm uninstall generator-koality-theme -g
From the generator root directory link your local generator files to npm:
npm link
Now whenever you run yo koality-theme
it'll use your locally cloned koality-theme generator. Any updates done to the generator can be tested in real time.
Break off a feature branch dive right in. After you've got something you'd like to add, push back to the repo and pull request against master.