Merge branch 'pnp:main' into main
This commit is contained in:
commit
39421cbb95
|
@ -47,8 +47,8 @@ You can add as many screen shots as you'd like to help users understand your web
|
||||||
|
|
||||||
This sample is optimally compatible with the following environment configuration:
|
This sample is optimally compatible with the following environment configuration:
|
||||||
|
|
||||||
![SPFx 1.17.4](https://img.shields.io/badge/SPFx-1.17.4-green.svg)
|
![SPFx 1.18.2](https://img.shields.io/badge/SPFx-1.18.2-green.svg)
|
||||||
![Node.js v16.13+](https://img.shields.io/badge/Node.js-v16.13+-green.svg)
|
![Node.js v16 | v18](https://img.shields.io/badge/Node.js-v16%20%7C%20v18-green.svg)
|
||||||
![Compatible with SharePoint Online](https://img.shields.io/badge/SharePoint%20Online-Compatible-green.svg)
|
![Compatible with SharePoint Online](https://img.shields.io/badge/SharePoint%20Online-Compatible-green.svg)
|
||||||
![Does not work with SharePoint 2019](https://img.shields.io/badge/SharePoint%20Server%202019-Incompatible-red.svg "SharePoint Server 2019 requires SPFx 1.4.1 or lower")
|
![Does not work with SharePoint 2019](https://img.shields.io/badge/SharePoint%20Server%202019-Incompatible-red.svg "SharePoint Server 2019 requires SPFx 1.4.1 or lower")
|
||||||
![Does not work with SharePoint 2016 (Feature Pack 2)](https://img.shields.io/badge/SharePoint%20Server%202016%20(Feature%20Pack%202)-Incompatible-red.svg "SharePoint Server 2016 Feature Pack 2 requires SPFx 1.1")
|
![Does not work with SharePoint 2016 (Feature Pack 2)](https://img.shields.io/badge/SharePoint%20Server%202016%20(Feature%20Pack%202)-Incompatible-red.svg "SharePoint Server 2016 Feature Pack 2 requires SPFx 1.1")
|
||||||
|
@ -57,6 +57,10 @@ This sample is optimally compatible with the following environment configuration
|
||||||
![Compatible with Remote Containers](https://img.shields.io/badge/Remote%20Containers-Compatible-green.svg)
|
![Compatible with Remote Containers](https://img.shields.io/badge/Remote%20Containers-Compatible-green.svg)
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
|
If using SPFx 1.17.4
|
||||||
|
![SPFx 1.17.4](https://img.shields.io/badge/SPFx-1.17.4-green.svg)
|
||||||
|
![Node.js v16.13+](https://img.shields.io/badge/Node.js-v16.13+-green.svg)
|
||||||
|
|
||||||
If using SPFx 1.16
|
If using SPFx 1.16
|
||||||
![SPFx 1.16.1](https://img.shields.io/badge/SPFx-1.16.1-green.svg)
|
![SPFx 1.16.1](https://img.shields.io/badge/SPFx-1.16.1-green.svg)
|
||||||
![Node.js v16 | v14 | v12](https://img.shields.io/badge/Node.js-v16%20%7C%20v14%20%7C%20v12-green.svg)
|
![Node.js v16 | v14 | v12](https://img.shields.io/badge/Node.js-v16%20%7C%20v14%20%7C%20v12-green.svg)
|
||||||
|
|
|
@ -1,18 +1,19 @@
|
||||||
// For more information on how to run this SPFx project in a VS Code Remote Container, please visit https://aka.ms/spfx-devcontainer
|
// For more information on how to run this SPFx project in a VS Code Remote Container, please visit https://aka.ms/spfx-devcontainer
|
||||||
{
|
{
|
||||||
"name": "SPFx 1.18.1",
|
"name": "SPFx 1.18.2",
|
||||||
"image": "docker.io/m365pnp/spfx:1.18.1",
|
"image": "docker.io/m365pnp/spfx:1.18.2",
|
||||||
// Set *default* container specific settings.json values on container create.
|
"customizations": {
|
||||||
"settings": {},
|
"vscode": {
|
||||||
// Add the IDs of extensions you want installed when the container is created.
|
"extensions": [
|
||||||
"extensions": [
|
"editorconfig.editorconfig",
|
||||||
"editorconfig.editorconfig",
|
"dbaeumer.vscode-eslint"
|
||||||
"dbaeumer.vscode-eslint"
|
]
|
||||||
],
|
}
|
||||||
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
},
|
||||||
"forwardPorts": [
|
"forwardPorts": [
|
||||||
4321,
|
4321,
|
||||||
35729
|
35729,
|
||||||
|
5432
|
||||||
],
|
],
|
||||||
"portsAttributes": {
|
"portsAttributes": {
|
||||||
"4321": {
|
"4321": {
|
||||||
|
@ -21,12 +22,11 @@
|
||||||
"onAutoForward": "silent",
|
"onAutoForward": "silent",
|
||||||
"requireLocalPort": true
|
"requireLocalPort": true
|
||||||
},
|
},
|
||||||
// Not needed for SPFx>= 1.12.1
|
"5432": {
|
||||||
// "5432": {
|
"protocol": "https",
|
||||||
// "protocol": "https",
|
"label": "Workbench",
|
||||||
// "label": "Workbench",
|
"onAutoForward": "silent"
|
||||||
// "onAutoForward": "silent"
|
},
|
||||||
// },
|
|
||||||
"35729": {
|
"35729": {
|
||||||
"protocol": "https",
|
"protocol": "https",
|
||||||
"label": "LiveReload",
|
"label": "LiveReload",
|
||||||
|
|
|
@ -1,15 +1,15 @@
|
||||||
// For more information on how to run this SPFx project in a VS Code Remote Container, please visit https://aka.ms/spfx-devcontainer
|
// For more information on how to run this SPFx project in a VS Code Remote Container, please visit https://aka.ms/spfx-devcontainer
|
||||||
{
|
{
|
||||||
"name": "SPFx 1.11.0",
|
"name": "SPFx 1.18.2",
|
||||||
"image": "docker.io/m365pnp/spfx:1.11.0",
|
"image": "docker.io/m365pnp/spfx:1.18.2",
|
||||||
// Set *default* container specific settings.json values on container create.
|
"customizations": {
|
||||||
"settings": {},
|
"vscode": {
|
||||||
// Add the IDs of extensions you want installed when the container is created.
|
"extensions": [
|
||||||
"extensions": [
|
"editorconfig.editorconfig",
|
||||||
"editorconfig.editorconfig",
|
"dbaeumer.vscode-eslint"
|
||||||
"dbaeumer.vscode-eslint"
|
]
|
||||||
],
|
}
|
||||||
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
},
|
||||||
"forwardPorts": [
|
"forwardPorts": [
|
||||||
4321,
|
4321,
|
||||||
35729,
|
35729,
|
||||||
|
|
|
@ -9,8 +9,8 @@
|
||||||
"longDescription": [
|
"longDescription": [
|
||||||
"YOUR-SHORT-DESCRIPTION"
|
"YOUR-SHORT-DESCRIPTION"
|
||||||
],
|
],
|
||||||
"creationDateTime": "2023-12-25",
|
"creationDateTime": "2024-12-25",
|
||||||
"updateDateTime": "2023-12-31",
|
"updateDateTime": "2024-12-31",
|
||||||
"products": [
|
"products": [
|
||||||
"SharePoint"
|
"SharePoint"
|
||||||
],
|
],
|
||||||
|
@ -21,7 +21,7 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"key": "SPFX-VERSION",
|
"key": "SPFX-VERSION",
|
||||||
"value": "1.17.4"
|
"value": "1.18.2"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"thumbnails": [
|
"thumbnails": [
|
||||||
|
|
Loading…
Reference in New Issue