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
9 changes: 5 additions & 4 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,14 @@ The following selections do not need to be completed if this PR only contains ch

- Template Metadata
- [ ] template directory ends with `-template`
- [ ] "cloudflare" section of package.json is populated
- [ ] "cloudflare" section of `package.json` is populated
- [ ] template preview image uploaded to Images
- [ ] README is populated and uses `<!-- dash-content-start -->` and `<!-- dash-content-end -->` to designate the Dash readme preview
- [ ] package.json contains a `deploy` command
- [ ] package.json contains `private: true` and no `version` field
- [ ] `.gitignore` file exists
- [ ] `package.json` contains a `deploy` command
- [ ] `package.json` contains `private: true` and no `version` field

## Example package.json
## Example `package.json`

```json
"private": true,
Expand Down
43 changes: 30 additions & 13 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Created by https://www.toptal.com/developers/gitignore/api/node,macos
# Edit at https://www.toptal.com/developers/gitignore?templates=node,macos
# Created by https://www.toptal.com/developers/gitignore/api/macos,node,git
# Edit at https://www.toptal.com/developers/gitignore?templates=macos,node,git

### Git ###
# Created by git for backups. To disable backups in Git:
# $ git config --global mergetool.keepBackup false
*.orig

# Created by git when using merge tools for conflicts
*.BACKUP.*
*.BASE.*
*.LOCAL.*
*.REMOTE.*
*_BACKUP_*.txt
*_BASE_*.txt
*_LOCAL_*.txt
*_REMOTE_*.txt

### macOS ###
# General
Expand All @@ -10,6 +25,7 @@
# Icon must end with two \r
Icon


# Thumbnails
._*

Expand All @@ -29,6 +45,10 @@ Network Trash Folder
Temporary Items
.apdisk

### macOS Patch ###
# iCloud generated files
*.icloud

### Node ###
# Logs
logs
Expand Down Expand Up @@ -74,10 +94,6 @@ build/Release
node_modules/
jspm_packages/

# Moved from ./templates for ignoring all locks in templates
templates/**/*-lock.*
templates/**/*.lock

# Snowpack dependency directory (https://snowpack.dev/)
web_modules/

Expand Down Expand Up @@ -173,17 +189,18 @@ dist
# SvelteKit build / generate output
.svelte-kit

# End of https://www.toptal.com/developers/gitignore/api/node,macos
# End of https://www.toptal.com/developers/gitignore/api/macos,node,git

# Wrangler output
### Wrangler ###
.wrangler/
build/
.env*
!.env.example
.dev.vars*
!.dev.vars.example

# Turbo output
### Turbo ###
.turbo/

# Playwright
### Playwright ###
/test-results/
/playwright-report/
/blob-report/
/playwright/.cache/
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ env.d.ts
.open-next
.astro
.react-router
*/build/

pnpm-lock.yaml
templates.json
Expand Down
Loading