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

Commit 47a1ac8

Browse files
committed
Merge pull request #54 from jbroquist/master
chore(~): fix bower main property
2 parents c86fe9b + 96fcb00 commit 47a1ac8

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "angular-ui-layout",
33
"main": ["src/ui-layout.js", "src/ui-layout.css"],
4-
"version": "1.0.0",
4+
"version": "1.0.1",
55
"homepage": "https://angular-ui.github.io/ui-layout/",
66
"authors": [
77
"https://github.com/angular-ui/ui-layout/contributors"

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-ui-layout",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "This directive allows you to split !",
55
"devDependencies": {
66
"gulp": "^3",

publish.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ module.exports = function() {
1212
inlineHTML : fs.readFileSync(__dirname + '/demo/demo.html'),
1313
inlineJS : 'angular.module(\'doc.ui-layout\', [\'ui.layout\', \'prettifyDirective\', \'ui.bootstrap\', \'plunker\' ]);',
1414
css : ['demo/demo.css', 'dist/ui-layout.css'],
15-
js : ['dist/ui-layout.js']
15+
js : ['dist/ui-layout.js'],
16+
bowerData: {
17+
main: ['ui-layout.js', 'ui-layout.css']
18+
}
1619
};
1720
};

0 commit comments

Comments
 (0)