Skip to content

Commit

Permalink
Pass with no tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Bendel authored and Chris Bendel committed Dec 31, 2023
1 parent 80239be commit b747f58
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ jobs:
cache: 'yarn'
- run: yarn install
- run: yarn build:hmr
- run: yarn test
- run: yarn test --passWithNoTests
- run: yarn build
19 changes: 3 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,33 +15,20 @@
5. Post on reddit, invite new developers in
6. Figure out long term next steps

## Features <a name="features"></a>
- [React 18](https://reactjs.org/)
- [TypeScript](https://www.typescriptlang.org/)
- [Jest](https://jestjs.io/)
- [React Testing Library](https://testing-library.com/docs/react-testing-library/intro/)
- [Vite](https://vitejs.dev/)
- [SASS](https://sass-lang.com/)
- [ESLint](https://eslint.org/)
- [Prettier](https://prettier.io/)
- [Chrome Extension Manifest Version 3](https://developer.chrome.com/docs/extensions/mv3/intro/)
- HRR(Hot Rebuild & Refresh/Reload)

## Installation & Running <a name="installation"></a>
1. Run `yarn install` or `npm i` (check your node version >= 16.6, recommended >= 18)
2. Run `yarn dev` or `npm run dev`
1. Run `yarn install` (check your node version >= 16.6, recommended >= 18)
2. Run `yarn build && yarn dev`
3. Load Extension on Chrome
1. Open - Chrome browser
2. Access - chrome://extensions
3. Check - Developer mode
4. Find - Load unpacked extension
5. Select - `dist` folder in this project (after dev or build)
4. If you want to build in production, Just run `yarn build`.
4. If you want to build for production, run `yarn build` before deploying.

## Documents <a name="documents"></a>
- [Vite Plugin](https://vitejs.dev/guide/api-plugin.html)
- [ChromeExtension](https://developer.chrome.com/docs/extensions/mv3/)
- [Rollup](https://rollupjs.org/guide/en/)
- [Rollup-plugin-chrome-extension](https://www.extend-chrome.dev/rollup-plugin)
- [Streamsaver](https://github.com/jimmywarting/StreamSaver.js)
-
2 changes: 1 addition & 1 deletion src/pages/content/components/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ const DownloadButton: FC<{ show: ArchiveShow }> = ({ show }) => {
}}
disabled={loading}
>
Download Show
{loading ? "Downloading... Please be patient :)" : "Download Show"}
</button>
);
};

0 comments on commit b747f58

Please sign in to comment.