fbinstant-deploy
Advanced tools
Comparing version 0.0.4 to 0.0.5
{ | ||
"name": "fbinstant-deploy", | ||
"version": "0.0.4", | ||
"version": "0.0.5", | ||
"description": "Deployer for Facebook Instant Games", | ||
@@ -5,0 +5,0 @@ "main": "main.js", |
# Deployer for facebook instant games | ||
An npm package to help automate the deployment of facebook instant games. | ||
NPM package to help automate the deployment of facebook instant games. | ||
@@ -13,13 +13,13 @@ The deploy() function returns a promise that will resolve if the package has been delivered to the facebook endpoint. | ||
<code>require("fbinstant-deploy").deploy(directory, access_token, app_id, comment)</code> | ||
```javascript | ||
require("fbinstant-deploy").deploy(directory, access_token, app_id, comment); | ||
``` | ||
# Example | ||
<pre> | ||
<code> | ||
const fbinstantDeploy = require("fbinstant-deploy"); | ||
fbinstantDeploy.deploy("/some/dir/to/zip/", "access_token", "app_id", "some comment here").then(()=>{ | ||
console.log("Deployment successful!"); | ||
}); | ||
</code> | ||
</pre> | ||
```javascript | ||
const fbinstantDeploy = require("fbinstant-deploy"); | ||
fbinstantDeploy.deploy("/some/dir/to/zip/", "access_token", "app_id", "some comment here").then(()=>{ | ||
console.log("Deployment successful!"); | ||
}); | ||
``` |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
4723