npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

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

Read the ⚡️ Changelog!

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:

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.

  1. 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
  1. Compile Sass and JS.
npm run compile
  1. Watch files and run tasks when they change.
npm run watch
  1. Compress png and svg assets.
npm run compress
  1. Build the KSS Style guide.
npm run styleguide
  1. Lint Sass and JS files.
npm run lint
  1. 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.