Skip to content

Commit 4815b2d

Browse files
authored
Merge pull request #20 from mountainash/chore/deps-updates
📦 Dependency Updates (& convert to Bun & ESM)
2 parents 2478b0a + bba5b8f commit 4815b2d

21 files changed

+154
-12626
lines changed

.babelrc

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

.eslintrc.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"es6": true,
5+
"mocha": true
6+
},
7+
"extends": [
8+
"standard"
9+
],
10+
"parserOptions": {
11+
"ecmaVersion": 12,
12+
"sourceType": "module"
13+
},
14+
"globals": {
15+
"chrome": "readonly"
16+
},
17+
"rules": {}
18+
}

.eslintrc.yml

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

.github/workflows/cd.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,10 @@ jobs:
77
build:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v2
11-
- uses: actions/setup-node@v1
12-
with:
13-
node-version: 14.16
14-
- run: npm install
15-
- run: npm run build
10+
- uses: actions/checkout@v4
11+
- uses: oven-sh/setup-bun@v1
12+
- run: bun install
13+
- run: bun run build
1614
- name: Create youtube-music-dl.zip
1715
uses: thedoctor0/zip-release@master
1816
with:

.github/workflows/ci.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,8 @@ jobs:
55
lint-and-test:
66
runs-on: ubuntu-latest
77
steps:
8-
- uses: actions/checkout@v2
9-
- uses: actions/setup-node@v1
10-
with:
11-
node-version: 14.16
12-
- run: npm install
13-
- run: npm run lint
14-
- run: npm test
8+
- uses: actions/checkout@v4
9+
- uses: oven-sh/setup-bun@v1
10+
- run: bun install
11+
- run: bun run lint
12+
- run: bun test

.tool-versions

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

bun.lockb

195 KB
Binary file not shown.

manifest.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
{
22
"manifest_version": 2,
33
"name": "YouTube Music DL",
4-
"version": "1.1",
4+
"version": "1.3.0",
55
"description": "YouTube Music Downloader. Download music file with tags and cover.",
66
"permissions": [
77
"background",
88
"declarativeContent",
99
"activeTab",
1010
"tabs",
1111
"downloads",
12-
"*://music.youtube.com/",
13-
"*://www.youtube.com/",
14-
"*://*.googlevideo.com/",
15-
"*://i.ytimg.com/"
12+
"https://music.youtube.com/",
13+
"https://www.youtube.com/",
14+
"https://*.googlevideo.com/",
15+
"https://i.ytimg.com/"
1616
],
1717
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
1818
"background": {
@@ -28,7 +28,7 @@
2828
"content_scripts": [
2929
{
3030
"matches": [
31-
"*://music.youtube.com/*"
31+
"https://music.youtube.com/*"
3232
],
3333
"js": [
3434
"content.js"

0 commit comments

Comments
 (0)