Skip to content

Commit 9cc54cc

Browse files
committed
Added missing item in content table
Update build guide
1 parent dce46a4 commit 9cc54cc

File tree

1 file changed

+18
-5
lines changed

1 file changed

+18
-5
lines changed

README.md

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ This repository does not provide any instructions on how to modify any Supercell
1818
- [Issues](#issues)
1919
- [Requirements](#requirements)
2020
- [Installing](#installing)
21+
- [Update](#update)
2122
- [Dependencies](#dependecies)
2223
- [Building](#building)
2324
- [Examples](#examples)
@@ -136,6 +137,8 @@ By default, ```.jsfl``` is associated with Animate, so you can double-click on i
136137
After installation is complete, be sure to restart Animate.
137138
If you want to remove plugin, run ```install.jsfl``` again, and this time you will see a confirmation button.
138139

140+
<br/>
141+
139142
# Update
140143
If you have an already installed plugin and want to update, run installation file and <strong>remove</strong> plugin, restart Animate and install plugin as usual.
141144

@@ -171,12 +174,18 @@ Before starting you need to have:
171174
- [Typescript and ts-node](https://www.npmjs.com/package/ts-node)
172175
- MSVC Build tools (Visual Studio)
173176

174-
Instruction will be divided into 2 parts, instructions for building Plugin and Publish settings
177+
Instruction will be divided into 3 parts, instructions for building Plugin and Publish settings
175178

176-
- PublishSettings
177-
Open console in "publisher" folder and enter following command to install all dependencies needed for build:
179+
- Installer
180+
Install node modules inside the ```installer``` folder with command:
178181
`
179-
npm i --save-dev
182+
npm install
183+
`
184+
185+
- Publish Settings
186+
Open console in ```publisher``` folder and enter following command to install all dependencies needed for build:
187+
`
188+
npm install --save-dev
180189
`
181190
After installation, try to start local server with command:
182191
`
@@ -185,7 +194,11 @@ Instruction will be divided into 2 parts, instructions for building Plugin and P
185194
Try opening `localhost:8080` in your browser. If page works and you see the publisher interface, then everything is OK!
186195

187196
- Plugin
188-
Make sure you have installed Visual Studio with C++ build tools and also cmake which should be in system variables or PATH. That's all!
197+
Install node modules inside the ```plugin``` folder with command:
198+
`
199+
npm install
200+
`
201+
And make sure you have installed Visual Studio with C++ build tools and also cmake which should be in system variables or PATH. That's all!
189202

190203
Next, after preparing all modules, you need to open console in root of repository.
191204
- Debug

0 commit comments

Comments
 (0)