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

grunt-layered-themes

v0.1.7

Published

Plugin framework for CSS themes.

Downloads

4

Readme

Layered-themes for Grunt

Plugin framework for CSS themes. Theme engines are comming as plugins. Combine with any CSS post-process for unlimited power (LESS, SASS, Stylus, Rework, autoprefixer, or other).

Why to use it?

  • Organize CSS rules in small and easy to understand snippets;
  • Try your CSS with different set of variables;
  • Combine snippets for good looking themes;
  • Apply media queries by combining different themes;
  • Change final code without loss of information;
  • Combine with ANY preprocessor for pushing boundaries of what is possible to the limit of imagination;

Welcome Examples

  • Chunks: Automatic accumulative prefixes. Layered themes will aggregate content of 'product-header.css' and 'product-footer.css' and will provide one result file 'product.css';
  • MQ delimiters: Configuration file has such a snippet:
 "resolution"   : { 
              "mobile" : "500" 
            , "hq"     : "1000" 
             }

This code explains that we have 3 optional media queries. From 0 to 500px, from 501 to 1000px, from 1000px to infinity. If your mobile design should be applied up to 700px you can change just mobile border value:

   "resolution" : { 
              "mobile" : "700" 
            , "hq"     : "1000" 
           }
  • Apply themes: Again from configuration file
 "themes" : { 
            "default" : "desk"
           , "tablet" : "mini"
           , "mobile" : "mini"
         } 

Code explains that mobile and tablet devices will use same CSS theme - 'mini'. Desktop was not mentioned that's why will use default CSS theme - desk. Framework will create media queries (MQ) for you. From 0 to HQ for 'mini' CSS rules and other from HQ to infinity for desktop rules.

Installation

Install 'Layered Themes' framework:

npm install grunt-layered-themes --save-dev

'Layered Themes' framework is coming with no engines preinstalled. Install them or write your custom configration*.

npm install layered-themes-3devices --save-dev

Example shows how to install 3devices theme engine. You can select any other engine or write one by yourself.

Load npm task in 'gruntfile.js':

grunt.loadNpmTasks('grunt-layered-themes');

Add grunt configuration lines:

layered_themes : {
                      task : {
                                options : {
                                              configFile : '_config.json'
                                            , src        : 'css-dev'
                                            , target     : 'css'
                                        } ,
                           }
  • src: CSS development folder. Contain all CSS theme folders;
  • target: framework will write result in this folder
  • configFile: path to specific engine configuration file. Engine name, resolutions and theme organization are set into it.

Configuration file is simple 'json' file and here is the minimal content needed:


{
   "engine"       : "layered_themes_3devices"
 , "resolution"   : { 
               "mobile" : "500" 
             , "hq"     : "1000" 
              }
 , "themes"       : { 
                "default" : "desk"
            }
}

Engine attribute contains name of the theme engine or link to your custom engine file. Installation complete!

How it works?

  1. Read settings from configuration file(_config.json) and prepare the framework configuration;
  2. Start the engine. Engine prepares list of rules related to result files (content, media queries, folders). This set of rules is named 'save matrix';
  3. Collect content from default theme. Apply key-concatinaion in default theme content. Fulfil 'content keys' table.
  4. Collect content from other themes according 'content keys' table. Themes that are not in use are completly ignored;
  5. Normalize 'save matrix' for computer use;
  6. Save files according rules provided by 'save matrix';

Dictionary

###Content Key/Key Filename or file prefix. Keys are simpliest instruction for file concatinination inside the theme. Content keys from default theme form 'content key table'. Other theme keys that are not in 'content key table' will be ignored.

      filename.css          file-name.css           file-header.css    file.css
          |                   |                       |                  |
      key 'filename'       key 'file'                key 'file'        key 'file'

Filename will be filename in result folder. 'file.css' will combine content of file.css,file-name.css,file-header.css;

###Suffix Option to organize content from same key on different way. Include different variables and libraries or set different media queries. Suffixes are controlled by save matrix object.

###Theme Full set of CSS files closed in one folder. Name of the theme is name of the folder. All themes are subfolders of 'src' folder;

###Save Matrix Set of rules about combining content, media queries and folders. Save matrix is coming as a result of theme engine;

###Theme engine Algorithm that provide as a result 'save matrix'. The simplest engine is just manual edit of 'save matrix';

###Slave Themes All theme names used in congiguration that are not used as theme default.

###MainKey Internal framework mechanism provides auto renaming of mainKey. MainKey is content key with name of the theme. Default renaming is set to 'main'. Example:

 |-desk|
 |     |-contact.css
 |     |-product.css
 |     |-desk-header.css
 |     |-mini-slave.css
 |
 |-mini|
       |-desk-slave.css
       |-mini-all.css

If theme 'desk' is set as default:

  • 'desk' content key (desk-header.css) will become 'main' content key.
  • Theme 'mini' is slave theme and will convert 'desk' content key(desk-slave.css) as 'main'.

If theme 'mini' is set as default:

  • 'mini' content key (mini-all.css) will become 'main' content key.
  • Theme 'desk' is slave theme and will transform 'mini' key(mini-slave.css) as 'main'.

MainKey is an abstraction level that provides option combine themes as default or slaves without heavy refactoring process. It's also provides a visual clue how themes are connected.

Read More

Release History

0.1.7 (2015-01-31)

  • [x] bug-fix : Loading custom engine starts from npm module folder. Should starts from project's root folder;
  • [x] Error message if plugin engine doesn't exists;

0.1.6 (2015-01-27)

  • [x] npmignore file added;
  • [x] Documentation update;
  • [ ] Bug: Loading custom engine starts from npm module folder. Should starts from project's root folder;

0.1.5 (2015-01-25)

  • [x] Documentation restructuring;
  • [ ] Bug: Loading custom engine starts from npm module folder. Should starts from project's root folder;

0.1.4 (2015-01-25)

  • [x] Documentation improvement;
  • [x] Configuration access to 'mainKey';
  • [ ] Bug: Loading custom engine starts from npm module folder. Should starts from project's root folder;