@theoplayer/web-ui 1.4.0 → 1.6.0
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/CHANGELOG.md +62 -0
- package/LICENSE.md +1 -1
- package/README.md +10 -10
- package/dist/THEOplayerUI.d.ts +414 -58
- package/dist/THEOplayerUI.es5.js +2 -2
- package/dist/THEOplayerUI.es5.mjs +1 -1
- package/dist/THEOplayerUI.js +20 -20
- package/dist/THEOplayerUI.js.map +1 -1
- package/dist/THEOplayerUI.mjs +19 -19
- package/dist/THEOplayerUI.mjs.map +1 -1
- package/package.json +17 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theoplayer/web-ui",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.0",
|
|
4
4
|
"description": "UI component library for the THEOplayer Web SDK",
|
|
5
5
|
"main": "dist/THEOplayerUI.js",
|
|
6
6
|
"module": "dist/THEOplayerUI.mjs",
|
|
@@ -19,7 +19,9 @@
|
|
|
19
19
|
"./dist/*": "./dist/*"
|
|
20
20
|
},
|
|
21
21
|
"files": [
|
|
22
|
-
"dist/"
|
|
22
|
+
"dist/",
|
|
23
|
+
"CHANGELOG.md",
|
|
24
|
+
"LICENSE.md"
|
|
23
25
|
],
|
|
24
26
|
"scripts": {
|
|
25
27
|
"build": "npm run build:prod",
|
|
@@ -27,15 +29,17 @@
|
|
|
27
29
|
"build:prod": "rollup -c --environment BUILD:production",
|
|
28
30
|
"watch": "rollup -c --watch",
|
|
29
31
|
"watch:docs": "npm run watch -- --configOutputDir ./docs/_site/dist",
|
|
30
|
-
"start": "cd docs && bundle exec jekyll serve --force_polling",
|
|
32
|
+
"start": "cd docs && bundle exec jekyll serve --host localhost --force_polling",
|
|
31
33
|
"format": "prettier --write .",
|
|
32
34
|
"test": "npm run test:format && npm run test:typecheck",
|
|
33
35
|
"test:format": "prettier --check .",
|
|
34
36
|
"test:typecheck": "tsc --project . --noEmit",
|
|
35
37
|
"docs": "typedoc --treatWarningsAsErrors",
|
|
36
38
|
"docs:watch": "typedoc --watch",
|
|
37
|
-
"
|
|
38
|
-
"version": "node bump-changelog.mjs && git add CHANGELOG.md"
|
|
39
|
+
"version": "npm run version:changelog && npm run version:deps && npm run version:react",
|
|
40
|
+
"version:changelog": "node scripts/bump-changelog.mjs web-ui CHANGELOG.md && git add CHANGELOG.md",
|
|
41
|
+
"version:deps": "cross-env-shell \"npm install $npm_package_name@$npm_package_version --workspace react && git add react/package.json\"",
|
|
42
|
+
"version:react": "cross-env-shell \"npm version $npm_package_version --workspace react --no-git-tag-version && git add react/package.json\""
|
|
39
43
|
},
|
|
40
44
|
"keywords": [],
|
|
41
45
|
"author": "THEO Technologies",
|
|
@@ -44,7 +48,7 @@
|
|
|
44
48
|
"bugs": "https://github.com/THEOplayer/web-ui/issues",
|
|
45
49
|
"repository": {
|
|
46
50
|
"type": "git",
|
|
47
|
-
"url": "https://github.com/THEOplayer/web-ui.git"
|
|
51
|
+
"url": "git+https://github.com/THEOplayer/web-ui.git"
|
|
48
52
|
},
|
|
49
53
|
"peerDependencies": {
|
|
50
54
|
"theoplayer": "^6"
|
|
@@ -58,6 +62,7 @@
|
|
|
58
62
|
"@types/html-minifier": "^4.0.3",
|
|
59
63
|
"@webcomponents/shadycss": "^1.11.2",
|
|
60
64
|
"@webcomponents/webcomponentsjs": "^2.8.0",
|
|
65
|
+
"cross-env": "^7.0.3",
|
|
61
66
|
"html-minifier": "^4.0.0",
|
|
62
67
|
"postcss": "^8.4.30",
|
|
63
68
|
"postcss-mixins": "^9.0.4",
|
|
@@ -70,7 +75,8 @@
|
|
|
70
75
|
"rollup-plugin-swc3": "^0.8.2",
|
|
71
76
|
"theoplayer": "^6.0.0",
|
|
72
77
|
"tslib": "^2.6.2",
|
|
73
|
-
"typedoc": "^0.
|
|
78
|
+
"typedoc": "^0.25.7",
|
|
79
|
+
"typedoc-plugin-mdn-links": "^3.1.14",
|
|
74
80
|
"typescript": "^5.1.6"
|
|
75
81
|
},
|
|
76
82
|
"browserslist": [
|
|
@@ -78,5 +84,9 @@
|
|
|
78
84
|
"not dead",
|
|
79
85
|
"chrome >= 67",
|
|
80
86
|
"firefox esr"
|
|
87
|
+
],
|
|
88
|
+
"workspaces": [
|
|
89
|
+
".",
|
|
90
|
+
"react"
|
|
81
91
|
]
|
|
82
92
|
}
|