-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Michael Klein
committed
Dec 11, 2014
1 parent
3224602
commit 8d1082e
Showing
3 changed files
with
55 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
Package.describe({ | ||
name: 'monbro:iron-router-breadcrumb', | ||
summary: 'This package will provide a easy way to add a breadcrumb to Iron.Router with enough flexibility.', | ||
version: '1.0.0', | ||
version: '1.0.1', | ||
git: 'https://github.com/monbro/meteor-breadcrumb-plugin/' | ||
}); | ||
|
||
|
@@ -11,10 +11,29 @@ Package.onUse(function(api) { | |
|
||
api.use([ | ||
'templating', | ||
'meteor', | ||
'ui', | ||
"iron:[email protected]", | ||
], "client"); | ||
|
||
// main namespace and utils | ||
api.use('iron:[email protected]'); | ||
|
||
// ui layout | ||
api.use('iron:[email protected]'); | ||
|
||
// connect like middleware stack for client/server | ||
api.use('iron:[email protected]'); | ||
|
||
// client and server side url utilities and compiling | ||
api.use('iron:[email protected]'); | ||
|
||
// for reactive urls and pushState in the browser | ||
api.use('iron:[email protected]'); | ||
|
||
// for RouteController which inherits from this | ||
api.use('iron:[email protected]'); | ||
|
||
api.export('Breadcrumb', ['client', 'server']); | ||
}); | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters