Skip to content

Commit fb2a716

Browse files
committed
Updated Typescript setup
1 parent b226984 commit fb2a716

File tree

3 files changed

+18
-6
lines changed
  • 14/umbraco-cms/customizing/development-flow
  • 15/umbraco-cms/customizing/development-flow
  • 16/umbraco-cms/customizing/development-flow

3 files changed

+18
-6
lines changed

14/umbraco-cms/customizing/development-flow/README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Use Node Version Manager (NVM) for [Windows](https://github.com/coreybutler/nvm-
1919

2020
## Package Setup
2121

22-
### App\_Plugins
22+
### App_Plugins
2323

2424
Extensions such as JavaScript, CSS, and manifests, will go into a folder called `App_Plugins`. If you do not have this folder, you can create it at the root of your Umbraco project.
2525

@@ -69,10 +69,14 @@ Make sure that you do not install any NPM dependencies directly into the `App_Pl
6969

7070
Umbraco publishes an NPM package called `@umbraco-cms/backoffice` that holds typings and other niceties to build extensions.
7171

72+
{% hint style="warning" %}
73+
Ensure that you install the version of the Backoffice package compatible with your Umbraco installation. You can find the appropriate version on the [@umbraco-cms/backoffice npm page](https://www.npmjs.com/package/@umbraco-cms/backoffice).
74+
{% endhint %}
75+
7276
You can install this package by running the command:
7377

7478
```bash
75-
npm install -D @umbraco-cms/backoffice
79+
npm install -D @umbraco-cms/backoffice@x.x.x
7680
```
7781

7882
This will add a package to your devDependencies containing the TypeScript definitions for the Umbraco Backoffice.

15/umbraco-cms/customizing/development-flow/README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Use Node Version Manager (NVM) for [Windows](https://github.com/coreybutler/nvm-
1717

1818
## Package Setup
1919

20-
### App\_Plugins
20+
### App_Plugins
2121

2222
Extensions such as JavaScript, CSS, and manifests, will go into a folder called `App_Plugins`. If you do not have this folder, you can create it at the root of your Umbraco project.
2323

@@ -67,10 +67,14 @@ Make sure that you do not install any NPM dependencies directly into the `App_Pl
6767

6868
Umbraco publishes an NPM package called `@umbraco-cms/backoffice` that holds typings and other niceties to build extensions.
6969

70+
{% hint style="warning" %}
71+
Ensure that you install the version of the Backoffice package compatible with your Umbraco installation. You can find the appropriate version on the [@umbraco-cms/backoffice npm page](https://www.npmjs.com/package/@umbraco-cms/backoffice).
72+
{% endhint %}
73+
7074
You can install this package by running the command:
7175

7276
```bash
73-
npm install -D @umbraco-cms/backoffice
77+
npm install -D @umbraco-cms/backoffice@x.x.x
7478
```
7579

7680
This will add a package to your devDependencies containing the TypeScript definitions for the Umbraco Backoffice.

16/umbraco-cms/customizing/development-flow/README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Use Node Version Manager (NVM) for [Windows](https://github.com/coreybutler/nvm-
1717

1818
## Package Setup
1919

20-
### App\_Plugins
20+
### App_Plugins
2121

2222
Extensions such as JavaScript, CSS, and manifests, will go into a folder called `App_Plugins`. If you do not have this folder, you can create it at the root of your Umbraco project.
2323

@@ -70,10 +70,14 @@ Make sure that you do not install any NPM dependencies directly into the `App_Pl
7070

7171
Umbraco publishes an NPM package called `@umbraco-cms/backoffice` that holds typings and other niceties to build extensions.
7272

73+
{% hint style="warning" %}
74+
Ensure that you install the version of the Backoffice package compatible with your Umbraco installation. You can find the appropriate version on the [@umbraco-cms/backoffice npm page](https://www.npmjs.com/package/@umbraco-cms/backoffice).
75+
{% endhint %}
76+
7377
You can install this package by running the command:
7478

7579
```bash
76-
npm install -D @umbraco-cms/backoffice
80+
npm install -D @umbraco-cms/backoffice@x.x.x
7781
```
7882

7983
This will add a package to your devDependencies containing the TypeScript definitions for the Umbraco Backoffice.

0 commit comments

Comments
 (0)