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

Commit

Permalink
fix(grunt): add forgotten publish.js file
Browse files Browse the repository at this point in the history
  • Loading branch information
douglasduteil committed Dec 28, 2013
1 parent f51d575 commit c75650b
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions publish.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
/* jshint node:true */

'use strict';

var fs = require('fs');

module.exports = function() {

var js_dependencies =[
'https://rawgithub.com/angular-ui/ui-utils/master/modules/event/event.js',
'https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false&callback=initCall'
];

return {
humaName : 'UI.Map',
repoName : 'ui-map',
inlineHTML : fs.readFileSync(__dirname + '/demo/demo.html'),
inlineJS : fs.readFileSync(__dirname + '/demo/demo.js'),
css: ['demo/demo.css'],
js : js_dependencies.concat(['dist/ui-map.min.js'])
};
};

0 comments on commit c75650b

Please sign in to comment.