Commit 4a0fcc22 by Mohammad Umair Khan Committed by xzyfer

update setup steps to comply with instructions

package.json will not be created without npm init and a --save is required to append the installed version of package onto the package.json
parent 94471ab1
...@@ -113,14 +113,10 @@ Install the latest node-sass ...@@ -113,14 +113,10 @@ Install the latest node-sass
npm install -ddd node-sass > npm.log 2> npm.err npm install -ddd node-sass > npm.log 2> npm.err
``` ```
Note which version was installed by opening the `package.json` file with a text editor. Note which version was installed by running
```json ```sh
{ npm ls node-sass
"name": "node-sass",
"version": "3.0.0",
"libsass": "3.2.0",
}
``` ```
If node-sass could not be installed successfully, please publish your `npm.log` If node-sass could not be installed successfully, please publish your `npm.log`
...@@ -181,14 +177,10 @@ Install the latest node-sass ...@@ -181,14 +177,10 @@ Install the latest node-sass
npm install node-sass npm install node-sass
``` ```
Note which version was installed by opening the `package.json` file with a text editor. Note which version was installed by running
```json ```sh
{ npm ls node-sass
"name": "node-sass",
"version": "3.0.0",
"libsass": "3.2.0",
}
``` ```
If node-sass install successfully lets gather some basic installation infomation. If node-sass install successfully lets gather some basic installation infomation.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment