Skip to content
This repository has been archived by the owner on Jan 5, 2019. It is now read-only.

Commit

Permalink
Update remaining libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
imbstack committed Oct 19, 2017
1 parent c95a632 commit f3ed68b
Show file tree
Hide file tree
Showing 26 changed files with 784 additions and 3,682 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -1,3 +1,4 @@
lib/
/node_modules/
/taskcluster-client.conf.json
/taskcluster-client.js
Expand Down
1 change: 1 addition & 0 deletions .travis.yml
Expand Up @@ -5,6 +5,7 @@ node_js:
- '5'
- '6'
- '7'
- '8'
addons:
apt:
sources:
Expand Down
4 changes: 0 additions & 4 deletions Vagrantfile

This file was deleted.

8 changes: 4 additions & 4 deletions bin/update-apis.js
@@ -1,7 +1,7 @@
#!/usr/bin/env node
var fs = require('fs');
var path = require('path');
var request = require('superagent-promise');
var request = require('superagent');
var cliff = require('cliff');
var program = require('commander');
var _ = require('lodash');
Expand Down Expand Up @@ -161,7 +161,7 @@ program
// Fetch the Reference Manifest
var manifestUrl = 'http://references.taskcluster.net/manifest.json';
console.log('Fetching manifest reference from %s', manifestUrl);
var p = request.get(manifestUrl).end();
var p = request.get(manifestUrl);

p = p.then(function(res) {
var manifest = res.body;
Expand All @@ -171,8 +171,8 @@ program
p = p.then(function(manifest) {
apis = {};
return Promise.all(Object.keys(manifest).map(function(name) {
console.log('Fetching %s reference', name);
return request.get(manifest[name]).end().then(function(res) {
console.log('Fetching %s reference', name);
return request.get(manifest[name]).then(function(res) {
console.log('Updated ' + name);
apis[name] = {
referenceUrl: manifest[name],
Expand Down
20 changes: 0 additions & 20 deletions browser.js

This file was deleted.

4 changes: 0 additions & 4 deletions config.yml

This file was deleted.

23 changes: 0 additions & 23 deletions index.js

This file was deleted.

258 changes: 0 additions & 258 deletions lib/weblistener.js

This file was deleted.

0 comments on commit f3ed68b

Please sign in to comment.