1
0
Fork 0

the last repo

This commit is contained in:
wadder12 2024-02-10 14:41:59 -06:00
commit b988f6e0ee
5847 changed files with 306709 additions and 0 deletions

38
.codesandbox/tasks.json Normal file
View file

@ -0,0 +1,38 @@
{
// These tasks will run in order when initializing your CodeSandbox project.
"setupTasks": [
{
"name": "Set yarn version",
"command": "yarn set version berry"
},
{
"name": "Install Dependencies",
"command": "yarn install"
},
{
"name": "Build dependencies",
"command": "yarn build:lib"
},
{
"name": "Start dev server",
"command": "yarn dev"
}
],
// These tasks can be run from CodeSandbox. Running one will open a log in the app.
"tasks": {
"build:lib": {
"name": "build:lib",
"command": "yarn build:lib",
"runAtStart": false
},
"dev": {
"name": "dev",
"command": "yarn dev",
"runAtStart": true,
"preview": {
"port": 4200
}
}
}
}

38
.github/ISSUE_TEMPLATE/bug_report.md vendored Normal file
View file

@ -0,0 +1,38 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
assignees: ''
---
**Describe the bug**
A clear and concise description of what the bug is.
**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
**Expected behavior**
A clear and concise description of what you expected to happen.
**Screenshots**
If applicable, add screenshots to help explain your problem.
**Desktop (please complete the following information):**
- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]
**Smartphone (please complete the following information):**
- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]
**Additional context**
Add any other context about the problem here.

View file

@ -0,0 +1,20 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: ''
assignees: ''
---
**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
**Describe the solution you'd like**
A clear and concise description of what you want to happen.
**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.
**Additional context**
Add any other context or screenshots about the feature request here.

36
.gitignore vendored Normal file
View file

@ -0,0 +1,36 @@
# ignore DS_Store
.DS_Store
# yarn v2 and zero install list
# https://yarnpkg.com/getting-started/qa#which-files-should-be-gitignored
.yarn/*
!.yarn/cache
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
# ignore build files
dist/
!.yarn/**/dist
# ignore npm files
package-lock.json
node_modules/
!.yarn/unplugged/**/node_modules/
# Coverage directory used by tools like istanbul
coverage
.vscode/*.log
.env
# ignore eslint cache
.eslintcache
# typescript
*.tsbuildinfo
**/*.map

10
.prettierrc Normal file
View file

@ -0,0 +1,10 @@
{
"$schema": "http://json.schemastore.org/prettierrc",
"useTabs": false,
"tabWidth": 2,
"printWidth": 120,
"singleQuote": true,
"jsxSingleQuote": true,
"trailingComma": "none",
"semi": true
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show more