Skip to content

Commit

Permalink
fix gruntfile, update exports file
Browse files Browse the repository at this point in the history
  • Loading branch information
thanpolas committed Oct 14, 2013
1 parent c235137 commit b3bb092
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
12 changes: 6 additions & 6 deletions templates/Gruntfile.js
Expand Up @@ -26,24 +26,24 @@ module.exports = function (grunt) {
closureLibrary: '<%= closure.closurePath %>closure-library',

// The path to the closure linter.
closureLinter: '<%= closure.closurePath %>/closure-linter/closure_linter',
closureLinter: '<%= closure.closurePath %>closure-linter/closure_linter',

// The path to the installed bower components
componentPath: '<%= closure.closurePath %>/components',
componentPath: '<%= closure.closurePath %>components',

// the compiled file
destCompiled: '<%= closure.closurePath %>/jsc/app.js',
destCompiled: '<%= closure.closurePath %>jsc/app.js',

// define the path to the app
appPath: '<%= closure.closurePath %>/js/',
appPath: '<%= closure.closurePath %>js/',

// The location of the source map
sourceMap: '<%= closure.closurePath %>/jsc/sourcemap.js.map',
sourceMap: '<%= closure.closurePath %>jsc/sourcemap.js.map',

// This sting will wrap your code marked as %output%
// Take care to edit the sourcemap path
outputWrapper: '(function(){%output%}).call(this);' +
'//@sourceMappingURL=<%= closure.closurePath %>/jsc/sourcemap.js.map'
'//@sourceMappingURL=<%= closure.closurePath %>jsc/sourcemap.js.map'
};

// the file globbing pattern for vendor file uglification.
Expand Down
1 change: 1 addition & 0 deletions templates/app/js/core/exports.js
Expand Up @@ -10,6 +10,7 @@ goog.require('appOne');

// core
goog.exportSymbol('appOne', appOne);
goog.exportSymbol('appOne.on', appOne.on);
goog.exportSymbol('appOne.init', appOne.init);
goog.exportSymbol('appOne.isReady', appOne.isReady);

Expand Down

0 comments on commit b3bb092

Please sign in to comment.