@vidispine/vdt-js 23.1.0 → 23.2.0-pre.1
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/dist/index.d.ts +1275 -1205
- package/dist/index.es.js +151 -599
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +153 -598
- package/dist/index.js.map +1 -1
- package/package.json +14 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vidispine/vdt-js",
|
|
3
|
-
"version": "23.
|
|
3
|
+
"version": "23.2.0-pre.1",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -17,13 +17,15 @@
|
|
|
17
17
|
"module": "dist/index.es.js",
|
|
18
18
|
"sideEffects": false,
|
|
19
19
|
"scripts": {
|
|
20
|
-
"
|
|
21
|
-
"build
|
|
20
|
+
"clean": "rimraf dist && rimraf build/tsconfig.tsbuildinfo",
|
|
21
|
+
"build": "yarn clean && yarn tsc && rollup -c",
|
|
22
|
+
"build:watch": "yarn concurrently -r -k \"yarn tsc --watch --preserveWatchOutput\" \"rollup -c -w --environment DEVELOPMENT\"",
|
|
22
23
|
"build:docs": "yarn typedoc --out ../../docs/build/vdt-js",
|
|
23
|
-
"start:docs": "rimraf build/docs && yarn concurrently \"yarn typedoc --watch --preserveWatchOutput --cleanOutputDir false\" \"yarn live-server --port=2002 --quiet --wait=
|
|
24
|
+
"start:docs": "rimraf build/docs && yarn concurrently -r -k \"yarn typedoc --watch --preserveWatchOutput --cleanOutputDir false\" \"yarn live-server --port=2002 --quiet --wait=8000 --no-browser ./build/docs\"",
|
|
24
25
|
"type-check": "tsc --noEmit --emitDeclarationOnly false",
|
|
25
26
|
"typedoc-check": "yarn typedoc --emit none --treatWarningsAsErrors --validation.invalidLink true --validation.notExported true --validation.notDocumented true",
|
|
26
|
-
"lint": "yarn type-check && eslint . --
|
|
27
|
+
"lint": "yarn type-check && eslint . --max-warnings=0",
|
|
28
|
+
"format": "prettier . --check"
|
|
27
29
|
},
|
|
28
30
|
"dependencies": {
|
|
29
31
|
"@babel/runtime": "^7.21.0",
|
|
@@ -39,19 +41,20 @@
|
|
|
39
41
|
"@rollup/plugin-commonjs": "21.1.0",
|
|
40
42
|
"@rollup/plugin-node-resolve": "13.3.0",
|
|
41
43
|
"@types/jest": "28.1.8",
|
|
42
|
-
"@vidispine/eslint-config-base": "23.
|
|
43
|
-
"@vidispine/eslint-config-mdx": "23.
|
|
44
|
-
"@vidispine/eslint-config-storybook": "23.
|
|
45
|
-
"@vidispine/eslint-config-typescript": "23.
|
|
46
|
-
"@vidispine/types": "23.
|
|
44
|
+
"@vidispine/eslint-config-base": "23.2.0-pre.1",
|
|
45
|
+
"@vidispine/eslint-config-mdx": "23.2.0-pre.1",
|
|
46
|
+
"@vidispine/eslint-config-storybook": "23.2.0-pre.1",
|
|
47
|
+
"@vidispine/eslint-config-typescript": "23.2.0-pre.1",
|
|
48
|
+
"@vidispine/types": "23.2.0-pre.1",
|
|
47
49
|
"concurrently": "7.6.0",
|
|
50
|
+
"esbuild": "0.17.10",
|
|
48
51
|
"eslint": "8.34.0",
|
|
49
52
|
"live-server": "1.2.2",
|
|
50
53
|
"prettier": "2.8.4",
|
|
51
54
|
"rimraf": "3.0.2",
|
|
52
55
|
"rollup": "2.79.1",
|
|
53
56
|
"rollup-plugin-dts": "4.2.3",
|
|
54
|
-
"rollup-plugin-
|
|
57
|
+
"rollup-plugin-esbuild": "5.0.0",
|
|
55
58
|
"typedoc": "0.23.25",
|
|
56
59
|
"typedoc-plugin-missing-exports": "1.0.0",
|
|
57
60
|
"typescript": "4.9.5"
|