diff --git a/source/.eslintignore b/.eslintignore similarity index 100% rename from source/.eslintignore rename to .eslintignore diff --git a/source/.eslintrc b/.eslintrc similarity index 100% rename from source/.eslintrc rename to .eslintrc diff --git a/.github/workflows/firebase-hosting-deploy.yml b/.github/workflows/firebase-hosting-deploy.yml index bdee957..99a187e 100644 --- a/.github/workflows/firebase-hosting-deploy.yml +++ b/.github/workflows/firebase-hosting-deploy.yml @@ -17,14 +17,14 @@ jobs: with: node-version: 16 cache: yarn - cache-dependency-path: source/yarn.lock + cache-dependency-path: yarn.lock - name: Install dependencies and Build - run: cd source && yarn install && yarn build + run: yarn install && yarn build - name: Archive Production Artifact uses: actions/upload-artifact@master with: name: build - path: source/build + path: build deploy: if: ${{ github.repository_owner == 'developomp' }} @@ -38,7 +38,7 @@ jobs: uses: actions/download-artifact@master with: name: build - path: source/build + path: build - name: Set target uses: w9jds/firebase-action@master with: diff --git a/.gitignore b/.gitignore index 847d051..877b4d2 100644 --- a/.gitignore +++ b/.gitignore @@ -2,10 +2,10 @@ _/ # auto generated files -source/src/data/ -!source/src/data/NavbarData.tsx -source/public/img/skills.svg -source/public/img/projects.svg +/src/data/ +!/src/data/NavbarData.tsx +/public/img/skills.svg +/public/img/projects.svg # dependencies .pnp/ diff --git a/README.md b/README.md index 1e54d63..4a6c3a9 100644 --- a/README.md +++ b/README.md @@ -19,19 +19,13 @@ Source code for my (developomp's) = [ - { - title: "Home", - path: "/", - icon: , - }, - { - title: "About", - path: "/about", - icon: , - }, - { - title: "Portfolio", - path: "/portfolio", - icon: , - }, -] - -export default NavbarData diff --git a/source/src/App.tsx b/src/App.tsx similarity index 100% rename from source/src/App.tsx rename to src/App.tsx diff --git a/source/src/components/Badge.tsx b/src/components/Badge.tsx similarity index 100% rename from source/src/components/Badge.tsx rename to src/components/Badge.tsx diff --git a/source/src/components/Card.tsx b/src/components/Card.tsx similarity index 100% rename from source/src/components/Card.tsx rename to src/components/Card.tsx diff --git a/source/src/components/Footer.tsx b/src/components/Footer.tsx similarity index 100% rename from source/src/components/Footer.tsx rename to src/components/Footer.tsx diff --git a/source/src/components/GithubLinkIcon.tsx b/src/components/GithubLinkIcon.tsx similarity index 100% rename from source/src/components/GithubLinkIcon.tsx rename to src/components/GithubLinkIcon.tsx diff --git a/source/src/components/Loading.tsx b/src/components/Loading.tsx similarity index 100% rename from source/src/components/Loading.tsx rename to src/components/Loading.tsx diff --git a/source/src/components/MainContent.tsx b/src/components/MainContent.tsx similarity index 100% rename from source/src/components/MainContent.tsx rename to src/components/MainContent.tsx diff --git a/source/src/components/Navbar.tsx b/src/components/Navbar.tsx similarity index 100% rename from source/src/components/Navbar.tsx rename to src/components/Navbar.tsx diff --git a/source/src/components/PostCard.tsx b/src/components/PostCard.tsx similarity index 100% rename from source/src/components/PostCard.tsx rename to src/components/PostCard.tsx diff --git a/source/src/components/ReadProgress.tsx b/src/components/ReadProgress.tsx similarity index 100% rename from source/src/components/ReadProgress.tsx rename to src/components/ReadProgress.tsx diff --git a/source/src/components/Sidebar.tsx b/src/components/Sidebar.tsx similarity index 100% rename from source/src/components/Sidebar.tsx rename to src/components/Sidebar.tsx diff --git a/source/src/components/SubMenu.tsx b/src/components/SubMenu.tsx similarity index 100% rename from source/src/components/SubMenu.tsx rename to src/components/SubMenu.tsx diff --git a/source/src/components/Tag.tsx b/src/components/Tag.tsx similarity index 100% rename from source/src/components/Tag.tsx rename to src/components/Tag.tsx diff --git a/source/src/components/TagList.tsx b/src/components/TagList.tsx similarity index 100% rename from source/src/components/TagList.tsx rename to src/components/TagList.tsx diff --git a/source/src/components/ThemeToggleButton.tsx b/src/components/ThemeToggleButton.tsx similarity index 100% rename from source/src/components/ThemeToggleButton.tsx rename to src/components/ThemeToggleButton.tsx diff --git a/source/src/index.tsx b/src/index.tsx similarity index 100% rename from source/src/index.tsx rename to src/index.tsx diff --git a/source/src/pages/NotFound.tsx b/src/pages/NotFound.tsx similarity index 100% rename from source/src/pages/NotFound.tsx rename to src/pages/NotFound.tsx diff --git a/source/src/pages/Page/Meta.tsx b/src/pages/Page/Meta.tsx similarity index 100% rename from source/src/pages/Page/Meta.tsx rename to src/pages/Page/Meta.tsx diff --git a/source/src/pages/Page/SeriesControlButtons.tsx b/src/pages/Page/SeriesControlButtons.tsx similarity index 100% rename from source/src/pages/Page/SeriesControlButtons.tsx rename to src/pages/Page/SeriesControlButtons.tsx diff --git a/source/src/pages/Page/Toc.tsx b/src/pages/Page/Toc.tsx similarity index 100% rename from source/src/pages/Page/Toc.tsx rename to src/pages/Page/Toc.tsx diff --git a/source/src/pages/Page/index.tsx b/src/pages/Page/index.tsx similarity index 100% rename from source/src/pages/Page/index.tsx rename to src/pages/Page/index.tsx diff --git a/source/src/pages/Portfolio/ProjectCard.tsx b/src/pages/Portfolio/ProjectCard.tsx similarity index 100% rename from source/src/pages/Portfolio/ProjectCard.tsx rename to src/pages/Portfolio/ProjectCard.tsx diff --git a/source/src/pages/Portfolio/index.tsx b/src/pages/Portfolio/index.tsx similarity index 100% rename from source/src/pages/Portfolio/index.tsx rename to src/pages/Portfolio/index.tsx diff --git a/source/src/pages/PostList/ShowMoreButton.tsx b/src/pages/PostList/ShowMoreButton.tsx similarity index 100% rename from source/src/pages/PostList/ShowMoreButton.tsx rename to src/pages/PostList/ShowMoreButton.tsx diff --git a/source/src/pages/PostList/index.tsx b/src/pages/PostList/index.tsx similarity index 100% rename from source/src/pages/PostList/index.tsx rename to src/pages/PostList/index.tsx diff --git a/source/src/pages/Search/DateRange.tsx b/src/pages/Search/DateRange.tsx similarity index 100% rename from source/src/pages/Search/DateRange.tsx rename to src/pages/Search/DateRange.tsx diff --git a/source/src/pages/Search/SearchBar.tsx b/src/pages/Search/SearchBar.tsx similarity index 100% rename from source/src/pages/Search/SearchBar.tsx rename to src/pages/Search/SearchBar.tsx diff --git a/source/src/pages/Search/TagSelect.tsx b/src/pages/Search/TagSelect.tsx similarity index 100% rename from source/src/pages/Search/TagSelect.tsx rename to src/pages/Search/TagSelect.tsx diff --git a/source/src/pages/Search/index.tsx b/src/pages/Search/index.tsx similarity index 100% rename from source/src/pages/Search/index.tsx rename to src/pages/Search/index.tsx diff --git a/source/src/react-app-env.d.ts b/src/react-app-env.d.ts similarity index 100% rename from source/src/react-app-env.d.ts rename to src/react-app-env.d.ts diff --git a/source/src/styles/codeblock-dark.ts b/src/styles/codeblock-dark.ts similarity index 95% rename from source/src/styles/codeblock-dark.ts rename to src/styles/codeblock-dark.ts index 7823f60..b8e40a2 100644 --- a/source/src/styles/codeblock-dark.ts +++ b/src/styles/codeblock-dark.ts @@ -1,5 +1,5 @@ /** - * from source/node_modules/highlight.js/styles/atom-one-dark-reasonable.css + * from node_modules/highlight.js/styles/atom-one-dark-reasonable.css */ import { css } from "styled-components" diff --git a/source/src/styles/codeblock-light.ts b/src/styles/codeblock-light.ts similarity index 95% rename from source/src/styles/codeblock-light.ts rename to src/styles/codeblock-light.ts index ea1789e..5f253aa 100644 --- a/source/src/styles/codeblock-light.ts +++ b/src/styles/codeblock-light.ts @@ -1,5 +1,5 @@ /** - * from source/node_modules/highlight.js/styles/default.css + * from node_modules/highlight.js/styles/default.css */ import { css } from "styled-components" diff --git a/source/src/styles/globalStyle.tsx b/src/styles/globalStyle.tsx similarity index 100% rename from source/src/styles/globalStyle.tsx rename to src/styles/globalStyle.tsx diff --git a/source/src/styles/theming.ts b/src/styles/theming.ts similarity index 100% rename from source/src/styles/theming.ts rename to src/styles/theming.ts diff --git a/source/tsconfig.json b/tsconfig.json similarity index 100% rename from source/tsconfig.json rename to tsconfig.json diff --git a/source/types/markdown-it-footnote.d.ts b/types/markdown-it-footnote.d.ts similarity index 100% rename from source/types/markdown-it-footnote.d.ts rename to types/markdown-it-footnote.d.ts diff --git a/source/types/markdown-it-highlight-lines.d.ts b/types/markdown-it-highlight-lines.d.ts similarity index 100% rename from source/types/markdown-it-highlight-lines.d.ts rename to types/markdown-it-highlight-lines.d.ts diff --git a/source/types/markdown-it-mark.d.ts b/types/markdown-it-mark.d.ts similarity index 100% rename from source/types/markdown-it-mark.d.ts rename to types/markdown-it-mark.d.ts diff --git a/source/types/markdown-it-sub.d.ts b/types/markdown-it-sub.d.ts similarity index 100% rename from source/types/markdown-it-sub.d.ts rename to types/markdown-it-sub.d.ts diff --git a/source/types/markdown-it-sup.d.ts b/types/markdown-it-sup.d.ts similarity index 100% rename from source/types/markdown-it-sup.d.ts rename to types/markdown-it-sup.d.ts diff --git a/source/types/markdown-it-task-checkbox.d.ts b/types/markdown-it-task-checkbox.d.ts similarity index 100% rename from source/types/markdown-it-task-checkbox.d.ts rename to types/markdown-it-task-checkbox.d.ts diff --git a/source/types/markdown-it-texmath.d.ts b/types/markdown-it-texmath.d.ts similarity index 100% rename from source/types/markdown-it-texmath.d.ts rename to types/markdown-it-texmath.d.ts diff --git a/source/types/markdown-toc.d.ts b/types/markdown-toc.d.ts similarity index 100% rename from source/types/markdown-toc.d.ts rename to types/markdown-toc.d.ts diff --git a/source/types/react-date-range.d.ts b/types/react-date-range.d.ts similarity index 100% rename from source/types/react-date-range.d.ts rename to types/react-date-range.d.ts diff --git a/source/types/read-time-estimate.d.ts b/types/read-time-estimate.d.ts similarity index 100% rename from source/types/read-time-estimate.d.ts rename to types/read-time-estimate.d.ts diff --git a/source/types/styled-components.ts b/types/styled-components.ts similarity index 100% rename from source/types/styled-components.ts rename to types/styled-components.ts diff --git a/source/types/types.ts b/types/types.ts similarity index 100% rename from source/types/types.ts rename to types/types.ts diff --git a/source/yarn.lock b/yarn.lock similarity index 100% rename from source/yarn.lock rename to yarn.lock