Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Basics #12

Merged
merged 51 commits into from
Oct 16, 2022
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
8af0765
updating feeds, refresh and remove
Sep 10, 2022
2e4480b
removing stitches
Sep 12, 2022
c7fcd2c
removing stitches
Sep 13, 2022
b11a3bd
virtualized lists
Sep 24, 2022
055b04d
back to workspaces
Sep 25, 2022
bacb1ab
adding testing scripts
Sep 25, 2022
a28970f
moving to dist
Sep 25, 2022
3c32f2c
adding browser extension
Sep 25, 2022
70786a0
adding rollup for server
Sep 25, 2022
d736731
Merge branch 'feature/basics' of https://github.com/charliewilco/reub…
Sep 25, 2022
1f00688
moving on up
Sep 25, 2022
ba0de04
removing formik
Sep 26, 2022
77bec48
yeppper
Sep 26, 2022
97293d0
moving recommendations
Sep 26, 2022
fa2b2d9
working through recommendations and resolvers
Sep 26, 2022
6a2585c
route shorthand
Sep 26, 2022
7fd883e
tags
Sep 27, 2022
5bcf82d
using 'generated' name
Sep 27, 2022
508d2a7
tags
Sep 30, 2022
42a0bca
starting extension
Oct 2, 2022
f95cdea
updating deps
Oct 2, 2022
b5f0b2b
adding tailwind
Oct 2, 2022
00e48c1
basic extension setup
Oct 2, 2022
ac6680c
remove unused.
Oct 2, 2022
8b732bd
changing filename
Oct 2, 2022
d65c0dd
moving into a src directory
Oct 2, 2022
23fb9a6
adding basic test
Oct 2, 2022
2d10a12
update feed tests
Oct 2, 2022
4957346
using msw
Oct 2, 2022
fff66cb
organizing the browser-extension
Oct 2, 2022
90e58ce
no more jsx in the extension, removed source maps so the compile time…
Oct 3, 2022
b882db2
updating builds
Oct 3, 2022
9a36958
updating action
Oct 3, 2022
899c84e
prisma types
Oct 3, 2022
4f6d837
ci to install
Oct 3, 2022
69f47d6
updating graphql setup, more tests and tagging
Oct 3, 2022
30a210d
tags
Oct 4, 2022
c45bdb5
v2 -> v3 manifest.json
Oct 5, 2022
09b62d9
.js to .cjs files
Oct 14, 2022
dee8651
bumping dev dependencies
Oct 16, 2022
64fdcc3
updating core deps
Oct 16, 2022
be25332
root for workspaces
Oct 16, 2022
d2efead
new scripts
Oct 16, 2022
1fcbd94
scripts & documentation
Oct 16, 2022
c2d3ec4
teeny tiny fixes
Oct 16, 2022
f1ee919
--no-optional
Oct 16, 2022
fff2e5f
using install no args
Oct 16, 2022
a387845
trying anything at this point
Oct 16, 2022
f348015
potential fix to turbo issue
Oct 16, 2022
ad9f984
v2 → v3 actions
Oct 16, 2022
8f769d7
trying to use .next cache in
Oct 16, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,4 @@ yarn-error.log*
.turbo

dist
.parcel-cache
15 changes: 15 additions & 0 deletions browser-extension/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"name": "@reubin/extension",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "parcel watch src/manifest.json --host localhost --config @parcel/config-webextension",
"build": "parcel build src/manifest.json --config @parcel/config-webextension",
"check": "tsc --noEmit"
},
"devDependencies": {
"@parcel/config-webextension": "^2.6.2",
"parcel": "^2.6.2",
"typescript": "^4.7.4"
}
}
11 changes: 11 additions & 0 deletions browser-extension/src/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"browser_action": {
"default_popup": "./popup.html"
},
"description": "Color of the Day",
"manifest_version": 2,
"name": "color-of-the-day",
"permissions": [],
"version": "1.0.0",
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}
11 changes: 11 additions & 0 deletions browser-extension/src/popup.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
</head>

<body>
<div id="app"></div>
<script type="module" src="./popup.ts"></script>
</body>
</html>
5 changes: 5 additions & 0 deletions browser-extension/src/popup.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
function main(): void {}

export {};

main();
5 changes: 5 additions & 0 deletions browser-extension/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"compilerOptions": {
"isolatedModules": true
}
}
Loading