Skip to content

Commit cb0c016

Browse files
committed
update help files
1 parent 565e970 commit cb0c016

File tree

7 files changed

+34
-22
lines changed

7 files changed

+34
-22
lines changed
Lines changed: 19 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,41 @@
11
---
22
name: Bug report
33
about: Report a bug / error in the code
4-
title: '[bug]'
4+
title: '[bug] ...'
55
labels: bug, investigating
66
assignees: ''
77
---
88

9-
**Describe the bug**
9+
### Describe the bug
10+
1011
A clear and concise description of what the bug is.
1112

12-
**To Reproduce**
13+
### Link To Reproduce
1314

14-
-**Fork [this REPL as a reduced test case](https://svelte.dev/repl/030797781fd64ad88302d1343f5b2c43?version=3.32.1)** for any bug/issue submissions!
15+
<!---
16+
Open this REPL, Fork it and reproduce your bug.
17+
-- https://svelte.dev/playground/e29b748dade74d33a238eefab9a5ce72
18+
Then paste the link here, and I'll take a look.
19+
-->
1520

16-
Steps to reproduce the behavior:
21+
#### Steps to reproduce the behavior:
1722

1823
1. Go to '...'
1924
2. Click on '....'
20-
3. Scroll down to '....'
21-
4. See error
25+
3. See error
26+
27+
#### Expected behavior
2228

23-
**Expected behavior**
2429
A clear and concise description of what you expected to happen.
2530

26-
**Screenshots**
31+
#### Screenshots
32+
2733
If applicable, add screenshots to help explain your problem.
2834

29-
**Device/Environtment**
35+
#### Device/Environtment
36+
3037
Please describe the environment and device the bug was found on, if relevant.
3138

32-
**Additional context**
39+
#### Additional context
40+
3341
Add any other context about the problem here.

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,15 @@ labels: feature request, investigating
66
assignees: ''
77
---
88

9-
**Describe the feature**
9+
### Describe the feature
10+
1011
A clear and concise description of what the bug is.
1112

12-
**Explain it's value / reasoning**
13+
#### Explain it's value / reasoning
14+
1315
Some justification of why you think this feature would be valuable, either to yourself or to general users.
1416

15-
**Additional context**
17+
#### Additional context
18+
1619
If you have any use cases to describe, or demo (with image/link) please share
20+
Screenshots are very appreciated!

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.DS_Store
22
.astro
33
node_modules
4-
/build
4+
build/
55
/docs
66
/tests/**/build
77
/tests/**/dist

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ At the core, though, this is a component with a purpose. I will be the final jud
88

99
## 🛠 pull-requests for bug fixes, or issue resolution
1010

11-
-**Use [this REPL as a reduced test case](https://svelte.dev/repl/030797781fd64ad88302d1343f5b2c43)** for any bug/issue submissions!
11+
-**Use [this REPL as a reduced test case](https://svelte.dev/playground/e29b748dade74d33a238eefab9a5ce72)** for any bug/issue submissions!
1212

1313
If there are any open issues, or you find a valid bug, please feel free to open a pull-request for review. I won't accept pull-requests for dependency updates, but those can be requested as an issue.
1414

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ A reactive, accessible, multi-thumb, range slider with the ability to display "p
3131

3232
![Svelte Range Slider; focussed with pips and labels prop set](public/svelte-range-slider-screenshot.png)
3333

34-
| 📔🔍 | Docs | [Full Documentation & Examples](https://simeydotme.github.io/svelte-range-slider-pips/) |
35-
| :--: | ----------: | :---------------------------------------------------------------------------------------------- |
36-
| 📝⚙ | **REPL** | **[Svelte component demo](https://svelte.dev/repl/030797781fd64ad88302d1343f5b2c43?version=3)** |
37-
| ❤✒ | **Codepen** | **[Plain JS component demo](https://codepen.io/simeydotme/pen/KKNJdbK)** |
34+
| 📔🔍 | Docs | [Full Documentation & Examples](https://simeydotme.github.io/svelte-range-slider-pips/) |
35+
| :--: | ----------: | :------------------------------------------------------------------------------------------ |
36+
| 📝⚙ | **REPL** | **[Svelte component demo](https://svelte.dev/playground/e29b748dade74d33a238eefab9a5ce72)** |
37+
| ❤✒ | **Codepen** | **[Plain JS component demo](https://codepen.io/simeydotme/pen/KKNJdbK)** |
3838

3939
</div>
4040

dist/range-slider-pips.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Multi-Thumb, Accessible, Beautiful Range Slider with Pips
44
* Project home: https://simeydotme.github.io/svelte-range-slider-pips/
55
* © 2024 Simon Goellner <[email protected]> ~ MPL-2.0 License
6-
* Published: 26/10/2024
6+
* Published: 27/10/2024
77
*/
88
(function (global, factory) {
99
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :

dist/range-slider-pips.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Multi-Thumb, Accessible, Beautiful Range Slider with Pips
44
* Project home: https://simeydotme.github.io/svelte-range-slider-pips/
55
* © 2024 Simon Goellner <[email protected]> ~ MPL-2.0 License
6-
* Published: 26/10/2024
6+
* Published: 27/10/2024
77
*/
88
/** @returns {void} */
99
function noop() {}

0 commit comments

Comments
 (0)