Skip to content

Commit

Permalink
fix package.json calls for windwos users
Browse files Browse the repository at this point in the history
  • Loading branch information
Evan Tahler committed Nov 23, 2012
1 parent cd6f4b6 commit 47e01b8
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 9 deletions.
2 changes: 1 addition & 1 deletion config.js
Expand Up @@ -9,7 +9,7 @@ var configData = {};
/////////////////////////

configData.general = {
"apiVersion": "3.1.3",
"apiVersion": "3.1.4",
"serverName": "actionHero API",
// The welcome message seen by TCP and webSocket clients upon connection
"welcomeMessage" : "Hello! Welcome to the actionHero api",
Expand Down
16 changes: 8 additions & 8 deletions package.json
Expand Up @@ -2,7 +2,7 @@
"author": "Evan Tahler <evantahler@gmail.com>",
"name": "actionHero",
"description": "actionHero is a node.js API framework for both tcp sockets, web sockets, and http clients. The goal of actionHero are to create an easy-to-use toolkit for making reusable & scalable APIs",
"version": "3.1.3",
"version": "3.1.4",
"homepage": "http://actionherojs.com",
"repository": {
"type": "git",
Expand Down Expand Up @@ -31,12 +31,12 @@
"socket.io-client":"0.9.x"
},
"scripts": {
"start": "./scripts/actionHero",
"startCluster": "./scripts/actionHeroCluster",
"install": "./scripts/install",
"test": "./node_modules/.bin/mocha --reporter spec",
"generate" : "./scripts/generate",
"generateAction" : "./scripts/generateAction",
"generateTask" : "./scripts/generateTask"
"start": "node ./scripts/actionHero",
"startCluster": "node ./scripts/actionHeroCluster",
"install": "node ./scripts/install",
"test": "node ./node_modules/.bin/mocha --reporter spec",
"generate" : "node ./scripts/generate",
"generateAction" : "node ./scripts/generateAction",
"generateTask" : "node ./scripts/generateTask"
}
}
4 changes: 4 additions & 0 deletions versions.md
@@ -1,5 +1,9 @@
# Action Hero API Versions

## Version 3.1.4

- explicit call of `node` in package.json to wnable project to run on windows

## Version 3.1.3

- enable you to add custom initilizers in your project
Expand Down

0 comments on commit 47e01b8

Please sign in to comment.