-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #28 from mrjvs/dev
Guider v0.1.1
- Loading branch information
Showing
35 changed files
with
255 additions
and
247 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: Bug Report | ||
description: Create a bug report | ||
labels: ["type:bug"] | ||
body: | ||
- type: textarea | ||
attributes: | ||
label: Describe the bug | ||
description: A concise description of the bug. | ||
validations: | ||
required: true | ||
- type: dropdown | ||
attributes: | ||
label: Which package/app is affected (leave empty if unsure) | ||
multiple: true | ||
options: | ||
- "@neato/guider" | ||
- "@neato/config" | ||
- "docs" | ||
- "examples" | ||
- type: input | ||
attributes: | ||
label: Link to the code that reproduces this issue | ||
description: | | ||
If possible, link to a minimal reproducable example. This can be a GitHub gist or a repository, choose whatever fits. | ||
- type: textarea | ||
attributes: | ||
label: Steps to reproduce | ||
description: Steps to reproduce the behavior, please provide a clear description of how to reproduce the issue, based on the linked minimal reproduction. Screenshots can be provided in the issue body below. If using code blocks, make sure that [syntax highlighting is correct](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/creating-and-highlighting-code-blocks#syntax-highlighting) and double check that the rendered preview is not broken. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Expected Behavior | ||
description: A clear and concise description of what you expected to happen. | ||
validations: | ||
required: true | ||
- type: markdown | ||
attributes: | ||
value: Before submitting, please make sure that the reproduce steps you've provided are easy to follow. | ||
- type: textarea | ||
attributes: | ||
label: Extra details | ||
description: If you have extra information or a proposal on how to implement it, this is the place. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Feature request | ||
description: Request a feature | ||
labels: ["type:feature"] | ||
body: | ||
- type: textarea | ||
attributes: | ||
label: What feature do you want? | ||
description: A clear description of the new feature. | ||
validations: | ||
required: true | ||
- type: dropdown | ||
attributes: | ||
label: Which package/app is this targeted at (leave empty if unsure) | ||
multiple: true | ||
options: | ||
- "@neato/guider" | ||
- "@neato/config" | ||
- "docs" | ||
- "examples" | ||
- type: textarea | ||
attributes: | ||
label: Goals | ||
description: Short list of goals what the feature request aims to address. | ||
value: | | ||
1. | ||
2. | ||
3. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Extra details | ||
description: If you have extra information or a proposal on how to implement it, this is the place. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: Help or Miscellaneous | ||
description: Need help or some other inquiries | ||
labels: ["type:other"] | ||
body: | ||
- type: textarea | ||
attributes: | ||
label: Your inquiry | ||
validations: | ||
required: true | ||
- type: dropdown | ||
attributes: | ||
label: Which package/app is this targeted at (leave empty if unsure) | ||
multiple: true | ||
options: | ||
- "@neato/guider" | ||
- "@neato/config" | ||
- "docs" | ||
- "examples" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
blank_issues_enabled: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,3 +8,4 @@ dist | |
out | ||
/test.js | ||
/test.ts | ||
.turbo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
const { guider } = require('@neato/guider'); | ||
import { guider } from '@neato/guider'; | ||
|
||
const withGuider = guider({ | ||
themeConfig: './theme.config.tsx', | ||
}); | ||
|
||
module.exports = withGuider({ | ||
export default withGuider({ | ||
output: 'export', | ||
}); |
Oops, something went wrong.