Skip to content

Commit

Permalink
chore: fix prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
Badisi committed Oct 28, 2024
1 parent ac9f2ce commit 0333bcc
Show file tree
Hide file tree
Showing 26 changed files with 295 additions and 1,702 deletions.
96 changes: 48 additions & 48 deletions .github/ISSUE_TEMPLATE/1-bug-report.yml
Original file line number Diff line number Diff line change
@@ -1,57 +1,57 @@
name: 🐞 Bug report
description: Report a bug in the library
title: "[BUG] <title>"
title: '[BUG] <title>'
labels: [bug, needs triage]

body:
- type: checkboxes
attributes:
label: Is there an existing issue for this?
description: |
Please search open and closed issues before submitting a new one.
Existing issues often contain information about workarounds, resolution or progress updates.
options:
- label: I have searched the existing issues
required: true
- type: checkboxes
attributes:
label: Is there an existing issue for this?
description: |
Please search open and closed issues before submitting a new one.
Existing issues often contain information about workarounds, resolution or progress updates.
options:
- label: I have searched the existing issues
required: true

- type: input
attributes:
label: Library version
description: Please make sure you have installed the latest version and verified it is still an issue.
placeholder: latest
validations:
required: true
- type: input
attributes:
label: Library version
description: Please make sure you have installed the latest version and verified it is still an issue.
placeholder: latest
validations:
required: true

- type: textarea
attributes:
label: Description
description: A clear & concise description of what you're experiencing.
validations:
required: true
- type: textarea
attributes:
label: Description
description: A clear & concise description of what you're experiencing.
validations:
required: true

