Skip to content

Commit

Permalink
feat: remove dependency on daisyui
Browse files Browse the repository at this point in the history
  • Loading branch information
xmlking committed Aug 28, 2023
1 parent ce7ae70 commit 1b86025
Show file tree
Hide file tree
Showing 38 changed files with 1,842 additions and 1,953 deletions.
80 changes: 80 additions & 0 deletions .github/ISSUE_TEMPLATE/BUG-REPORT.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
name: "🐛 Bug Report"
description: Create a new ticket for a bug.
title: "🐛 [BUG] - <title>"
labels: [
"bug"
]
body:
- type: textarea
id: description
attributes:
label: "Description"
description: Please enter an explicit description of your issue
placeholder: Short and explicit description of your incident...
validations:
required: true
- type: input
id: reprod-url
attributes:
label: "Reproduction URL"
description: Please enter your GitHub URL to provide a reproduction of the issue
placeholder: ex. https://github.com/USERNAME/REPO-NAME
validations:
required: true
- type: textarea
id: reprod
attributes:
label: "Reproduction steps"
description: Please enter an explicit description of your issue
value: |
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
render: bash
validations:
required: true
- type: textarea
id: screenshot
attributes:
label: "Screenshots"
description: If applicable, add screenshots to help explain your problem.
value: |
![DESCRIPTION](LINK.png)
render: bash
validations:
required: false
- type: textarea
id: logs
attributes:
label: "Logs"
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
render: bash
validations:
required: false
- type: dropdown
id: browsers
attributes:
label: "Browsers"
description: What browsers are you seeing the problem on ?
multiple: true
options:
- Firefox
- Chrome
- Safari
- Microsoft Edge
- Opera
validations:
required: false
- type: dropdown
id: os
attributes:
label: "OS"
description: What is the impacted environment ?
multiple: true
options:
- Windows
- Linux
- Mac
validations:
required: false
63 changes: 63 additions & 0 deletions .github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
name: "💡 Feature Request"
description: Create a new ticket for a new feature request
title: "💡 [REQUEST] - <title>"
labels: [
"question"
]
body:
- type: input
id: start_date
attributes:
label: "Start Date"
description: Start of development
placeholder: "month/day/year"
validations:
required: false
- type: textarea
id: implementation_pr
attributes:
label: "Implementation PR"
description: Pull request used
placeholder: "#Pull Request ID"
validations:
required: false
- type: textarea
id: reference_issues
attributes:
label: "Reference Issues"
description: Common issues
placeholder: "#Issues IDs"
validations:
required: false
- type: textarea
id: summary
attributes:
label: "Summary"
description: Provide a brief explanation of the feature
placeholder: Describe in a few lines your feature request
validations:
required: true
- type: textarea
id: basic_example
attributes:
label: "Basic Example"
description: Indicate here some basic examples of your feature.
placeholder: A few specific words about your feature request.
validations:
required: true
- type: textarea
id: drawbacks
attributes:
label: "Drawbacks"
description: What are the drawbacks/impacts of your feature request ?
placeholder: Identify the drawbacks and impacts while being neutral on your feature request
validations:
required: true
- type: textarea
id: unresolved_question
attributes:
label: "Unresolved questions"
description: What questions still remain unresolved ?
placeholder: Identify any unresolved issues.
validations:
required: false
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
blank_issues_enabled: false
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,12 @@ pids
!.env
!.env.test

# turborepo #
##########################
/apps/**/package
/packages/**/package
/apps/**/build

# project specific files #
##########################
stats.html
Expand Down
10 changes: 10 additions & 0 deletions CONTRIBUTION.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Contribution Guidelines

- This application is built using [Sveltekit](https://kit.svelte.dev/docs).
- To get started, you can check out the existing issues here [Known Bugs](https://github.com/xmlking/spectacular/issues) or create new one.

## Steps to contribute

1. Fork the repository.
2. Clone the forked repository and make the changes the push the changes to the forked repository. Make a pull request with description of the changes. If possible, add links to the code changes and screenshots.
3. Once reviewed the pull request will be merged.
13 changes: 6 additions & 7 deletions apps/basic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@
"test:unit:ui": "vitest --ui",
"test:unit:coverage": "vitest run --coverage",
"test:integration": "playwright test",
"test": "npm run test:integration && npm run test:unit",
"preinstall": "npx only-allow pnpm"
"test": "npm run test:integration && npm run test:unit"
},
"dependencies": {
"@floating-ui/dom": "1.5.1",
Expand All @@ -32,11 +31,11 @@
"@sveltejs/kit": "1.23.0",
"@tailwindcss/forms": "0.5.5",
"@tailwindcss/typography": "0.5.9",
"@types/node": "20.5.4",
"@types/node": "20.5.7",
"@typescript-eslint/eslint-plugin": "6.4.1",
"@typescript-eslint/parser": "6.4.1",
"autoprefixer": "10.4.15",
"eslint": "8.47.0",
"eslint": "8.48.0",
"eslint-config-custom": "workspace:*",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-svelte": "2.33.0",
Expand All @@ -49,15 +48,15 @@
"tailwind-config": "workspace:*",
"tailwindcss": "3.3.3",
"tslib": "2.6.2",
"typescript": "5.1.6",
"typescript": "5.2.2",
"ui": "workspace:*",
"vite": "4.4.9",
"vite-plugin-tailwind-purgecss": "0.1.3",
"vitest": "0.34.2"
"vitest": "0.34.3"
},
"optionalDependencies": {
"@playwright/test": "1.37.1",
"@vitest/ui": "0.34.2"
"@vitest/ui": "0.34.3"
},
"type": "module"
}
Loading

0 comments on commit 1b86025

Please sign in to comment.