Skip to content

Commit

Permalink
GitHub URL 정규표현식 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
rlaisqls committed Dec 2, 2023
1 parent 520da4d commit 5c73de4
Show file tree
Hide file tree
Showing 38 changed files with 25 additions and 10 deletions.
6 changes: 3 additions & 3 deletions build/asset-manifest.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"files": {
"main.css": "/static/css/main.86eb8c07.css",
"main.js": "/static/js/main.2a67447b.js",
"main.js": "/static/js/main.6ed81e78.js",
"static/js/787.1297335f.chunk.js": "/static/js/787.1297335f.chunk.js",
"index.html": "/index.html",
"main.86eb8c07.css.map": "/static/css/main.86eb8c07.css.map",
"main.2a67447b.js.map": "/static/js/main.2a67447b.js.map",
"main.6ed81e78.js.map": "/static/js/main.6ed81e78.js.map",
"787.1297335f.chunk.js.map": "/static/js/787.1297335f.chunk.js.map"
},
"entrypoints": [
"static/css/main.86eb8c07.css",
"static/js/main.2a67447b.js"
"static/js/main.6ed81e78.js"
]
}
2 changes: 1 addition & 1 deletion build/index.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="/xquare.png"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="Web site created using create-react-app"/><link rel="apple-touch-icon" href="/logo192.png"/><link rel="manifest" href="/manifest.json"/><title>프로젝트 등록</title><script defer="defer" src="/static/js/main.2a67447b.js"></script><link href="/static/css/main.86eb8c07.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="/xquare.png"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="Web site created using create-react-app"/><link rel="apple-touch-icon" href="/logo192.png"/><link rel="manifest" href="/manifest.json"/><title>프로젝트 등록</title><script defer="defer" src="/static/js/main.6ed81e78.js"></script><link href="/static/css/main.86eb8c07.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
1 change: 0 additions & 1 deletion build/static/js/main.2a67447b.js.map

This file was deleted.

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions build/static/js/main.6ed81e78.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion node_modules/.cache/.eslintcache

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Binary file modified node_modules/.cache/default-development/0.pack
Binary file not shown.
Binary file modified node_modules/.cache/default-development/1.pack
Binary file not shown.
Binary file modified node_modules/.cache/default-development/10.pack
Binary file not shown.
Binary file modified node_modules/.cache/default-development/11.pack
Binary file not shown.
Binary file modified node_modules/.cache/default-development/12.pack
Binary file not shown.
Binary file added node_modules/.cache/default-development/13.pack
Binary file not shown.
Binary file modified node_modules/.cache/default-development/2.pack
Binary file not shown.
Binary file modified node_modules/.cache/default-development/3.pack
Binary file not shown.
Binary file modified node_modules/.cache/default-development/5.pack
Binary file not shown.
Binary file modified node_modules/.cache/default-development/6.pack
Binary file not shown.
Binary file modified node_modules/.cache/default-development/7.pack
Binary file not shown.
Binary file modified node_modules/.cache/default-development/8.pack
Binary file not shown.
Binary file modified node_modules/.cache/default-development/9.pack
Binary file not shown.
Binary file modified node_modules/.cache/default-development/index.pack
Binary file not shown.
Binary file modified node_modules/.cache/default-development/index.pack.old
Binary file not shown.
2 changes: 1 addition & 1 deletion src/request/Request.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export const Request = () => {
const projectNameKrInput = useInput('', (value) => (value.trim() ? '' : '필수 항목입니다.'));
const projectNameEnInput = useInput('', (value) => (/^[a-z-]+$/.test(value) ? '' : '영어 소문자와 -(대시)만 사용할 수 있습니다.'));
const teamNameEnInput = useInput('', (value) => (/^[a-z-]+$/.test(value) ? '' : '영어 소문자와 -(대시)만 사용할 수 있습니다.'));
const githubLinkInput = useInput('', (value) => (/^https:\/\/github\.com\/[A-Za-z0-9_-]+\/[A-Za-z0-9_-]+$/.test(value) ? '' : '올바른 깃허브 URL이어야 합니다.'));
const githubLinkInput = useInput('', (value) => (/^https:\/\/github\.com\/[A-Za-z0-9_.-]+\/[A-Za-z0-9_.-]+$/.test(value) && !value.endsWith('.git') ? '' : '올바른 깃허브 URL이어야 합니다.'));
const githubOrganizationInput = useInput('', (value) => (/^[a-zA-Z0-9-\s]+$/.test(value) ? '' : '영어 대소문자, 숫자와 -(대시)만 사용할 수 있습니다.'));
const typeInput = useInput('', (value) => value === 'fe' || value === 'be' ? '' : 'ㅇㅅㅇ');

Expand Down

0 comments on commit 5c73de4

Please sign in to comment.