mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-02-22 23:23:54 +08:00
fix(task): spec task uses Promise
This commit is contained in:
parent
79413e7c45
commit
2dea234de0
2 changed files with 2 additions and 1 deletions
|
@ -9,7 +9,7 @@
|
||||||
"asar": "^0.8",
|
"asar": "^0.8",
|
||||||
"async": "~0.2.9",
|
"async": "~0.2.9",
|
||||||
"babel-eslint": "^4.1.3",
|
"babel-eslint": "^4.1.3",
|
||||||
"bluebird": "^2.3",
|
"bluebird": "^3.0",
|
||||||
"coffee-react-transform": "^3.1.0",
|
"coffee-react-transform": "^3.1.0",
|
||||||
"coffeelint-cjsx": "^2.0",
|
"coffeelint-cjsx": "^2.0",
|
||||||
"donna": "1.0.10",
|
"donna": "1.0.10",
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
fs = require 'fs'
|
fs = require 'fs'
|
||||||
path = require 'path'
|
path = require 'path'
|
||||||
request = require 'request'
|
request = require 'request'
|
||||||
|
Promise = require 'bluebird'
|
||||||
childProcess = require 'child_process'
|
childProcess = require 'child_process'
|
||||||
|
|
||||||
executeTests = ({cmd, args}, grunt, done) ->
|
executeTests = ({cmd, args}, grunt, done) ->
|
||||||
|
|
Loading…
Reference in a new issue