Skip to content

Commit

Permalink
chore: 불필요한 파일 삭제 및 이미지 에셋 파일로 이동
Browse files Browse the repository at this point in the history
  • Loading branch information
kangju2000 committed Sep 24, 2024
1 parent 2bb14e3 commit 3484d63
Show file tree
Hide file tree
Showing 15 changed files with 10 additions and 215 deletions.
33 changes: 0 additions & 33 deletions .github/workflows/ci.yml

This file was deleted.

12 changes: 6 additions & 6 deletions manifest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ export default defineManifest(async () => ({
default_title: 'popup',
default_popup: 'src/popup/index.html',
default_icon: {
'16': 'logo16.png',
'48': 'logo48.png',
'128': 'logo128.png',
'16': 'assets/logo16.png',
'48': 'assets/logo48.png',
'128': 'assets/logo128.png',
},
},
icons: {
'16': 'logo16.png',
'48': 'logo48.png',
'128': 'logo128.png',
'16': 'assets/logo16.png',
'48': 'assets/logo48.png',
'128': 'assets/logo128.png',
},
background: {
service_worker: 'src/background/index.ts',
Expand Down
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
},
"devDependencies": {
"@crxjs/vite-plugin": "^1.0.14",
"@playwright/test": "^1.39.0",
"@thedutchcoder/postcss-rem-to-px": "^0.0.2",
"@types/chrome": "^0.0.268",
"@types/node": "^20.8.9",
Expand Down
77 changes: 0 additions & 77 deletions playwright.config.ts

This file was deleted.

File renamed without changes
File renamed without changes
File renamed without changes
2 changes: 1 addition & 1 deletion src/utils/allProgress.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export default async function allProgress<T>(promise: Promise<T>[], callback: (progress: number) => void) {
export async function allProgress<T>(promise: Promise<T>[], callback: (progress: number) => void) {
let d = 0
callback(0)
for (const p of promise) {
Expand Down
2 changes: 1 addition & 1 deletion src/utils/getLinkId.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export default function getLinkId(link: string) {
export function getLinkId(link: string) {
if (!link) return ''
return new URL(link).searchParams.get('id')
}
5 changes: 2 additions & 3 deletions src/utils/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
export { default as pipe } from './pipe'
export { default as allProgress } from './allProgress'
export { default as getLinkId } from './getLinkId'
export { allProgress } from './allProgress'
export { getLinkId } from './getLinkId'
export * from './cheerioUtils'
8 changes: 0 additions & 8 deletions src/utils/mapElement.ts

This file was deleted.

7 changes: 0 additions & 7 deletions src/utils/pipe.ts

This file was deleted.

8 changes: 0 additions & 8 deletions tests/e2e/content.spec.ts

This file was deleted.

26 changes: 0 additions & 26 deletions tests/e2e/fixtures.ts

This file was deleted.

44 changes: 0 additions & 44 deletions tests/unit/util.test.ts

This file was deleted.

0 comments on commit 3484d63

Please sign in to comment.