rework-clone

0.1.3 • Public • Published

rework-clone

NPM version Build status devDependency status peerDependency status

This module clones properties from one rule set to another, unlike rework-inherit (rework.extend()) which concatenates the selectors.

Don’t copy anything and everything! Think when you need to inherit and when to clone.

Example

.a {
  background: red
}
.b {
  clone: .a;
}

yields:

.a {
  background: red;
}
.b {
  background: red;
}

Usage

var clone = require('rework-clone');
 
var css = rework(inputCSS)
  .use(clone(options))
  .toString();

Options

This is only one option: regexp to replace.

var css = rework(inputCSS)
  .use(clone({regexp: /^foo?$/}))
  .toString();

It will work with all foo properties.

License

MIT

Dependencies (0)

    Dev Dependencies (1)

    Package Sidebar

    Install

    npm i rework-clone

    Weekly Downloads

    0

    Version

    0.1.3

    License

    MIT

    Last publish

    Collaborators

    • isquariel