Skip to content

Commit

Permalink
Merge branch 'master' into allow-cli-options-in-tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dvdsgl authored Mar 30, 2024
2 parents 6a91db2 + 0d974b4 commit 8534222
Show file tree
Hide file tree
Showing 14 changed files with 261 additions and 111 deletions.
56 changes: 56 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
---
name: New Bug Report
about: Use this template for reporting new bugs.
title: "[BUG]: bug description here"
labels: bug
---

<!--- Provide a general summary of the issue in the Title above -->

## Issue Type

<!--- Is this an issue with quicktype output, input parsing, or during runtime ? -->

## Context (Environment, Version, Language)

<!-- What input format and what target output language were you using ? -->

Input Format:
Output Language:

<!-- Please specify how you were using the library (CLI, npm package, or app.quicktype.io) and what version, if applicable -->

CLI, npm, or app.quicktype.io:
Version:

## Description

<!--- How has this issue affected you? What are you trying to accomplish? -->
<!--- Providing context helps us come up with a solution that is most useful in the real world -->

## Input Data

<!--- Please provide a snippet of your input data. -->
<!--- Please truncate if it is too large and ideally isolate to a minimum reproducible example -->

## Expected Behaviour / Output

<!--- Tell us what should happen / what output should be generated -->

## Current Behaviour / Output

<!--- Tell us what happens instead of the expected behavior / what output is currently generated -->

## Steps to Reproduce

<!--- Provide a link to a live example, or an unambiguous set of steps to -->
<!--- reproduce this bug. Include code to reproduce, if relevant -->

1.
2.
3.
4.

## Possible Solution

<!--- Optional, suggest a fix/reason for the bug, -->
5 changes: 5 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
blank_issues_enabled: false
# contact_links:
# - name: GitHub Community Support
# url: https://github.com/orgs/community/discussions
# about: Please ask and answer questions here.
40 changes: 40 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
---
name: Feature Request
about: Use this template for requesting new features.
title: "[FEATURE]: feature description here"
labels: enhancement
---

<!--- Provide a general summary of the feature in the Title above -->

## Context (Input, Language)

<!-- What input format and what target output language would this affect ? -->

Input Format:
Output Language:

## Description

<!--- How would this feature benefit you? What are you trying to accomplish? -->
<!--- Providing context helps us come up with a solution that is most useful in the real world -->

## Current Behaviour / Output

<!--- Tell us what happens / what output is currently generated -->

## Proposed Behaviour / Output

<!--- Tell us what should happen / what output should be generated -->

## Solution

<!-- Describe or propose a potential solution -->

## Alternatives

<!-- Please describe any alternatives you have considered and how they do or do not work for you -->

## Context

<!-- Add any additional context here, if applicable -->
29 changes: 29 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
## Description

<!--- Describe your changes in detail -->

## Related Issue

<!--- If suggesting a new feature or change, please discuss it in an issue first -->
<!--- If fixing a bug, there should be an issue describing it with steps to reproduce -->
<!--- Please link to the issue here: -->

## Motivation and Context

<!--- Why is this change required? What problem does it solve? -->
<!--- If it fixes an open issue, please link to the issue here. -->

## Previous Behaviour / Output

<!--- Provide an example of what was happening before your change -->

## New Behaviour / Output

<!--- Provide an example of what now happens after your change -->

## How Has This Been Tested?

<!--- Please describe in detail how you tested your changes. -->
<!--- Include details of your testing environment, and the tests you ran, including any new unit tests --->

## Screenshots (if appropriate):
2 changes: 2 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
test/runs
test/inputs
85 changes: 42 additions & 43 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"quicktype-core": "20.0.12",
"quicktype-graphql-input": "20.0.2",
"quicktype-typescript-input": "20.0.2",
"readable-stream": "^4.4.2",
"readable-stream": "^4.5.2",
"stream-json": "1.8.0",
"string-to-stream": "^3.0.1",
"typescript": "4.9.5"
Expand All @@ -48,15 +48,15 @@
"@types/semver": "^7.5.0",
"@types/shelljs": "^0.8.12",
"@types/stream-json": "^1.7.3",
"@types/urijs": "^1.19.19",
"@types/urijs": "^1.19.25",
"ajv": "^5.5.2",
"deep-equal": "^2.2.2",
"exit": "^0.1.2",
"prettier": "^3.0.1",
"promise-timeout": "^1.3.0",
"semver": "^7.5.4",
"shelljs": "^0.8.5",
"ts-node": "^10.9.1",
"ts-node": "^10.9.2",
"tslint": "^6.1.3",
"watch": "^1.0.2"
},
Expand Down
Loading

0 comments on commit 8534222

Please sign in to comment.