Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
6 changes: 3 additions & 3 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
---
name: Report a bug
about: Any issues with the platform, unexpected behavior, etc.
title: ""
labels: ["🐛 bug"]
assignees: ""
title: ''
labels: ['🐛 bug']
assignees: ''
---

Found a bug? Please fill out the sections below. 👍
Expand Down
10 changes: 5 additions & 5 deletions .github/actions/bun-install/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@
# - node_modules directory #
########################################################################################

name: "Bun install"
description: "Run bun install with cache enabled"
name: 'Bun install'
description: 'Run bun install with cache enabled'
inputs:
node_version:
description: "Node.js version to use"
description: 'Node.js version to use'
required: false
default: v20.x

runs:
using: "composite"
using: 'composite'
steps:
- name: Use Node ${{ inputs.node_version }}
uses: buildjet/setup-node@v4
Expand All @@ -41,7 +41,7 @@ runs:
id: bun-nm-cache
uses: buildjet/cache@v4
with:
path: "**/node_modules/"
path: '**/node_modules/'
key: ${{ runner.os }}-bun-nm-cache-${{ hashFiles('bun.lockb', 'package.json') }}

- name: Install dependencies
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/dangerous-git-checkout/action.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Dangerous git Checkout
description: "Git Checkout from PR code so we can run checks from forks"
description: 'Git Checkout from PR code so we can run checks from forks'
runs:
using: "composite"
using: 'composite'
steps:
- name: Checkout repo
uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
version: 2
updates:
- package-ecosystem: npm
directory: "/"
directory: '/'
schedule:
interval: daily
target-branch: "main"
target-branch: 'main'
open-pull-requests-limit: 3
6 changes: 3 additions & 3 deletions .github/workflows/auto-pr-to-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ jobs:
uses: repo-sync/pull-request@v2
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
destination_branch: "main"
pr_title: "[dev] [${{ github.actor }}] ${{ github.ref_name }}"
pr_label: "automated-pr"
destination_branch: 'main'
pr_title: '[dev] [${{ github.actor }}] ${{ github.ref_name }}'
pr_label: 'automated-pr'
pr_body: |
This is an automated pull request to merge ${{ github.ref_name }} into dev.
It was created by the [Auto Pull Request] action.
6 changes: 3 additions & 3 deletions .github/workflows/auto-pr-to-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ jobs:
uses: repo-sync/pull-request@v2
continue-on-error: true
with:
destination_branch: "release"
destination_branch: 'release'
github_token: ${{ secrets.GITHUB_TOKEN }}
pr_label: "prod-deploy,automated-pr"
pr_title: "[${{ github.event.repository.name }}] Production Deploy"
pr_label: 'prod-deploy,automated-pr'
pr_title: '[${{ github.event.repository.name }}] Production Deploy'
pr_body: |
This is an automated pull request to release the candidate branch into production, which will trigger a deployment.
It was created by the [Production PR] action.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20" # Or your preferred Node.js version
node-version: '20' # Or your preferred Node.js version

- name: Setup Bun
uses: oven-sh/setup-bun@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/trigger-tasks-deploy-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: "22.x" # Updated to match Node.js w/ Vercel
node-version: '22.x' # Updated to match Node.js w/ Vercel
- name: Setup Bun
uses: oven-sh/setup-bun@v2
- name: Clear cache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/trigger-tasks-deploy-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: "20.x"
node-version: '20.x'

- name: Setup Bun
uses: oven-sh/setup-bun@v2
Expand Down
15 changes: 14 additions & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
{
"plugins": ["prettier-plugin-tailwindcss"]
"plugins": ["prettier-plugin-tailwindcss"],
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"useTabs": false,
"trailingComma": "all",
"printWidth": 100,
"bracketSpacing": true,
"arrowParens": "always",
"endOfLine": "lf",
"quoteProps": "as-needed",
"jsxSingleQuote": false,
"bracketSameLine": false,
"proseWrap": "preserve"
}
25 changes: 3 additions & 22 deletions .syncpackrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,7 @@
{
"label": "Ensure React is consistent",
"packages": ["**"],
"dependencies": [
"react",
"react-dom",
"@types/react",
"@types/react-dom",
"react-is"
],
"dependencies": ["react", "react-dom", "@types/react", "@types/react-dom", "react-is"],
"isIgnored": false
},
{
Expand All @@ -37,12 +31,7 @@
{
"label": "Ensure common build tools are consistent",
"packages": ["**"],
"dependencies": [
"postcss",
"tailwindcss",
"@tailwindcss/**",
"autoprefixer"
],
"dependencies": ["postcss", "tailwindcss", "@tailwindcss/**", "autoprefixer"],
"isIgnored": false
},
{
Expand All @@ -60,15 +49,7 @@
],
"lintRules": {
"forbiddenDependencies": {
"dependencies": [
"crypto",
"buffer",
"fs",
"path",
"os",
"install",
"npm"
],
"dependencies": ["crypto", "buffer", "fs", "path", "os", "install", "npm"],
"message": "This is a Node.js built-in module or a mistakenly added dependency"
}
}
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ Some environment variables may not load correctly from `.env` — in such cases,
- Create a project and copy the Project ID
- In `comp/apps/app/trigger.config.ts`, set:
```ts
project: "proj_****az***ywb**ob*";
project: 'proj_****az***ywb**ob*';
```

#### 2. Google OAuth
Expand Down Expand Up @@ -388,7 +388,7 @@ Steps to deploy Comp AI on Vercel are coming soon.

## Repo Activity

![Alt](https://repobeats.axiom.co/api/embed/1371c2fe20e274ff1e0e8d4ca225455dea609cb9.svg "Repobeats analytics image")
![Alt](https://repobeats.axiom.co/api/embed/1371c2fe20e274ff1e0e8d4ca225455dea609cb9.svg 'Repobeats analytics image')

<!-- LICENSE -->

Expand Down
Loading
Loading