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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
762 changes: 762 additions & 0 deletions docs/skills/epic-auth/SKILL.md

Large diffs are not rendered by default.

554 changes: 554 additions & 0 deletions docs/skills/epic-caching/SKILL.md

Large diffs are not rendered by default.

758 changes: 758 additions & 0 deletions docs/skills/epic-database/SKILL.md

Large diffs are not rendered by default.

745 changes: 745 additions & 0 deletions docs/skills/epic-deployment/SKILL.md

Large diffs are not rendered by default.

737 changes: 737 additions & 0 deletions docs/skills/epic-forms/SKILL.md

Large diffs are not rendered by default.

537 changes: 537 additions & 0 deletions docs/skills/epic-permissions/SKILL.md

Large diffs are not rendered by default.

643 changes: 643 additions & 0 deletions docs/skills/epic-react-patterns/SKILL.md

Large diffs are not rendered by default.

425 changes: 425 additions & 0 deletions docs/skills/epic-routing/SKILL.md

Large diffs are not rendered by default.

553 changes: 553 additions & 0 deletions docs/skills/epic-security/SKILL.md

Large diffs are not rendered by default.

589 changes: 589 additions & 0 deletions docs/skills/epic-testing/SKILL.md

Large diffs are not rendered by default.

667 changes: 667 additions & 0 deletions docs/skills/epic-ui-guidelines/SKILL.md

Large diffs are not rendered by default.

7 changes: 3 additions & 4 deletions remix.init/index.mjs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import toml from '@iarna/toml'

Check warning on line 1 in remix.init/index.mjs

View workflow job for this annotation

GitHub Actions / ⬣ ESLint

`@iarna/toml` import should occur after import of `node:path`
import { $ } from 'execa'

Check warning on line 2 in remix.init/index.mjs

View workflow job for this annotation

GitHub Actions / ⬣ ESLint

`execa` import should occur after import of `node:path`
import inquirer from 'inquirer'

Check warning on line 3 in remix.init/index.mjs

View workflow job for this annotation

GitHub Actions / ⬣ ESLint

`inquirer` import should occur after import of `node:path`
import { execSync } from 'node:child_process'
import crypto from 'node:crypto'
import fs from 'node:fs/promises'
import path from 'node:path'
import toml from '@iarna/toml'
import { $ } from 'execa'
import inquirer from 'inquirer'
import open from 'open'
import parseGitHubURL from 'parse-github-url'

Expand Down Expand Up @@ -90,7 +90,6 @@
),
fs.rm(path.join(rootDirectory, 'LICENSE.md')),
fs.rm(path.join(rootDirectory, 'CONTRIBUTING.md')),
fs.rm(path.join(rootDirectory, 'docs'), { recursive: true }),
fs.rm(path.join(rootDirectory, 'tests/e2e/notes.test.ts')),
fs.rm(path.join(rootDirectory, 'tests/e2e/search.test.ts')),
]
Expand Down