This repository has been archived by the owner on Feb 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to fbgraph v0.3.0 and find package name for testing
- Loading branch information
Showing
5 changed files
with
50 additions
and
36 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
local-test:stevezhu:[email protected] | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
meteorhacks:[email protected] | ||
meteorhacks:[email protected] | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
stevezhu:[email protected] | ||
[email protected] | ||
[email protected] | ||
[email protected] |
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,3 +1,5 @@ | ||
A meteor package for [fbgraph](http://criso.github.io/fbgraph/). | ||
|
||
Only compatible with Meteor v0.9.0 or higher | ||
|
||
fbgraph v0.3.0 |
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,15 +1,22 @@ | ||
Npm.depends({'fbgraph': '0.2.11'}); | ||
Npm.depends({'fbgraph': '0.3.0'}); | ||
|
||
var path = Npm.require('path'); | ||
var argv = process.argv.slice(2); | ||
var packageDirname; | ||
if (argv[0] === 'test-packages') { | ||
packageDirname = path.basename(path.resolve(process.argv[process.argv.length - 1])); | ||
} else { | ||
packageDirname = path.basename(process.cwd()); | ||
} | ||
|
||
Package.describe({ | ||
summary: "Node.js module to access the Facebook graph api.", | ||
version: "1.1.0", | ||
version: "1.2.0", | ||
git: "https://github.com/stevezhu/meteor-fbgraph.git" | ||
}); | ||
|
||
Package.onUse(function(api) { | ||
api.versionsFrom('[email protected]'); | ||
|
||
api.use('meteorhacks:[email protected]'); | ||
api.use('meteorhacks:[email protected]'); | ||
|
||
api.addFiles('fbgraph.js', 'server'); | ||
api.export('FBGraph', 'server'); | ||
|
@@ -20,6 +27,6 @@ Package.onTest(function(api) { | |
api.use([ | ||
'service-configuration' | ||
]); | ||
api.use('stevezhu:fbgraph'); | ||
api.use(packageDirname); | ||
api.addFiles('tests/fbgraph_test.js'); | ||
}); |
This file was deleted.
Oops, something went wrong.