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
@echo off | |
@echo -- Updating the desktop wallpaper | |
C:\Utils\System\Bginfo.exe /ic:\utils\bginfoSettings.bgi /timer:0 |
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
@echo off | |
@echo -- Updating the desktop wallpaper | |
C:\Utils\System\Bginfo.exe /ic:\utils\bginfoSettings.bgi /timer:0 |
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
<?xml version="1.0" encoding="utf-8" ?> | |
<!-- _lcid="1033" _version="11.0.5510" _dal="1" --> | |
<!-- _LocalBinding --> | |
<Project Title="myTeam Web Site" ListDir="Lists" xmlns:ows="Microsoft SharePoint"> | |
<NavBars> | |
<NavBar Name="SharePoint Top Navbar" Separator="&nbsp;&nbsp;&nbsp;" Body="<a ID='onettopnavbar#LABEL_ID#' href='#URL#' accesskey='J'>#LABEL#</a>" ID="1002"> | |
<NavBarLink Name="Documents and Lists" Url="_layouts/[%=System.Threading.Thread.CurrentThread.CurrentUICulture.LCID%]/viewlsts.aspx"> </NavBarLink> | |
<NavBarLink Name="Create" Url="_layouts/[%=System.Threading.Thread.CurrentThread.CurrentUICulture.LCID%]/create.aspx"> </NavBarLink> | |
<NavBarLink Name="Site Settings" Url="_layouts/[%=System.Threading.Thread.CurrentThread.CurrentUICulture.LCID%]/settings.aspx"> </NavBarLink> |
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
{ | |
"$schema": "https://developer.microsoft.com/en-us/json-schemas/teams/v1.2/MicrosoftTeams.schema.json", | |
"manifestVersion": "1.2", | |
"packageName": "{{SPFX_COMPONENT_ALIAS}}", | |
"id": "aa3fecf0-1fd0-4751-aba1-12314dc3a22f", | |
"version": "0.1", | |
"developer": { | |
"name": "Parker Porcupine", | |
"websiteUrl": "https://products.office.com/en-us/sharepoint/collaboration", | |
"privacyUrl": "https://privacy.microsoft.com/en-us/privacystatement", |
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
{ | |
"collectCoverage": true, | |
"collectCoverageFrom": [ | |
"<rootDir>/**/*.{ts,tsx}", | |
"!<rootDir>/**/*.scss.*", | |
"!<rootDir>/loc/**/*.*" | |
], | |
"coverageDirectory": "<rootDir>/../temp/test", | |
"coverageReporters": [ | |
"json", |
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
npm install @microsoft/[email protected] [email protected] --save-dev --exact |
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
npm install @types/[email protected] --save-dev --exact |
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
{ | |
"collectCoverage": true, | |
"coverageDirectory": "<rootDir>/../temp/test", | |
"coverageReporters": [ | |
"json", | |
"lcov", | |
"text-summary" | |
], | |
"coverageThreshold": { | |
"global": { |
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
{ | |
"moduleFileExtensions": [ | |
"ts", | |
"tsx", | |
"js", | |
"json" | |
], | |
"moduleNameMapper": { | |
"\\.(css|scss)$": "identity-obj-proxy", | |
"^resx-strings/en-us.json": "<rootDir>/../node_modules/@microsoft/sp-core-library/lib/resx-strings/en-us.json" |
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
const auth = { | |
token: '...', // get from your user settings in Drip admin | |
accountId: 007 | |
}; | |
const client = require('drip-nodejs')(auth); | |
const payload = { | |
subscribers:[{ | |
email:'[email protected]', | |
eu_consent:'granted' |