Skip to content

Commit

Permalink
extension styling such that website content is not affected https://t…
Browse files Browse the repository at this point in the history
  • Loading branch information
Dhravya committed Apr 10, 2024
1 parent e5992e8 commit feea1a2
Show file tree
Hide file tree
Showing 75 changed files with 4,951 additions and 2,675 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const config = {
"next/core-web-vitals",
"plugin:@typescript-eslint/recommended-type-checked",
"plugin:@typescript-eslint/stylistic-type-checked",
"plugin:eslint-plugin-next-on-pages/recommended"
"plugin:eslint-plugin-next-on-pages/recommended",
],
rules: {
// These opinionated rules are enabled in stylistic-type-checked above.
Expand Down
8 changes: 4 additions & 4 deletions .github/actions/buildextension/action.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: 'Build Chrome extension'
description: 'Builds the chrome extension into a ZIP'
name: "Build Chrome extension"
description: "Builds the chrome extension into a ZIP"
runs:
using: 'composite'
using: "composite"
steps:
- name: Setup Bun
uses: oven-sh/setup-bun@v1
Expand All @@ -26,4 +26,4 @@ runs:
uses: actions/upload-artifact@v3
with:
name: extension-${{ github.sha }}
path: apps/extension/dist/extension-${{ github.sha }}.zip
path: apps/extension/dist/extension-${{ github.sha }}.zip
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ on:
push:
branches: [main]
paths:
- 'apps/web/**'
- 'apps/extension/**'
- 'apps/cf-ai-backend/**'
- "apps/web/**"
- "apps/extension/**"
- "apps/cf-ai-backend/**"
pull_request:
branches: [main]
paths:
- 'apps/web/**'
- 'apps/extension/**'
- 'apps/cf-ai-backend/**'
- "apps/web/**"
- "apps/extension/**"
- "apps/cf-ai-backend/**"

jobs:
build-extension:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Upload to Web Store
on:
push:
tags:
- '*'
- "*"
jobs:
build-extension:
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
.next
.wrangler
drizzle/
dist/

node_modules

Expand Down
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
**/.gitignore
26 changes: 13 additions & 13 deletions apps/cf-ai-backend/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "cf-ai-backend",
"version": "0.0.0",
"private": true,
"scripts": {
"deploy": "wrangler deploy",
"dev": "wrangler dev",
"start": "wrangler dev"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240222.0",
"typescript": "^5.0.4",
"wrangler": "^3.0.0"
}
"name": "cf-ai-backend",
"version": "0.0.0",
"private": true,
"scripts": {
"deploy": "wrangler deploy",
"dev": "wrangler dev",
"start": "wrangler dev"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240222.0",
"typescript": "^5.0.4",
"wrangler": "^3.0.0"
}
}
Loading

0 comments on commit feea1a2

Please sign in to comment.