Skip to content
This repository was archived by the owner on Sep 8, 2020. It is now read-only.

Commit a333d60

Browse files
committed
Merge pull request #42 from angular-ui/fix-bower-mainFileName
Fix bower main file name
2 parents 07234ae + 86ce8c6 commit a333d60

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"author": "https://github.com/angular-ui/ui-ace/graphs/contributors",
66
"license": "MIT",
77
"homepage": "http://angular-ui.github.com",
8-
"main": "./ui-ace.js",
8+
"main": "./src/ui-ace.js",
99
"ignore": [
1010
"**/.*",
1111
"node_modules",

publish.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ module.exports = function() {
2929
inlineJS : fs.readFileSync(__dirname + '/demo/demo.js'),
3030
css: css_dependencies.map(putThemInVendorDir).concat(['demo/demo.css']),
3131
js : js_dependencies.map(putThemInVendorDir).concat(['dist/ui-ace.min.js']),
32-
tocopy : css_dependencies.concat(js_dependencies)
32+
tocopy : css_dependencies.concat(js_dependencies),
33+
34+
bowerData : { main: './ui-ace.js'}
3335
};
3436
};

0 commit comments

Comments
 (0)