Skip to content

Commit eda3038

Browse files
committed
🔖 Release 0.2.0
1 parent c201ac7 commit eda3038

File tree

11 files changed

+855
-2461
lines changed

11 files changed

+855
-2461
lines changed

.eslintignore

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

.eslintrc.js

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

.github/workflows/build.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@ jobs:
1616

1717
- uses: actions/setup-node@v3
1818

19-
- uses: pnpm/action-setup@v2
19+
- name: Setup pnpm
20+
uses: pnpm/action-setup@v4
21+
with:
22+
version: latest
2023

2124
- name: Install dependencies
2225
run: pnpm install
@@ -30,5 +33,5 @@ jobs:
3033
- name: Upload artifacts
3134
uses: actions/upload-artifact@v2
3235
with:
33-
name: bilibili-live-game-web.user.js
34-
path: ./dist/bilibili-live-game-web.user.js
36+
name: bliveweb.user.js
37+
path: ./dist/bliveweb.user.js

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# BilibiliLiveGameWeb
1+
# BLiveWeb
22

33
> 求求你们,别折腾自己家主播了。——[白夜Tira](https://t.bilibili.com/847139701670281225)
44
@@ -11,9 +11,9 @@
1111

1212
### 2. 安装脚本
1313

14-
| ghproxy 源 | GitHub 源 | Greasy Fork 源 |
15-
-------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------- |
16-
| [安装](https://ghproxy.com/https://github.com/ProgramRipper/BilibiliLiveGameWeb/releases/latest/download/bilibili-live-game-web.user.js) | [安装](https://github.com/ProgramRipper/BilibiliLiveGameWeb/releases/latest/download/bilibili-live-game-web.user.js) | [安装](https://greasyfork.org/scripts/476537-b-%E7%AB%99%E7%BD%91%E9%A1%B5%E7%AB%AF%E7%9B%B4%E6%92%AD%E6%B8%B8%E6%88%8F/code/B%20%E7%AB%99%E7%BD%91%E9%A1%B5%E7%AB%AF%E7%9B%B4%E6%92%AD%E6%B8%B8%E6%88%8F.user.js) |
14+
| ghproxy 源 | GitHub 源 | Greasy Fork 源 |
15+
| ---------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
16+
| [安装](https://mirror.ghproxy.com/https://github.com/ProgramRipper/BLiveWeb/releases/latest/download/bliveweb.user.js) | [安装](https://github.com/ProgramRipper/BLiveWeb/releases/latest/download/bliveweb.user.js) | [安装](https://greasyfork.org/scripts/476537-b-%E7%AB%99%E7%BD%91%E9%A1%B5%E7%AB%AF%E7%9B%B4%E6%92%AD/code/B%20%E7%AB%99%E7%BD%91%E9%A1%B5%E7%AB%AF%E7%9B%B4%E6%92%AD.user.js) |
1717

1818
### 3. 开始直播
1919

package.json

Lines changed: 16 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,35 @@
11
{
2-
"name": "bilibili-live-game-web",
2+
"name": "bliveweb",
33
"private": true,
4-
"version": "0.1.0",
5-
"description": "在 B 站网页端开播游戏",
4+
"version": "0.2.0",
5+
"description": "在 B 站网页端开播",
66
"keywords": [
77
"bilibili",
88
"tampermonkey",
99
"userscript"
1010
],
11-
"homepage": "https://github.com/ProgramRipper/BilibiliLiveGameWeb",
11+
"homepage": "https://github.com/ProgramRipper/BLiveWeb",
1212
"bugs": {
13-
"url": "https://github.com/ProgramRipper/BilibiliLiveGameWeb/issues",
13+
"url": "https://github.com/ProgramRipper/BLiveWeb/issues",
1414
"email": "[email protected]"
1515
},
1616
"license": "MIT",
1717
"author": "ProgramRipper <[email protected]> (https://github.com/ProgramRipper)",
18-
"repository": "github:ProgramRipper/BilibiliLiveGameWeb",
19-
"packageManager": "[email protected]",
18+
"repository": "github:ProgramRipper/BLiveWeb",
2019
"scripts": {
21-
"build": "pnpm build:prod",
22-
"build:dev": "webpack --mode=development",
23-
"build:prod": "webpack --mode=production --node-env=production",
24-
"check": "npm-run-all lint-check type-check",
25-
"lint-check": "eslint . --ext .ts --quiet",
26-
"type-check": "tsc --noEmit",
27-
"lint": "eslint --quiet --fix . --ext .ts",
20+
"build": "webpack --mode=production --node-env=production",
21+
"format": "prettier -w .",
22+
"check": "prettier -c .; tsc --noEmit",
2823
"watch": "webpack --watch"
2924
},
3025
"devDependencies": {
31-
"@types/node": "^20.8.0",
32-
"@typescript-eslint/eslint-plugin": "^6.4.0",
33-
"eslint": "^8.0.1",
34-
"eslint-config-standard-with-typescript": "^39.1.0",
35-
"eslint-plugin-import": "^2.25.2",
36-
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
37-
"eslint-plugin-promise": "^6.0.0",
38-
"npm-run-all": "^4.1.5",
39-
"terser-webpack-plugin": "^5.3.9",
40-
"ts-loader": "^9.4.4",
41-
"ts-node": "^10.9.1",
42-
"typescript": "^5.2.2",
43-
"webpack": "^5.88.2",
26+
"@types/node": "^20.14.2",
27+
"prettier": "^3.3.2",
28+
"terser-webpack-plugin": "^5.3.10",
29+
"ts-loader": "^9.5.1",
30+
"ts-node": "^10.9.2",
31+
"typescript": "^5.4.5",
32+
"webpack": "^5.92.0",
4433
"webpack-cli": "^5.1.4"
4534
}
4635
}

0 commit comments

Comments
 (0)