# grunt-replace-dojo-cache

> Replace calls to dojo.cache in JavaScript source with the contents of the referred file.

Latest version **0.1.2** (published 2013-04-24) · 0 weekly downloads

## Install

```sh
npm install grunt-replace-dojo-cache
pnpm add grunt-replace-dojo-cache
yarn add grunt-replace-dojo-cache
bun add grunt-replace-dojo-cache
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.2 |
| Published | 2013-04-24 |
| First published | 2013-04-21 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >= 0.8.0 |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Benny van Reeven |
| Maintainers | bvanreeven |
| Keywords | gruntplugin |

## Links

- npm: https://www.npmjs.com/package/grunt-replace-dojo-cache
- Repository: https://github.com/bvanreeven/grunt-replace-dojo-cache
- Issues: https://github.com/bvanreeven/grunt-replace-dojo-cache/issues
- npm.io page: https://npm.io/package/grunt-replace-dojo-cache

## Recent versions

- 0.1.2 (latest) — 2013-04-24
- 0.1.1 — 2013-04-21
- 0.1.0 — 2013-04-21

## README

# grunt-replace-dojo-cache

> Replace calls to dojo.cache in JavaScript source with the contents of the referred file.

## Getting Started
This plugin requires Grunt `~0.4.1`

If you haven't used [Grunt](http://gruntjs.com/) before, be sure to check out the [Getting Started](http://gruntjs.com/getting-started) guide, as it explains how to create a [Gruntfile](http://gruntjs.com/sample-gruntfile) as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

```shell
npm install grunt-replace-dojo-cache --save-dev
```

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

```js
grunt.loadNpmTasks('grunt-replace-dojo-cache');
```

## The "replace_dojo_cache" task

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

```js
grunt.initConfig({
  replace_dojo_cache: {
    options: {
      // Task-specific options go here.
    },
    your_target: {
      // Target-specific file lists and/or options go here.
    },
  },
})
```

### Options

#### options.basePath
Type: `String`
Default value: `'.'`

The base path for files referred from dojo.cache calls. Default is the path Gruntfile.js is in.

### Usage Examples

#### Custom Base Path
In this example, the file `'src/source.js'` is scanned for calls to dojo.cache. Referred files are resolved relative to the base path `'src'`.

```js
grunt.initConfig({
  replace_dojo_cache: {
    options: {
      basePath: 'src'
    },
    files: {
      'dest/replaced.js': ['src/source.js'],
    },
  },
})
```

## Contributing
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using [Grunt](http://gruntjs.com/).

## Release History
 * 2013-04-25   v0.1.2   Remove `dojo.require("dojo.cache");` calls to prevent unnecessary requests.
 * 2013-04-21   v0.1.1   Added support for multiple dots in the package name.
 * 2013-04-21   v0.1.0   Initial version.

---
_Source: https://npm.io/package/grunt-replace-dojo-cache · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
