Skip to content

Commit af09e50

Browse files
authored
Merge pull request #1 from cometloop/feat/move-to-sep-repo
feat: initial commit
2 parents 7f9a8e9 + 5e43eb1 commit af09e50

101 files changed

Lines changed: 25291 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

‎.eslintrc.js‎

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/** @type {import("eslint").Linter.Config} */
2+
module.exports = {
3+
root: true,
4+
extends: ['@core/eslint-config/index.js'],
5+
}

‎.github/workflows/deploy-docs.yml‎

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
name: Deploy Documentation
2+
3+
on:
4+
push:
5+
branches: [main]
6+
7+
permissions:
8+
contents: read
9+
pages: write
10+
id-token: write
11+
12+
concurrency:
13+
group: pages
14+
cancel-in-progress: false
15+
16+
jobs:
17+
build:
18+
runs-on: ubuntu-latest
19+
steps:
20+
- uses: actions/checkout@v4
21+
22+
- uses: pnpm/action-setup@v4
23+
24+
- uses: actions/setup-node@v4
25+
with:
26+
node-version: 20
27+
cache: pnpm
28+
29+
- run: pnpm install --frozen-lockfile
30+
31+
- run: pnpm build --filter=@cometloop/safe
32+
env:
33+
NODE_ENV: production
34+
35+
- name: Build documentation website
36+
run: pnpm --filter tailwind-plus-syntax build
37+
env:
38+
GITHUB_PAGES: 'true'
39+
40+
- uses: actions/upload-pages-artifact@v3
41+
with:
42+
path: apps/documentation-website/out
43+
44+
deploy:
45+
needs: build
46+
runs-on: ubuntu-latest
47+
environment:
48+
name: github-pages
49+
url: ${{ steps.deployment.outputs.page_url }}
50+
steps:
51+
- id: deployment
52+
uses: actions/deploy-pages@v4

‎.gitignore‎

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
.DS_Store
2+
node_modules
3+
.pnpm-store
4+
.turbo
5+
*.log
6+
dist
7+
dist-ssr
8+
*.local
9+
.env
10+
.cache
11+
server/dist
12+
public/dist
13+
*coverage
14+
storybook-static
15+
.next
16+
.claude
17+
CLAUDE.md

‎.prettierrc‎

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"semi": false,
3+
"singleQuote": true,
4+
"jsxSingleQuote": false,
5+
"trailingComma": "es5"
6+
}

‎.vscode/settings.json‎

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"eslint.workingDirectories": [
3+
{
4+
"mode": "auto"
5+
}
6+
],
7+
8+
"files.readonlyInclude": {
9+
"**/routeTree.gen.ts": true
10+
},
11+
"files.watcherExclude": {
12+
"**/routeTree.gen.ts": true
13+
},
14+
"search.exclude": {
15+
"**/routeTree.gen.ts": true
16+
},
17+
"css.lint.unknownAtRules": "ignore"
18+
}

0 commit comments

Comments
 (0)