Skip to content

Instantly share code, notes, and snippets.

View waldekmastykarz's full-sized avatar
🥑
Microsoft 365

Waldek Mastykarz waldekmastykarz

🥑
Microsoft 365
View GitHub Profile
@waldekmastykarz
waldekmastykarz / gulpfile.js
Last active June 9, 2017 06:34
SPFx gulpfile.js with additional task to show query string parameters for debugging extensions
'use strict';
const gulp = require('gulp');
const build = require('@microsoft/sp-build-web');
build.task('serve-info', {
execute: (config) => {
return new Promise((resolve, reject) => {
var serveTask = config.uniqueTasks.find((task) => {
return task.name === 'serve';
@waldekmastykarz
waldekmastykarz / settings.json
Created March 31, 2017 04:10
VSCode SharePoint Framework JSON schemas configuration
// Place your settings in this file to overwrite default and user settings.
{
"json.schemas": [
{
"fileMatch": [
"/config/config.json"
],
"url": "./node_modules/@microsoft/sp-build-web/lib/schemas/config.schema.json"
},
{
@waldekmastykarz
waldekmastykarz / Manifest.xml
Created September 17, 2015 11:45
Office Add-ins Azure login app domains
<AppDomains>
<AppDomain>https://login.windows.net</AppDomain>
<AppDomain>https://login.microsoftonline.net</AppDomain>
<AppDomain>https://login.microsoftonline.com</AppDomain>
</AppDomains>