Skip to content

Commit

Permalink
Release 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rauchg committed Jan 30, 2015
1 parent 93cb80c commit 6d1ab1a
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@

0.2.1 / 2015-01-30
==================

* improved startup speed by leveraging pre-compilation

0.2.0 / 2015-01-30
==================

Expand Down
5 changes: 1 addition & 4 deletions bin/slackin
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
#!/usr/bin/env node

// es6 polyfills
require('6to5/register');

var pkg = require('../package');
var program = require('commander');
var slackin = require('../lib');
var slackin = require('../node');

program
.version(pkg.version)
Expand Down
3 changes: 3 additions & 0 deletions lib/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@

// es6 runtime requirements
require('6to5/polyfill');

// their code
import express from 'express';
import sockets from 'socket.io';
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "slackin",
"version": "0.2.0",
"version": "0.2.1",
"description": "",
"dependencies": {
"body-parser": "1.10.2",
Expand Down

0 comments on commit 6d1ab1a

Please sign in to comment.