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

Commit c75650b

Browse files
committed
fix(grunt): add forgotten publish.js file
1 parent f51d575 commit c75650b

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

publish.js

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
/* jshint node:true */
2+
3+
'use strict';
4+
5+
var fs = require('fs');
6+
7+
module.exports = function() {
8+
9+
var js_dependencies =[
10+
'https://rawgithub.com/angular-ui/ui-utils/master/modules/event/event.js',
11+
'https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false&callback=initCall'
12+
];
13+
14+
return {
15+
humaName : 'UI.Map',
16+
repoName : 'ui-map',
17+
inlineHTML : fs.readFileSync(__dirname + '/demo/demo.html'),
18+
inlineJS : fs.readFileSync(__dirname + '/demo/demo.js'),
19+
css: ['demo/demo.css'],
20+
js : js_dependencies.concat(['dist/ui-map.min.js'])
21+
};
22+
};

0 commit comments

Comments
 (0)