Skip to content

Commit

Permalink
fix standalone option
Browse files Browse the repository at this point in the history
  • Loading branch information
liabru committed Aug 17, 2015
1 parent 6e0e7e4 commit de16529
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module.exports = function(grunt) {
options: {
banner: '/**\n* <%= buildName %>.js <%= buildVersion %> <%= grunt.template.today("yyyy-mm-dd") %>\n* <%= pkg.homepage %>\n* License: <%= pkg.license %>\n*/\n\n',
browserifyOptions: {
standalone: '<%= pkg.name %>'
standalone: 'Matter'
}
},
'build/<%= buildName %>.js': ['src/module/main.js']
Expand Down
2 changes: 1 addition & 1 deletion src/module/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* THE SOFTWARE.
*/

Matter = module.exports = {};
var Matter = module.exports = {};

Matter.Body = require('../body/Body');
Matter.Composite = require('../body/Composite');
Expand Down

0 comments on commit de16529

Please sign in to comment.