Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FY25Q2 content refresh #87

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 0 additions & 33 deletions Demos/01-webpart/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,39 +20,6 @@ module.exports = {
'@rushstack/security/no-unsafe-regexp': 1,
// STANDARDIZED BY: @typescript-eslint\eslint-plugin\dist\configs\recommended.json
'@typescript-eslint/adjacent-overload-signatures': 1,
// STANDARDIZED BY: @typescript-eslint\eslint-plugin\dist\configs\recommended.json
//
// CONFIGURATION: By default, these are banned: String, Boolean, Number, Object, Symbol
'@typescript-eslint/ban-types': [
1,
{
'extendDefaults': false,
'types': {
'String': {
'message': 'Use \'string\' instead',
'fixWith': 'string'
},
'Boolean': {
'message': 'Use \'boolean\' instead',
'fixWith': 'boolean'
},
'Number': {
'message': 'Use \'number\' instead',
'fixWith': 'number'
},
'Object': {
'message': 'Use \'object\' instead, or else define a proper TypeScript type:'
},
'Symbol': {
'message': 'Use \'symbol\' instead',
'fixWith': 'symbol'
},
'Function': {
'message': 'The \'Function\' type accepts any function-like value.\nIt provides no type safety when calling the function, which can be a common source of bugs.\nIt also accepts things like class declarations, which will throw at runtime as they will not be called with \'new\'.\nIf you are expecting the function to accept certain arguments, you should explicitly define the function shape.'
}
}
}
],
// RATIONALE: Code is more readable when the type of every variable is immediately obvious.
// Even if the compiler may be able to infer a type, this inference will be unavailable
// to a person who is reviewing a GitHub diff. This rule makes writing code harder,
Expand Down
12 changes: 6 additions & 6 deletions Demos/01-webpart/.yo-rc.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@
"@microsoft/generator-sharepoint": {
"plusBeta": false,
"isCreatingSolution": true,
"nodeVersion": "18.20.1",
"nodeVersion": "18.20.4",
"sdksVersions": {
"@microsoft/microsoft-graph-client": "3.0.2",
"@microsoft/teams-js": "2.12.0"
"@microsoft/teams-js": "2.24.0"
},
"version": "1.19.0",
"version": "1.20.0",
"libraryName": "hello-world",
"libraryId": "1da01193-e266-4f84-a2e9-8440ea512620",
"libraryId": "50131125-ee04-49ef-ac7a-c338bf64d222",
"environment": "spo",
"packageManager": "npm",
"solutionName": "HelloWorld",
"solutionShortDescription": "HelloWorld description",
"solutionName": "hello-world",
"solutionShortDescription": "hello-world description",
"skipFeatureDeployment": true,
"isDomainIsolated": false,
"componentType": "webpart"
Expand Down
2 changes: 1 addition & 1 deletion Demos/01-webpart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Short summary on functionality and used technologies.

## Used SharePoint Framework Version

![version](https://img.shields.io/badge/version-1.19.0-green.svg)
![version](https://img.shields.io/badge/version-1.20.0-green.svg)

## Applies to

Expand Down
10 changes: 5 additions & 5 deletions Demos/01-webpart/config/package-solution.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/package-solution.schema.json",
"solution": {
"name": "hello-world-client-side-solution",
"id": "1da01193-e266-4f84-a2e9-8440ea512620",
"id": "50131125-ee04-49ef-ac7a-c338bf64d222",
"version": "1.0.0.0",
"includeClientSideAssets": true,
"skipFeatureDeployment": true,
Expand All @@ -12,14 +12,14 @@
"websiteUrl": "",
"privacyUrl": "",
"termsOfUseUrl": "",
"mpnId": "Undefined-1.19.0"
"mpnId": "Undefined-1.20.0"
},
"metadata": {
"shortDescription": {
"default": "HelloWorld description"
"default": "hello-world description"
},
"longDescription": {
"default": "HelloWorld description"
"default": "hello-world description"
},
"screenshotPaths": [],
"videoUrl": "",
Expand All @@ -29,7 +29,7 @@
{
"title": "hello-world Feature",
"description": "The feature that activates elements of the hello-world solution.",
"id": "3be9a5b5-2804-4101-89c3-efa246a44e26",
"id": "6394e562-5354-4dd3-b33d-93962d5c275e",
"version": "1.0.0.0"
}
]
Expand Down
Loading