You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: DEVELOPER.md
+30-3Lines changed: 30 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,11 +18,14 @@ Follow these instructions to start up Sofie Core in development mode. (For produ
18
18
19
19
### Prerequisites
20
20
21
-
- Install [Node.js](https://nodejs.org) 18 (14 should also work) (using [nvm](https://github.com/nvm-sh/nvm) or [nvm-windows](https://github.com/coreybutler/nvm-windows) is the recommended way to install Node.js)
22
-
- If on Windows: `npm install --global windows-build-tools`
- Install [Node.js](https://nodejs.org) 14 (using [nvm](https://github.com/nvm-sh/nvm) or [nvm-windows](https://github.com/coreybutler/nvm-windows) is the recommended way to install Node.js)
- Install [Node.js](https://nodejs.org) 18 (using the same method you used above, you can uninstall node 14 if needed)
24
+
- Install an older version of corepack (`npm install --global [email protected]`)
24
25
- Enable [corepack](https://nodejs.org/api/corepack.html#corepack) (`corepack enable`) as administrator/root. If `corepack` is not found, you may need to install it first with `npm install --global corepack`
25
26
27
+
- If on Windows, you may need to `npm install --global windows-build-tools` but this is not always necessary
28
+
26
29
### Quick Start
27
30
28
31
```bash
@@ -129,6 +132,30 @@ The resulting JSON file will be placed in `meteor/public/locales/xx`, where it w
129
132
130
133
Then submit this as a PR.
131
134
135
+
## Deprecations
136
+
137
+
### ConfigManifests
138
+
139
+
The ConfigManifests for Blueprints and Gateways was replaced with JSONSchema in R50.
140
+
However, one usage by AdlibActions for their userDataManifest remains as this is not something we are actively using.
141
+
142
+
## Blueprint Migrations
143
+
144
+
In R49, a replacement flow was added consisting of `validateConfig` and `applyConfig`.
145
+
It is no longer recommended to use the old migrations flow for showstyle and studio blueprints.
146
+
147
+
### ExpectedMediaItems
148
+
149
+
These are used for Media-manager which is no longer being developed.
0 commit comments