You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"shortDescription": "Shows how you can load localization files and use the localized strings if you have requirements to display localized text outside the normal SPFx/SPO processing",
"Shows how you can load localization files and use the localized strings if you have requirements to display localized text outside the normal SPFx/SPO processing"
"name": "Build your first SharePoint client-side web part",
13856
+
"description": "Client-side web parts are client-side components that run in the context of a SharePoint page. Client-side web parts can be deployed to SharePoint environments that support the SharePoint Framework. You can also use modern JavaScript web frameworks, tools, and libraries to build them.",
"This web part demonstrates Star Ratings capabilities to SharePoint News. The Ratings site collection feature provides Likes and Star Ratings, but SharePoint News provides only provides Likes. This web part can get or set ratings of the current page."
ignoreAttributes: false,// Include attributes in the parsed JSON
822
+
attributeNamePrefix: "",// Do not prefix attributes with @
823
+
isArray: (name)=>["rule","repeat","daily","weekly","monthly","monthlyByDay","yearly","yearlyByDay"].includes(name),// Explicitly set nodes to be arrays
## add *.cer to .gitignore to prevent certificates from being saved in repo
17
+
if! grep -Fxq '*.cer' ./.gitignore
18
+
then
19
+
echo"# .CER Certificates">> .gitignore
20
+
echo"*.cer">> .gitignore
21
+
fi
22
+
23
+
## add *.pem to .gitignore to prevent certificates from being saved in repo
24
+
if! grep -Fxq '*.pem' ./.gitignore
25
+
then
26
+
echo"# .PEM Certificates">> .gitignore
27
+
echo"*.pem">> .gitignore
28
+
fi
29
+
30
+
echo
31
+
echo -e "\e[1;92mReady!\e[0m"
32
+
33
+
echo -e "\n\e[1;94m**********\nOptional: if you plan on using gulp serve, don't forget to add the container certificate to your local machine. Please visit https://aka.ms/spfx-devcontainer for more information\n**********"
0 commit comments