-
Notifications
You must be signed in to change notification settings - Fork 408
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
1 parent
1caff7d
commit 15a3375
Showing
3 changed files
with
14 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ | |
.build* | ||
smart.lock | ||
versions.json | ||
.versions |
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,8 +1,8 @@ | ||
Package.describe({ | ||
name: 'iron:router', | ||
summary: 'Routing specifically designed for Meteor', | ||
version: "1.0.10", | ||
git: "https://github.com/eventedmind/iron-router" | ||
version: '1.0.11', | ||
git: 'https://github.com/iron-meteor/iron-router' | ||
}); | ||
|
||
Npm.depends({ | ||
|
@@ -22,26 +22,26 @@ Package.on_use(function (api) { | |
api.use('ejson'); | ||
|
||
// for dynamic scoping with environment variables | ||
api.use('meteor') | ||
api.use('meteor'); | ||
|
||
// main namespace and utils | ||
api.use('iron:[email protected].8'); | ||
api.use('iron:[email protected].11'); | ||
api.imply('iron:core'); | ||
|
||
// ui layout | ||
api.use('iron:[email protected].8'); | ||
api.use('iron:[email protected].11'); | ||
|
||
// connect like middleware stack for client/server | ||
api.use('iron:[email protected].10'); | ||
api.use('iron:[email protected].11'); | ||
|
||
// client and server side url utilities and compiling | ||
api.use('iron:[email protected].9'); | ||
api.use('iron:[email protected].11'); | ||
|
||
// for reactive urls and pushState in the browser | ||
api.use('iron:[email protected].9'); | ||
api.use('iron:[email protected].11'); | ||
|
||
// for RouteController which inherits from this | ||
api.use('iron:[email protected].8'); | ||
api.use('iron:[email protected].11'); | ||
|
||
api.add_files('lib/current_options.js'); | ||
api.add_files('lib/http_methods.js'); | ||
|