Updated Adding support for a new Mod (markdown)

This commit is contained in:
Andrew Miner
2016-04-28 07:38:23 -07:00
parent aaf69f72eb
commit 0cf1cb5727
+2 -3
View File
@@ -15,8 +15,7 @@ npm install
grunt test grunt test
cd ../crafting-guide cd ../crafting-guide
npm install npm install
grunt clean build grunt clean start
./scripts/server
``` ```
_**NOTE:** If you're using Windows (instead of MacOS or Linux), you'll want to perform all of these commands using the [Git for Windows](https://msysgit.github.io/) shell. You will also need to install [rsync](https://www.itefix.net/content/get-cwrsync) manually. Finally, windows users should leave out the word `sudo` from all commands._ _**NOTE:** If you're using Windows (instead of MacOS or Linux), you'll want to perform all of these commands using the [Git for Windows](https://msysgit.github.io/) shell. You will also need to install [rsync](https://www.itefix.net/content/get-cwrsync) manually. Finally, windows users should leave out the word `sudo` from all commands._
@@ -48,7 +47,7 @@ Create the mod's overall data file by following the [Mod Data Format](https://gi
Next is the hard part. From the last step, you should have a `mod-version.cg` in your Mod's current version directory. Now, for each item whose image you exported, follow the [Mod Version Data Format](https://github.com/andrewminer/crafting-guide/wiki/Mod-Version-Data-Format) reference to enter all the groups, items, recipes, and other information needed to describe your mod. Next is the hard part. From the last step, you should have a `mod-version.cg` in your Mod's current version directory. Now, for each item whose image you exported, follow the [Mod Version Data Format](https://github.com/andrewminer/crafting-guide/wiki/Mod-Version-Data-Format) reference to enter all the groups, items, recipes, and other information needed to describe your mod.
Be sure to test frequently using the `grunt test` command. Be sure to test frequently using the `grunt test` command, or run `grunt watch` to continuously run tests as you work.
## 7. Test Locally ## 7. Test Locally