@vidispine/cra-template-vdt 22.2.0-pre.1 → 22.2.0-pre.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -0
- package/package.json +9 -9
- package/template.json +5 -5
package/README.md
CHANGED
|
@@ -8,6 +8,7 @@ This is a base vdt template for [Create React App](https://github.com/facebook/c
|
|
|
8
8
|
|
|
9
9
|
```shell
|
|
10
10
|
yarn create react-app my-vdt-app --template @vidispine/vdt@latest
|
|
11
|
+
# or "@next" for latest pre-release
|
|
11
12
|
cd my-vdt-app
|
|
12
13
|
REACT_APP_VIDISPINE_URL=https://example.myvidispine.com yarn start
|
|
13
14
|
```
|
|
@@ -18,6 +19,7 @@ _(yarn create is available in Yarn 0.25+)_
|
|
|
18
19
|
|
|
19
20
|
```shell
|
|
20
21
|
npx create-react-app my-vdt-app --template @vidispine/vdt@latest
|
|
22
|
+
# or "@next" for latest pre-release
|
|
21
23
|
cd my-vdt-app
|
|
22
24
|
REACT_APP_VIDISPINE_URL=https://example.myvidispine.com npm start
|
|
23
25
|
```
|
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vidispine/cra-template-vdt",
|
|
3
|
-
"version": "22.2.0-pre.
|
|
3
|
+
"version": "22.2.0-pre.2",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
5
|
-
"
|
|
5
|
+
"private": false,
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"access": "public"
|
|
8
8
|
},
|
|
9
|
+
"description": "CRA template using vdt packages",
|
|
10
|
+
"homepage": "https://vidispine.github.io/vdt?path=/docs/start-here-template-cra--page",
|
|
9
11
|
"repository": {
|
|
10
12
|
"type": "git",
|
|
11
|
-
"url": "
|
|
12
|
-
|
|
13
|
-
"bugs": {
|
|
14
|
-
"url": "https://github.com/vidispine/vdt/issues"
|
|
13
|
+
"url": "https://github.com/vidispine/vdt.git",
|
|
14
|
+
"directory": "packages/cra-template-vdt"
|
|
15
15
|
},
|
|
16
16
|
"scripts": {
|
|
17
17
|
"lint": "eslint \"{template/**/*,*}.{js,md}\"",
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
"template.json"
|
|
23
23
|
],
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"@vidispine/eslint-config": "^22.2.0-pre.
|
|
26
|
-
"@vidispine/prettier-config": "^22.2.0-pre.
|
|
25
|
+
"@vidispine/eslint-config": "^22.2.0-pre.2",
|
|
26
|
+
"@vidispine/prettier-config": "^22.2.0-pre.2"
|
|
27
27
|
},
|
|
28
28
|
"eslintConfig": {
|
|
29
29
|
"extends": [
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
}
|
|
36
36
|
},
|
|
37
37
|
"prettier": "@vidispine/prettier-config",
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "c7b5349500b1f354c9bd3ce40ac32a382c74ae51"
|
|
39
39
|
}
|
package/template.json
CHANGED
|
@@ -8,9 +8,9 @@
|
|
|
8
8
|
"@material-ui/core": "^4.11.1",
|
|
9
9
|
"@material-ui/icons": "^4.9.1",
|
|
10
10
|
"@material-ui/lab": "^4.0.0-alpha.56",
|
|
11
|
-
"@vidispine/vdt-api": "~22.2.0-pre.
|
|
12
|
-
"@vidispine/vdt-materialui": "~22.2.0-pre.
|
|
13
|
-
"@vidispine/vdt-react": "~22.2.0-pre.
|
|
11
|
+
"@vidispine/vdt-api": "~22.2.0-pre.2",
|
|
12
|
+
"@vidispine/vdt-materialui": "~22.2.0-pre.2",
|
|
13
|
+
"@vidispine/vdt-react": "~22.2.0-pre.2",
|
|
14
14
|
"clsx": "^1.1.1",
|
|
15
15
|
"react": "^17.0.2",
|
|
16
16
|
"react-dom": "^17.0.2",
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"typeface-roboto": "^0.0.75"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
|
-
"@vidispine/eslint-config": "~22.2.0-pre.
|
|
23
|
-
"@vidispine/prettier-config": "~22.2.0-pre.
|
|
22
|
+
"@vidispine/eslint-config": "~22.2.0-pre.2",
|
|
23
|
+
"@vidispine/prettier-config": "~22.2.0-pre.2",
|
|
24
24
|
"http-proxy-middleware": "^1.3.1",
|
|
25
25
|
"prettier": "^2.5.1"
|
|
26
26
|
},
|