New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

grunt-cssrb

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-cssrb

CSS resources rebase plugun

  • 0.1.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

grunt-cssrb

Grunt rebase for images in css. Highly inspired by cssrb utility, but ported to use as grunt task.

Getting Started

This plugin requires Grunt 0.4.0

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-cssrb --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-cssrb');

The "cssrb" task

Overview

In your project's Gruntfile, add a section named cssrb to the data object passed into grunt.initConfig().

grunt.initConfig({
  cssrb: {
    main: {
      src: 'develop/style.css',
      dest: 'publish/style.css',
      options: {
        old_base: 'develop/images',
        new_base: 'publish',
        patterns:  {'^/images': ''},
        copy: true
      },
    },
  },
})

This task will copy all images from 'develop/images' to 'publish', and create style.css in publish with paths targeting current dir instead of images.

Options

options.old_base

Relative directory path to use as a root for searching for files.

options.new_base

Relative directory path to use as a root for moving of copying files.

options.patterns

Optional, url rules in css to replace.

options.copy

Optional, set to true if you want to copy files to the new directory.

options.move

Optional, set to true if you want to move files to the new directory.

Release History

0.1.2

  • Fixed bug with paths in CSS when using Windows. (tnx @chayn1k).

0.1.1

  • Fixed bug with replacing '../font/fontawesome-webfont.eot?#iefix&v=3.2.1' urls.

0.1.0

  • Initial release.

Keywords

FAQs

Package last updated on 24 Jun 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc