-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Included in the release - Support for SPFx 1.17.1 - Updated CI/CD pipelines - Updated help and feedback section - Support for every possible SPFx project scaffolding - Added SPFx web parts and extensions sample galleries - Refactored code base, improve code quality and small bug fixes --------- Co-authored-by: VesaJuvonen <[email protected]> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Adam-it <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Loading branch information
1 parent
7d531aa
commit 654072d
Showing
78 changed files
with
11,245 additions
and
6,879 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
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,40 @@ | ||
--- | ||
name: "🐞 Bug report" | ||
about: Create a report to help us improve | ||
title: "🐞 [Bug]: " | ||
labels: "🐞 bug" | ||
assignees: '' | ||
|
||
--- | ||
|
||
## 📝 Describe the bug | ||
|
||
> provide a clear and concise description of the bug. [Remove this line] | ||
## 👣 Steps To Reproduce | ||
|
||
> add steps to reproduce the behavior [Remove this line] | ||
Steps to reproduce the behavior: | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
|
||
## 📜 Expected behavior | ||
|
||
> A clear and concise description of what you expected to happen. [Remove this line] | ||
## 📷 Screenshots | ||
|
||
> If applicable, add screenshots to help explain your problem. [Remove this line] | ||
## 💻 Desktop (please complete the following information): | ||
|
||
- OS: [e.g. iOS] | ||
- Browser [e.g. chrome, safari] | ||
- Version [e.g. 22] | ||
|
||
## 🤔 Additional context | ||
|
||
> Add any other context or information about the problem here. [Remove this line] |
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,20 @@ | ||
--- | ||
name: "💡 Feature request" | ||
about: Suggest an idea for this project | ||
title: "💡 [Feature]: " | ||
labels: "⭐ enhancement" | ||
assignees: '' | ||
|
||
--- | ||
|
||
## 🎯 Aim of the feature | ||
|
||
> provide a clear and concise description explaining the idea. [Remove this line] | ||
## 📷 Images (if possible) with expected result | ||
|
||
> If applicable, add screenshots or drawings to help explain your idea. [Remove this line] | ||
## 🤔 Additional remarks or comments | ||
|
||
> Add any other context or information about the idea here. [Remove this line] |
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,20 @@ | ||
## 🎯 Aim | ||
|
||
> describe the purpose of this pull request [Remove this line] | ||
## 📷 Result | ||
|
||
> include images or a movie with a result of your change [Remove this line] | ||
## ✅ What was done | ||
|
||
> clarify what was done and what still needs to be finished ex. [Remove this line] | ||
- [] not done | ||
- [X] done | ||
|
||
## 🔗 Related issue | ||
|
||
> each PR should be linked with a related issue [Remove this line] | ||
Closes: #123 |
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 |
---|---|---|
@@ -0,0 +1,55 @@ | ||
name: Update samples data | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '0 12 * * 6' | ||
|
||
jobs: | ||
update: | ||
name: "Update samples json" | ||
runs-on: windows-latest | ||
|
||
steps: | ||
- name: Checkout vscode-viva | ||
uses: actions/checkout@v3 | ||
|
||
- name: Checkout sp-dev-fx-aces | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: pnp/sp-dev-fx-aces | ||
path: sp-dev-fx-aces | ||
|
||
- name: Checkout sp-dev-fx-library-components | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: pnp/sp-dev-fx-extensions | ||
path: sp-dev-fx-extensions | ||
|
||
- name: Checkout sp-dev-fx-library-components | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: pnp/sp-dev-fx-library-components | ||
path: sp-dev-fx-library-components | ||
|
||
- name: Checkout sp-dev-fx-webparts | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: pnp/sp-dev-fx-webparts | ||
path: sp-dev-fx-webparts | ||
|
||
- run: | | ||
dir | ||
- run: .\scripts\prepare-sample-data.ps1 -workspacePath "${{ github.workspace }}" | ||
shell: pwsh | ||
continue-on-error: true | ||
|
||
- name: Create Pull Request | ||
uses: peter-evans/create-pull-request@v5 | ||
with: | ||
commit-message: Updates sample data | ||
branch: update-sample-data | ||
title: Sample data update | ||
body: Automated check and update of SPFx extensions and webparts samples data and aces sample data. | ||
... |
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 |
---|---|---|
|
@@ -15,4 +15,5 @@ tailwind.config.js | |
postcss.config.js | ||
webpack | ||
.github | ||
scripts | ||
scripts | ||
data |
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
Oops, something went wrong.