- type: textarea
attributes:
label: Steps to reproduce
description: |
Issues that don't have enough info and can't be reproduced will be closed.
Please provide the steps to reproduce the behavior and if applicable create a [minimal reproducible example](https://stackoverflow.com/help/minimal-reproducible-example)
in a [new repository](https://github.com/new), a [gist](https://gist.github.com) or a [live demo](https://stackblitz.com).
validations:
required: false
- type: textarea
attributes:
label: Steps to reproduce
description: |
Issues that don't have enough info and can't be reproduced will be closed.
Please provide the steps to reproduce the behavior and if applicable create a [minimal reproducible example](https://stackoverflow.com/help/minimal-reproducible-example)
in a [new repository](https://github.com/new), a [gist](https://gist.github.com) or a [live demo](https://stackblitz.com).
validations:
required: false

- type: textarea
attributes:
label: Environment
description: |
examples:
- **OS Name**: macOS Monterey (version 12.6.1)
- **System Model Name**: MacBook Pro (16-inch, 2019)
- **npm**: **`npm -v`**: 7.6.3
- **Node.js**: **`node -v`**: 13.14.0
value: |
- **OS Name**:
- **System Model Name**:
- **npm**:
- **Node.js**:
validations:
required: false
- type: textarea
attributes:
label: Environment
description: |
examples:
- **OS Name**: macOS Monterey (version 12.6.1)
- **System Model Name**: MacBook Pro (16-inch, 2019)
- **npm**: **`npm -v`**: 7.6.3
- **Node.js**: **`node -v`**: 13.14.0
value: |
- **OS Name**:
- **System Model Name**:
- **npm**:
- **Node.js**:
validations:
required: false
38 changes: 19 additions & 19 deletions .github/ISSUE_TEMPLATE/2-feature-request.yml
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
name: 🚀 Feature request
description: Suggest a feature for the library
title: "[FEATURE] <title>"
title: '[FEATURE] <title>'
labels: [enhancement, needs triage]

body:
- type: textarea
attributes:
label: Description
description: A clear and concise description of the problem or missing capability.
validations:
required: true
- type: textarea
attributes:
label: Description
description: A clear and concise description of the problem or missing capability.
validations:
required: true

- type: textarea
attributes:
label: Proposed solution
description: If you have a solution in mind, please describe it.
validations:
required: true
- type: textarea
attributes:
label: Proposed solution
description: If you have a solution in mind, please describe it.
validations:
required: true

- type: textarea
attributes:
label: Alternatives considered
description: Have you considered any alternative solutions or workarounds?
validations:
required: false
- type: textarea
attributes:
label: Alternatives considered
description: Have you considered any alternative solutions or workarounds?
validations:
required: false
38 changes: 19 additions & 19 deletions .github/ISSUE_TEMPLATE/3-doc-issue.yml
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
name: 📚 Docs enhancement
description: File an enhancement or report an issue in the library's documentation
title: "[DOCS] <title>"
title: '[DOCS] <title>'
labels: [documentation, needs triage]

body:
- type: checkboxes
attributes:
label: Documentation can be submitted with pull requests
options:
- label: I know that I can edit the docs myself but prefer to file this issue instead
required: true
- type: checkboxes
attributes:
label: Documentation can be submitted with pull requests
options:
- label: I know that I can edit the docs myself but prefer to file this issue instead
required: true

- type: input
attributes:
label: Docs URL
description: The URL of the page you'd like to see an enhancement to or report a problem from.
validations:
required: false
- type: input
attributes:
label: Docs URL
description: The URL of the page you'd like to see an enhancement to or report a problem from.
validations:
required: false

- type: textarea
attributes:
label: Description
description: A clear and concise description of the enhancement or problem.
validations:
required: true
- type: textarea
attributes:
label: Description
description: A clear and concise description of the enhancement or problem.
validations:
required: true
22 changes: 11 additions & 11 deletions .github/workflows/ci_release.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
name: Release library

on:
release:
types: [created]
release:
types: [created]

jobs:
ci_release:
uses: dsi-hug/actions/.github/workflows/action.yml@v2
secrets:
NPM_TOKEN: ${{ secrets.DSI_HUG_NPM_TOKEN }}
with:
lint: true
test: true
build: false
release: true
ci_release:
uses: dsi-hug/actions/.github/workflows/action.yml@v2
secrets:
NPM_TOKEN: ${{ secrets.DSI_HUG_NPM_TOKEN }}
with:
lint: true
test: true
build: false
release: true
30 changes: 15 additions & 15 deletions .github/workflows/ci_tests.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
name: Run tests

on:
workflow_dispatch:
push:
branches:
- '**'
tags-ignore:
- '**'
workflow_dispatch:
push:
branches:
- '**'
tags-ignore:
- '**'

concurrency:
group: run-tests-group-${{ github.ref }}
cancel-in-progress: true
group: run-tests-group-${{ github.ref }}
cancel-in-progress: true

jobs:
ci_tests:
uses: dsi-hug/actions/.github/workflows/action.yml@v2
with:
runs-on: '["ubuntu-latest", "macos-latest", "windows-latest"]'
node-versions: '[18, 20]'
lint: true
test: true
ci_tests:
uses: dsi-hug/actions/.github/workflows/action.yml@v2
with:
runs-on: '["ubuntu-latest", "macos-latest", "windows-latest"]'
node-versions: '[18, 20]'
lint: true
test: true
36 changes: 18 additions & 18 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "ng serve",
"type": "chrome",
"request": "launch",
"preLaunchTask": "npm: start",
"url": "http://localhost:4200/"
},
{
"name": "ng test",
"type": "chrome",
"request": "launch",
"preLaunchTask": "npm: test",
"url": "http://localhost:9876/debug.html"
}
]
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "ng serve",
"type": "chrome",
"request": "launch",
"preLaunchTask": "npm: start",
"url": "http://localhost:4200/"
},
{
"name": "ng test",
"type": "chrome",
"request": "launch",
"preLaunchTask": "npm: test",
"url": "http://localhost:9876/debug.html"
}
]
}
78 changes: 39 additions & 39 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -1,42 +1,42 @@
{
// For more information, visit: https://go.microsoft.com/fwlink/?LinkId=733558
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "start",
"isBackground": true,
"problemMatcher": {
"owner": "typescript",
"pattern": "$tsc",
"background": {
"activeOnStart": true,
"beginsPattern": {
"regexp": "(.*?)"
},
"endsPattern": {
"regexp": "bundle generation complete"
}
// For more information, visit: https://go.microsoft.com/fwlink/?LinkId=733558
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "start",
"isBackground": true,
"problemMatcher": {
"owner": "typescript",
"pattern": "$tsc",
"background": {
"activeOnStart": true,
"beginsPattern": {
"regexp": "(.*?)"
},
"endsPattern": {
"regexp": "bundle generation complete"
}
}
}
},
{
"type": "npm",
"script": "test",
"isBackground": true,
"problemMatcher": {
"owner": "typescript",
"pattern": "$tsc",
"background": {
"activeOnStart": true,
"beginsPattern": {
"regexp": "(.*?)"
},
"endsPattern": {
"regexp": "bundle generation complete"
}
}
}
}
}
},
{
"type": "npm",
"script": "test",
"isBackground": true,
"problemMatcher": {
"owner": "typescript",
"pattern": "$tsc",
"background": {
"activeOnStart": true,
"beginsPattern": {
"regexp": "(.*?)"
},
"endsPattern": {
"regexp": "bundle generation complete"
}
}
}
}
]
]
}
Loading

0 comments on commit 0333bcc

Please sign in to comment.