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
<?xml version="1.0" encoding="UTF-8"?> | |
<!-- | |
Copyright (C) 2014 Leo Iannacone <[email protected]> | |
This file was generated from a textmate theme named Monokai Extended | |
with tm2gtksw2 tool. (Alexandre da Silva) | |
This library is free software; you can redistribute it and/or | |
modify it under the terms of the GNU Library General Public | |
License as published by the Free Software Foundation; either |
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
diff --git a/npm-shrinkwrap.json b/npm-shrinkwrap.json | |
index af781cc..9061658 100644 | |
--- a/npm-shrinkwrap.json | |
+++ b/npm-shrinkwrap.json | |
@@ -2,6835 +2,175 @@ | |
"name": "codio-dashboard", | |
"version": "1.0.0", | |
"dependencies": { | |
- "babel": { | |
- "version": "5.5.6", |
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
webpack built 0260fbc1633f3e6d6195 in 77478ms | |
Hash: 0260fbc1633f3e6d6195 | |
Version: webpack 1.13.3 | |
Time: 77478ms | |
Asset Size Chunks Chunk Names | |
bootstrap.js 57.1 kB 0 [emitted] bootstrap | |
vendor.js 9.95 MB 1, 0 [emitted] vendor | |
common.js 1.88 MB 2, 0 [emitted] common | |
main.js 2.27 MB 3, 0 [emitted] main | |
pro.js 1.3 MB 4, 0 [emitted] pro |
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
const Intercom = require('intercom-client') | |
const SEGMENT_ID = process.env.INTERCOM_SEGMENT_ID | |
const TOKEN = process.env.INTERCOM_TOKEN | |
const client = new Intercom.Client({token: TOKEN}) | |
const oldUsers = [] | |
const bulkLimit = 50 |