-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: migrate to turborepo - popup project now be placed under apps/popup - declare shared tsconfig package - a few packages are going to be added soon * chore: make shared modules as a standalone package - fix vite configurations to avoid import error * chore: update package script for turborepo * chore: move image resources to root directory * doc: update README * chore: update turbo.json - add output for build caching - add lint task
- Loading branch information
Showing
51 changed files
with
542 additions
and
715 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ npm-*.log | |
node_modules/ | ||
.DS_Store | ||
|
||
.turbo | ||
build/ | ||
dist/ | ||
dist.zip | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
{ | ||
"name": "popup", | ||
"version": "1.2.9", | ||
"type": "module", | ||
"scripts": { | ||
"dev": "vite", | ||
"check-types": "tsc -b --noEmit", | ||
"build": "vite build", | ||
"lint": "eslint src --ext ts,tsx" | ||
}, | ||
"dependencies": { | ||
"@sentry/react": "^6.13.3", | ||
"antd": "^5.18.2", | ||
"axios": "^1.7.2", | ||
"copy-to-clipboard": "^3.3.3", | ||
"react": "^18.3.1", | ||
"react-dom": "^18.3.1", | ||
"react-icons": "^5.2.1", | ||
"recoil": "^0.7.7", | ||
"styled-components": "^6.1.11" | ||
}, | ||
"devDependencies": { | ||
"@repo/shared": "*", | ||
"@repo/tsconfig": "*", | ||
"@types/chrome": "^0.0.268", | ||
"@types/clipboard": "^2.0.1", | ||
"@types/firefox-webext-browser": "^120.0.4", | ||
"@types/node": "^18.6.5", | ||
"@types/react": "^18.3.3", | ||
"@types/react-dom": "^18.3.0", | ||
"@types/styled-components": "^5.1.34", | ||
"@typescript-eslint/eslint-plugin": "^7.13.0", | ||
"@typescript-eslint/parser": "^7.13.0", | ||
"@vitejs/plugin-react": "^4.3.1", | ||
"eslint": "^8", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-import": "^2.29.1", | ||
"eslint-plugin-react-hooks": "^4.6.2", | ||
"eslint-plugin-react-refresh": "^0.4.7", | ||
"prettier": "3.3.2", | ||
"typescript": "^5.4.5", | ||
"vite": "^5.3.1" | ||
} | ||
} |
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
src/hooks/useAddressSearch.ts → apps/popup/src/hooks/useAddressSearch.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/// <reference types="vite/client" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"extends": "@repo/tsconfig/vite.json", | ||
"compilerOptions": { | ||
"baseUrl": ".", | ||
"paths": { | ||
"@/*": ["src/*"] | ||
}, | ||
}, | ||
"include": ["src/"] | ||
} |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"extends": "@repo/tsconfig/node.json", | ||
"compilerOptions": { | ||
"noEmit": true | ||
}, | ||
"include": ["vite.config.ts"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,52 +1,28 @@ | ||
{ | ||
"name": "kor-address-extension", | ||
"private": true, | ||
"version": "1.2.0", | ||
"main": "dist/index.js", | ||
"type": "module", | ||
"repository": "[email protected]:Jaewoook/kor-address-extension.git", | ||
"author": "Jaewook Ahn <ajw4586@gmail.com>", | ||
"author": "Jaewook Ahn <dev.jaewook@gmail.com>", | ||
"license": "MIT", | ||
"scripts": { | ||
"build": "tsc -b && vite build", | ||
"dev": "vite", | ||
"preview": "vite preview", | ||
"lint": "eslint src --ext ts,tsx", | ||
"build": "turbo build", | ||
"dev": "turbo dev", | ||
"check-types": "turbo check-types", | ||
"lint": "turbo lint", | ||
"package": "node scripts/CreatePackage.js", | ||
"postpackage": "node scripts/CreateDistribution.js" | ||
}, | ||
"devDependencies": { | ||
"@types/chrome": "^0.0.268", | ||
"@types/clipboard": "^2.0.1", | ||
"@types/firefox-webext-browser": "^120.0.4", | ||
"@types/fs-extra": "^11.0.4", | ||
"@types/node": "^18.6.5", | ||
"@types/react": "^18.3.3", | ||
"@types/react-dom": "^18.3.0", | ||
"@types/styled-components": "^5.1.34", | ||
"@typescript-eslint/eslint-plugin": "^7.13.0", | ||
"@typescript-eslint/parser": "^7.13.0", | ||
"@vitejs/plugin-react": "^4.3.1", | ||
"archiver": "^5.3.1", | ||
"archiver": "^5.0.0", | ||
"chalk": "^4.1.0", | ||
"eslint": "^8", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-import": "^2.29.1", | ||
"eslint-plugin-react-hooks": "^4.6.2", | ||
"eslint-plugin-react-refresh": "^0.4.7", | ||
"fs-extra": "^10.1.0", | ||
"prettier": "3.3.2", | ||
"typescript": "^5.4.5", | ||
"vite": "^5.3.1" | ||
"turbo": "^2.0.5" | ||
}, | ||
"dependencies": { | ||
"@sentry/react": "^6.13.3", | ||
"antd": "^5.18.2", | ||
"axios": "^1.7.2", | ||
"copy-to-clipboard": "^3.3.3", | ||
"react": "^18.3.1", | ||
"react-dom": "^18.3.1", | ||
"react-icons": "^5.2.1", | ||
"recoil": "^0.7.7", | ||
"styled-components": "^6.1.11" | ||
} | ||
"workspaces": [ | ||
"apps/*", | ||
"packages/*" | ||
], | ||
"packageManager": "[email protected]" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export {}; |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"name": "@repo/shared", | ||
"version": "0.0.0", | ||
"private": true, | ||
"main": "src/index.ts", | ||
"devDependencies": { | ||
"@types/chrome": "^0.0.268", | ||
"@types/firefox-webext-browser": "^120.0.4", | ||
"typescript": "^5.4.5" | ||
} | ||
} |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"extends": "@repo//tsconfig/vite.json", | ||
"include": ["*.ts", "models"] | ||
} |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"name": "@repo/tsconfig", | ||
"version": "0.0.0", | ||
"private": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.