Skip to content

Commit c3859a6

Browse files
authored
Update add-jqueryui-accordion-to-web-part.md
1 parent b4c29ad commit c3859a6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/spfx/web-parts/get-started/add-jqueryui-accordion-to-web-part.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,22 +77,22 @@ The developer toolchain uses Webpack, SystemJS, and CommonJS to bundle your web
7777
1. In the console, enter the following to install the jQuery npm package:
7878

7979
```
80-
npm install jquery@2
80+
npm install jquery@2 --save
8181
```
8282

8383
2. Now enter the following to install the jQueryUI npm package:
8484

8585
```
86-
npm install jqueryui
86+
npm install jqueryui --save
8787
```
8888

8989
Next, we need to install the typings for our project. Starting from TypeScript 2.0, we can use npm to install needed typings.
9090

9191
3. Open your console and install the needed types:
9292

9393
```
94-
npm install @types/jquery@2
95-
npm install @types/jqueryui
94+
npm install @types/jquery@2 --save
95+
npm install @types/jqueryui --save
9696
```
9797

9898
### To unbundle external dependencies from web part bundle

0 commit comments

Comments
 (0)