Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,16 @@ finalized.
## Getting Started
Install the module with: `npm install grunt-ver`

Then load it from your `grunt.js` file:
Then load it from your `Gruntfile.js`:

```js
grunt.loadNpmTasks('grunt-ver');
```

In your `grunt.js` file, add the follow task entry:
In your `Gruntfile.js`, add the follow task entry:

```js
version: {
ver: {
myapp: {
phases: [
{
Expand Down Expand Up @@ -60,7 +60,7 @@ version: {
You can force the version string to all files to a particular value using the forceversion option. This is useful for development environments where stable file names are helpful for debugging and where cache busting isn't an issue.

```js
version: {
ver: {
myapp: {
forceVersion: "dev"
phases: [
Expand Down