Skip to content
This repository has been archived by the owner on Aug 5, 2019. It is now read-only.

Commit

Permalink
Merge pull request #20 from Tathanen/master
Browse files Browse the repository at this point in the history
Bugfixes
  • Loading branch information
jrit committed Aug 18, 2015
2 parents e98ef9f + b1a8428 commit 9513734
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ require( "load-grunt-config" )( grunt, {

## Changelog

#### 4.0.0 [Breaking Changes] Cache and versioning changes
#### 4.0.1 [Breaking Changes] Cache and versioning changes

To upgrade:

Expand Down
6 changes: 3 additions & 3 deletions grunt/aliases.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ test:
- envUseSource
- clean:build
- buildcore
- rev
- instrument
- rev
- protractor_coverage:local
- envDontUseSource
- buildcore
Expand All @@ -34,9 +34,9 @@ teststack:
- envUseSource
- clean:build
- buildcore
- rev
- jshint:deploy
- instrument
- rev
- localstack
- protractor_coverage:stack
- envDontUseSource
Expand All @@ -59,10 +59,10 @@ deploy:
- envUseDist
- clean
- buildcore
- rev
- clean:modules
- babel
- uglify
- concat:dist
- rev
- s3
- cloudfront
2 changes: 1 addition & 1 deletion grunt/concat.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module.exports = function ( grunt )
src: [
"source/modules/*/*.js",
"source/modules/*/*/*.js",
"!source/modules/*/tests/**/*.*",
"!source/modules/*/tests/**/*.*"
],
filter: function ( filepath )
{
Expand Down
2 changes: 1 addition & 1 deletion grunt/copy.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ module.exports = function ( grunt )
{
return grunt.option( "replacemocks" );
}
else if( /\/mocks/.test( filepath ) )
else if( /mocks/.test( filepath ) )
{
return grunt.option( "mocks" );
}
Expand Down
2 changes: 1 addition & 1 deletion grunt/filerev.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ module.exports = {
length: 8
},
resources: {
src: "build/**/*.{jpg,jpeg,gif,png,webp,svg,js,css}"
src: "build/**/*.{jpg,jpeg,gif,png,ico,webp,svg,js,json,css}"
}
};
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dominatr-grunt",
"version": "4.0.0",
"version": "4.0.1",
"description": "Build all the things!",
"scripts": {
"test": ""
Expand Down

0 comments on commit 9513734

Please sign in to comment.