Skip to content

Commit

Permalink
Scripts and README fixes
Browse files Browse the repository at this point in the history
The scripts defined in package.json run on Linux, but they fail on Windows as it cannot resolve the path. I have changed it so it could run on both the platforms.

Fixed a typo in README, changed npm-install to npm install at line 92
  • Loading branch information
Arsalan Khan committed Aug 4, 2014
1 parent f42584f commit 1b9cbe5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ npm run-script build

## Tests

To launch the test suite, make sure you have already installed the dependencies using ````npm-install````.
To launch the test suite, make sure you have already installed the dependencies using ````npm install````.
Tests are launching in all your installed browsers. They're also launched on Travis CI, in PhantomJS.

````
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"name": "basil.js",
"version": "0.3.2",
"scripts": {
"test": "./node_modules/karma/bin/karma start test/karma.config.js",
"build": "./node_modules/gulp/bin/gulp.js"
"test": "node node_modules/karma/bin/karma start test/karma.config.js",
"build": "node node_modules/gulp/bin/gulp.js"
},
"dependencies": {},
"devDependencies": {
Expand Down

0 comments on commit 1b9cbe5

Please sign in to comment.