Skip to content
This repository has been archived by the owner on Mar 16, 2021. It is now read-only.

Commit

Permalink
Fixed Browserify bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Ferdinandi committed May 13, 2015
1 parent 95eb849 commit 07bfef8
Show file tree
Hide file tree
Showing 15 changed files with 20 additions and 18 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,8 @@ Gulp Boilerplate is licensed under the [MIT License](http://gomakethings.com/mit

Gulp Boilerplate uses [semantic versioning](http://semver.org/).

* v1.3.2 - May 13, 2015
* Fixed Browserify `window` bug.
* v1.3.1 - March 9, 2015
* Fixed UMD wrapper.
* v1.3.0 - January 7, 2014
Expand Down
2 changes: 1 addition & 1 deletion dist/css/myplugin.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* gulp-boilerplate v1.3.1
* gulp-boilerplate v1.3.2
* My Gulp.js boilerplate for creating new web projects, by Chris Ferdinandi.
* http://github.com/cferdinandi/Plugin
*
Expand Down
2 changes: 1 addition & 1 deletion dist/css/myplugin.min.css
Original file line number Diff line number Diff line change
@@ -1 +1 @@
/** gulp-boilerplate v1.3.1, by Chris Ferdinandi | http://github.com/cferdinandi/Plugin | Licensed under MIT: http://gomakethings.com/mit/ */
/** gulp-boilerplate v1.3.2, by Chris Ferdinandi | http://github.com/cferdinandi/Plugin | Licensed under MIT: http://gomakethings.com/mit/ */
2 changes: 1 addition & 1 deletion dist/js/classList.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* gulp-boilerplate v1.3.1
* gulp-boilerplate v1.3.2
* My Gulp.js boilerplate for creating new web projects, by Chris Ferdinandi.
* http://github.com/cferdinandi/Plugin
*
Expand Down
2 changes: 1 addition & 1 deletion dist/js/classList.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/js/myplugin.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* gulp-boilerplate v1.3.1
* gulp-boilerplate v1.3.2
* My Gulp.js boilerplate for creating new web projects, by Chris Ferdinandi.
* http://github.com/cferdinandi/Plugin
*
Expand All @@ -15,7 +15,7 @@
} else {
root.myPlugin = factory(root);
}
})(this, function (root) {
})(typeof global !== "undefined" ? global : this.window || this.global, function (root) {

'use strict';

Expand Down
4 changes: 2 additions & 2 deletions dist/js/myplugin.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/dist/css/myplugin.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* gulp-boilerplate v1.3.1
* gulp-boilerplate v1.3.2
* My Gulp.js boilerplate for creating new web projects, by Chris Ferdinandi.
* http://github.com/cferdinandi/Plugin
*
Expand Down
2 changes: 1 addition & 1 deletion docs/dist/css/myplugin.min.css
Original file line number Diff line number Diff line change
@@ -1 +1 @@
/** gulp-boilerplate v1.3.1, by Chris Ferdinandi | http://github.com/cferdinandi/Plugin | Licensed under MIT: http://gomakethings.com/mit/ */
/** gulp-boilerplate v1.3.2, by Chris Ferdinandi | http://github.com/cferdinandi/Plugin | Licensed under MIT: http://gomakethings.com/mit/ */
2 changes: 1 addition & 1 deletion docs/dist/js/classList.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* gulp-boilerplate v1.3.1
* gulp-boilerplate v1.3.2
* My Gulp.js boilerplate for creating new web projects, by Chris Ferdinandi.
* http://github.com/cferdinandi/Plugin
*
Expand Down
2 changes: 1 addition & 1 deletion docs/dist/js/classList.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions docs/dist/js/myplugin.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* gulp-boilerplate v1.3.1
* gulp-boilerplate v1.3.2
* My Gulp.js boilerplate for creating new web projects, by Chris Ferdinandi.
* http://github.com/cferdinandi/Plugin
*
Expand All @@ -15,7 +15,7 @@
} else {
root.myPlugin = factory(root);
}
})(this, function (root) {
})(typeof global !== "undefined" ? global : this.window || this.global, function (root) {

'use strict';

Expand Down
4 changes: 2 additions & 2 deletions docs/dist/js/myplugin.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gulp-boilerplate",
"version": "1.3.1",
"version": "1.3.2",
"description": "My Gulp.js boilerplate for creating new web projects",
"main": "./dist",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion src/js/myplugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
} else {
root.myPlugin = factory(root);
}
})(this, function (root) {
})(typeof global !== "undefined" ? global : this.window || this.global, function (root) {

'use strict';

Expand Down

0 comments on commit 07bfef8

Please sign in to comment.