Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit 28f84a3

Browse files
committed
Updating ignore
1 parent f103a97 commit 28f84a3

8 files changed

Lines changed: 6 additions & 146 deletions

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
node_modules/
1+
node_modules/
2+
dist/

dist/index.d.ts

Lines changed: 0 additions & 10 deletions
This file was deleted.

dist/index.d.ts.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

dist/react-hls-player.js

Lines changed: 0 additions & 3 deletions
This file was deleted.

dist/react-hls-player.js.LICENSE.txt

Lines changed: 0 additions & 125 deletions
This file was deleted.

dist/react-hls-player.js.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "react-hls-player",
3-
"version": "2.0.0",
3+
"version": "3.0.0",
44
"description": "A simple and easy to use react component for playing an hls live stream",
55
"main": "./dist/react-hls-player.js",
66
"types": "./dist",
77
"scripts": {
88
"test": "echo \"Error: no test specified\" && exit 1",
99
"start": "webpack serve --config webpack/webpack.dev.js",
10-
"build": "webpack --config webpack/webpack.prod.js",
10+
"build": "tsc",
1111
"prepublishOnly": "npm run build",
1212
"prepare": "install-peers"
1313
},

tsconfig.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,15 @@
44
"target": "ES5",
55
"module": "ES6",
66
"declaration": true,
7-
"declarationMap": true,
87
"esModuleInterop": true,
98
"moduleResolution": "node",
109
"removeComments": true,
1110
"jsx": "react",
12-
"sourceMap": true,
1311
"strict": true,
1412
"noImplicitAny": true,
1513
"allowJs": true,
16-
"skipLibCheck": true
14+
"skipLibCheck": true,
15+
"strictNullChecks": true
1716
},
1817
"exclude": ["node_modules", "./dist"],
1918
"include": ["src"]

0 commit comments

Comments
 (0)