cafe-video-player 3.0.17 → 3.0.19

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cafe-video-player",
3
- "version": "3.0.17",
3
+ "version": "3.0.19",
4
4
  "private": false,
5
5
  "main": "./index.cjs",
6
6
  "module": "./index.js",
@@ -9,7 +9,8 @@
9
9
  ".": {
10
10
  "import": "./index.js",
11
11
  "require": "./index.cjs"
12
- }
12
+ },
13
+ "./videoPlayerStyles.css": "./videoPlayerStyles.css"
13
14
  },
14
15
  "scripts": {
15
16
  "dev": "next dev",
@@ -17,7 +18,7 @@
17
18
  "build": "next build",
18
19
  "start": "next start",
19
20
  "lint": "eslint . --ext .ts,.tsx,.js,.jsx",
20
- "tailwind-build": "npx tailwindcss -i ./src/app/globals.css -o ./dist/videoPlayerStyles.css",
21
+ "tailwind-build": "npx tailwindcss -i ./src/app/globals.css -o ./dist/videoPlayerStyles.css --minify",
21
22
  "copy-assets": "@powershell copy package.json ./dist && @powershell copy README.md ./dist && copyfiles -f ./src/videoPlayerLibrary/styles/font/*.woff2 ./dist/font",
22
23
  "tsup-build": "rimraf dist && tsup && npm run copy-assets && npm run tailwind-build",
23
24
  "tsup-publish": "npm run tsup-build && npm publish ./dist",