diff --git a/.hgignore b/.gitignore similarity index 70% rename from .hgignore rename to .gitignore index 283ab6c..220d2cb 100644 --- a/.hgignore +++ b/.gitignore @@ -2,4 +2,5 @@ syntax: glob entwine-project-settings.json format.js dist -nwjs-cache \ No newline at end of file +nwjs-cache +node_modules diff --git a/Gruntfile.js b/Gruntfile.js index 928148a..8a39341 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -5,7 +5,7 @@ var loadingSpinner = require('loading-spinner'); var jsonFormat = require('json-format'); var NwBuilder = require('nw-builder'); var path = require('path'); -var twinePath = require('twine-utils/path').storyDirectorySync(); +var twinePath = require('twine-utils').Path.storyDirectorySync(); var wrap = require('wordwrap')(80); function say(text) { diff --git a/package.json b/package.json index 1c8bbf5..0faf413 100644 --- a/package.json +++ b/package.json @@ -13,17 +13,17 @@ "dependencies": { "download-file": "^0.1.5", "filenamify": "^1.2.1", - "grunt": "^1.0.1", - "grunt-contrib-clean": "^1.0.0", + "grunt": "^1.3.0", + "grunt-contrib-clean": "^2.0.0", "grunt-contrib-copy": "^1.0.0", - "grunt-contrib-watch": "^1.0.0", + "grunt-contrib-watch": "^1.1.0", "grunt-entwine": "^1.2.0", "inquirer": "^1.0.2", "jit-grunt": "^0.10.0", "json-format": "^0.1.2", "loading-spinner": "^1.1.3", - "nw-builder": "^2.2.0", - "twine-utils": "^1.2.3", + "nw-builder": "^3.5.7", + "twine-utils": "^1.3.1", "wordwrap": "^1.0.0" } }