use latest dryice version compatible with node 0.6
This commit is contained in:
parent
d9c6409922
commit
4fabcca2af
2 changed files with 5 additions and 2 deletions
|
|
@ -30,8 +30,11 @@
|
|||
* ***** END LICENSE BLOCK ***** */
|
||||
|
||||
var fs = require("fs");
|
||||
var path = require("path");
|
||||
if (!fs.existsSync)
|
||||
fs.existsSync = require("path").existsSync;
|
||||
fs.existsSync = path.existsSync;
|
||||
else
|
||||
path.existsSync = fs.existsSync;
|
||||
var copy = require('dryice').copy;
|
||||
|
||||
var ACE_HOME = __dirname;
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
"asyncjs": "0.0.x",
|
||||
"jsdom": "0.2.x",
|
||||
"amd-loader": "~0.0.4",
|
||||
"dryice": "0.4.2"
|
||||
"dryice": "0.4.7"
|
||||
},
|
||||
"mappings": {
|
||||
"ace": "."
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue