Skip to content

Commit

Permalink
Merge branch 'main' of github.com:ionic-team/ionic-docs into patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
thetaPC committed May 16, 2023
2 parents 822aa6c + 34a7c6a commit cd8a626
Show file tree
Hide file tree
Showing 7,264 changed files with 410,086 additions and 180,735 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
32 changes: 0 additions & 32 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

43 changes: 43 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: 🐛 Bug Report
description: Report a bug on the docs site
labels: ["triage"]
title: "bug: "
body:
- type: textarea
attributes:
label: Describe the Bug
description: A clear description of what the bug is and how it manifests.
validations:
required: true
- type: textarea
attributes:
label: Expected Behavior
description: A clear description of what you expected to happen.
validations:
required: true
- type: textarea
attributes:
label: Steps to Reproduce
description: Please explain the steps required to duplicate this issue.
validations:
required: true
- type: textarea
attributes:
label: Screenshots
description: If applicable, add screenshots to help explain the problem.
- type: input
attributes:
label: Operating System
description: The operating system you are running (e.g. Windows)
- type: input
attributes:
label: Browser
description: The browser you are running (e.g. Chrome, Safari)
- type: input
attributes:
label: Version
description: The browser version you are running (e.g. 14)
- type: textarea
attributes:
label: Additional Information
description: List any other information that is relevant to your issue.
13 changes: 0 additions & 13 deletions .github/ISSUE_TEMPLATE/content-issue.md

This file was deleted.

17 changes: 17 additions & 0 deletions .github/ISSUE_TEMPLATE/content-issue.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: 📕 Content Issue
description: Report missing or inaccurate content on the docs
labels: ["triage"]
title: "content: "
body:
- type: input
attributes:
label: URL
description: The URL at which the content is missing or inaccurate
validations:
required: true
- type: textarea
attributes:
label: Issue Description
description: What is missing or inaccurate about the content on this page?
validations:
required: true
20 changes: 0 additions & 20 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

23 changes: 23 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: 💡 Feature Request
description: Suggest a feature for the docs
labels: ["triage"]
title: "feat: "
body:
- type: textarea
attributes:
label: Describe Problem
description: A clear and concise description of what the problem is. Ex. I am always frustrated when [...]
validations:
required: true
- type: textarea
attributes:
label: Describe Preferred Solution
description: A clear and concise description of what you want to happen.
- type: textarea
attributes:
label: Describe Alternatives
description: A clear and concise description of any alternative solutions or features you have considered.
- type: textarea
attributes:
label: Additional Information
description: Add any other context or screenshots about the feature request here.
86 changes: 86 additions & 0 deletions .github/ionic-issue-bot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
triage:
label: triage
dryRun: false

closeAndLock:
labels:
- label: 'ionitron: support'
message: >
Thanks for the issue! This issue appears to be a support request. We use this issue tracker exclusively for
content issues, bug reports and feature requests related to the documentation. Please use our
[forum](https://forum.ionicframework.com/) for help or questions about Ionic Framework.
Thank you for using Ionic!
- label: 'ionitron: missing template'
message: >
Thanks for the issue! It appears that you have not filled out the provided issue template. We use this issue
template in order to gather more information and further assist you. Please create a new issue and ensure the
template is fully filled out.
Thank you for using Ionic!
close: true
lock: true
dryRun: false

comment:
labels:
- label: "help wanted"
message: >
This issue has been labeled as `help wanted`. This label is added to issues
that we believe would be good for contributors.
If you'd like to work on this issue, please comment here letting us know that
you would like to submit a pull request for it. This helps us to keep track of
the pull request and make sure there isn't duplicated effort.
For a guide on how to create a pull request and test this project locally to see
your changes, see our [contributing documentation](https://github.com/ionic-team/ionic-docs/blob/main/CONTRIBUTING.md).
Thank you!
- label: 'ionitron: needs reproduction'
message: >
Thanks for the issue! This issue has been labeled as `needs reproduction`. This label is added to issues that
we are not able to reproduce.
Please provide easy to follow steps for us to reproduce this issue.
dryRun: false

noReply:
days: 14
maxIssuesPerRun: 100
label: "needs: reply"
responseLabel: triage
exemptProjects: true
exemptMilestones: true
message: >
Thanks for the issue! This issue is being closed due to the lack of a reply. If this is still an issue,
please create a new issue and ensure the template is fully filled out.
Thank you for using Ionic!
close: true
lock: true
dryRun: false

noReproduction:
days: 14
maxIssuesPerRun: 100
label: "ionitron: needs reproduction"
responseLabel: triage
exemptProjects: true
exemptMilestones: true
message: >
Thanks for the issue! This issue is being closed due to the lack of a reproduction. If this is still an issue,
please create a new issue and ensure the template is fully filled out.
Thank you for using Ionic!
close: true
lock: true
dryRun: false
27 changes: 27 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# GitHub Actions docs
# https://help.github.com/en/articles/about-github-actions
# https://help.github.com/en/articles/workflow-syntax-for-github-actions

name: Install Dependencies, Lint

on: [pull_request]

jobs:
test:
name: Test on node ${{ matrix.node_version }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node_version: [16]
os: [windows-latest, macOS-latest]

steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node_version }}
- name: Install Dependencies
run: npm ci --legacy-peer-deps
- name: Lint
run: npm run lint
23 changes: 0 additions & 23 deletions .github/workflows/ci.yml

This file was deleted.

35 changes: 23 additions & 12 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,13 +1,24 @@
# Dependencies
/node_modules

# Production
/build

# Generated files
.docusaurus
.cache-loader
src/components/page/reference/ReleaseNotes/release-notes.json

# Misc
.DS_Store
node_modules/
.stencil/
.nova/
dist/
www/
src/pages/**/*.json
src/l10n/pages/**/*.json
src/components/menu/data/
src/components/page/data/
src/components/search/data/
.idea
/.env
.env.local
.env.development.local
.env.test.local
.env.production.local
.env

npm-debug.log*
yarn-debug.log*
yarn-error.log*

static/**/node_modules/
15 changes: 15 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
src/theme/DocItem
src/theme/DocPage
legacy-stencil-components
scripts/bak

docs/api
docs/native
docs/cli/commands

static/code/stackblitz

.docusaurus
.github
build
node_modules
Loading

0 comments on commit cd8a626

Please sign in to comment.