Skip to content

Commit

Permalink
Added missing dependency and bumped the version
Browse files Browse the repository at this point in the history
  • Loading branch information
misterbyrne committed Jan 29, 2015
1 parent 7abd7b4 commit 00f2c58
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions build/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ var nw = new NwBuilder({
'./node_modules/**/*.{js,json}',
'./node_modules/**/bin/**',
'!./node_modules/node-webkit-builder/**',
'!./node_modules/enigmavirtualbox/**',
'!./node_modules/node-notifier/test/**',
'./node_modules/node-notifier/vendor/notifu/notifu.exe',
'./node_modules/node-notifier/vendor/toaster/*.{exe,dll}'
Expand Down
2 changes: 1 addition & 1 deletion build/compress.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ module.exports = {
}
var downloader = require('node-webkit-builder/lib/downloader.js');
var zipUrl = 'http://upx.sourceforge.net/download/' + version + '.zip';
console.log('Download UPX from ' + zipUrl);
console.log('Downloading UPX from ' + zipUrl);
return downloader.downloadAndUnpack(cachePath, zipUrl)
.then(function(files) {
return Promise.resolve(exePath);
Expand Down
7 changes: 6 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Slack",
"description": "Slack Desktop app.",
"version": "0.0.1",
"version": "1.0.0",
"main": "index.html",
"node-main": "main.js",
"inject-js-start": "inject-start.js",
Expand All @@ -18,6 +18,7 @@
"title": "Slack - Loading..."
},
"dependencies": {
"bluebird": "^2.9.3",
"node-notifier": "git+ssh://[email protected]:misterbyrne/node-notifier.git"
},
"webkit": {
Expand All @@ -27,6 +28,10 @@
"enigmavirtualbox": "^0.9.3",
"node-webkit-builder": "^1.0.4"
},
"repository": {
"type": "git",
"url": "https://github.com/misterbyrne/slack.git"
},
"scripts": {
"build": "build\\build.cmd"
}
Expand Down

0 comments on commit 00f2c58

Please sign in to comment.