-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c3bb0b7
commit 066c8ce
Showing
38 changed files
with
900 additions
and
621 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Auto detect text files and perform LF normalization | ||
* text=auto |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,3 +33,8 @@ obj | |
*.scss.ts | ||
|
||
package-lock.json | ||
|
||
# Sensitive data | ||
.env | ||
|
||
*.scss.d.ts |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
!dist | ||
config | ||
|
||
gulpfile.js | ||
|
||
release | ||
src | ||
temp | ||
|
||
tsconfig.json | ||
tslint.json | ||
|
||
*.log | ||
|
||
.yo-rc.json | ||
.vscode |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"recommendations": [ | ||
"msjsdiag.debugger-for-chrome" | ||
] | ||
"recommendations": [ | ||
"rioj7.command-variable" | ||
] | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,42 @@ | ||
{ | ||
/** | ||
* Install Chrome Debugger Extension for Visual Studio Code to debug your components with the | ||
* Chrome browser: https://aka.ms/spfx-debugger-extensions | ||
*/ | ||
"version": "0.2.0", | ||
"configurations": [{ | ||
"name": "Local workbench", | ||
"type": "chrome", | ||
"request": "launch", | ||
"url": "https://localhost:4321/temp/workbench.html", | ||
"webRoot": "${workspaceRoot}", | ||
"sourceMaps": true, | ||
"sourceMapPathOverrides": { | ||
"webpack:///.././src/*": "${webRoot}/src/*", | ||
"webpack:///../../../src/*": "${webRoot}/src/*", | ||
"webpack:///../../../../src/*": "${webRoot}/src/*", | ||
"webpack:///../../../../../src/*": "${webRoot}/src/*" | ||
}, | ||
"runtimeArgs": [ | ||
"--remote-debugging-port=9222" | ||
] | ||
}, | ||
{ | ||
"name": "Hosted workbench", | ||
"type": "chrome", | ||
"request": "launch", | ||
"url": "https://enter-your-SharePoint-site/_layouts/workbench.aspx", | ||
"webRoot": "${workspaceRoot}", | ||
"sourceMaps": true, | ||
"sourceMapPathOverrides": { | ||
"webpack:///.././src/*": "${webRoot}/src/*", | ||
"webpack:///../../../src/*": "${webRoot}/src/*", | ||
"webpack:///../../../../src/*": "${webRoot}/src/*", | ||
"webpack:///../../../../../src/*": "${webRoot}/src/*" | ||
}, | ||
"runtimeArgs": [ | ||
"--remote-debugging-port=9222", | ||
"-incognito" | ||
] | ||
} | ||
] | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "SPFx", | ||
"type": "msedge", | ||
"request": "launch", | ||
|
||
// You have to create '.env' file with key: 'URL=https://your-sharepoint-site' | ||
"url": "${input:envfile.url}/_layouts/workbench.aspx", | ||
|
||
"webRoot": "${workspaceRoot}", | ||
"sourceMaps": true, | ||
"resolveSourceMapLocations": [ | ||
"${workspaceFolder}/**", | ||
"!**/node_modules/**" | ||
], | ||
"sourceMapPathOverrides": { | ||
"webpack:///.././src/*": "${webRoot}/src/*", | ||
"webpack:///../../../src/*": "${webRoot}/src/*", | ||
"webpack:///../../../../src/*": "${webRoot}/src/*", | ||
"webpack:///../../../../../src/*": "${webRoot}/src/*" | ||
}, | ||
"runtimeArgs": [ | ||
"--remote-debugging-port=9222", | ||
"-incognito" | ||
] | ||
} | ||
], | ||
"inputs": [ | ||
{ | ||
"id": "envfile.url", | ||
"type": "command", | ||
"command": "extension.commandvariable.file.content", | ||
"args": { | ||
"fileName": "${workspaceFolder}/.env", | ||
"key": "URL", | ||
"default": "https://enter-your-SharePoint-site" | ||
} | ||
} | ||
] | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,16 @@ | ||
// Place your settings in this file to overwrite default and user settings. | ||
{ | ||
"typescript.tsdk": "node_modules/typescript/lib" | ||
// Configure glob patterns for excluding files and folders in the file explorer. | ||
"files.exclude": { | ||
"**/.git": true, | ||
"**/.DS_Store": true, | ||
"**/bower_components": true, | ||
"**/coverage": true, | ||
"**/lib-amd": true, | ||
"src/**/*.scss.ts": true | ||
}, | ||
"typescript.tsdk": "./node_modules/typescript/lib", | ||
"files.associations": { | ||
"**/src/webparts/**/*.manifest.json": "jsonc" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,49 @@ | ||
{ | ||
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/package-solution.schema.json", | ||
"solution": { | ||
"developer": { | ||
"name": "Contoso", | ||
"privacyUrl": "https://contoso.com/privacy", | ||
"termsOfUseUrl": "https://contoso.com/terms-of-use", | ||
"websiteUrl": "https://contoso.com/my-app", | ||
"mpnId": "000000" | ||
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/package-solution.schema.json", | ||
"solution": { | ||
"developer": { | ||
"name": "", | ||
"privacyUrl": "", | ||
"termsOfUseUrl": "", | ||
"websiteUrl": "", | ||
"mpnId": "Undefined-1.14.0" | ||
}, | ||
"name": "SharePoint Lightbox Image Gallery", | ||
"id": "a7d34cfc-bc45-4910-9ec5-3e2ca97a5d27", | ||
"iconPath": "assets/slideshow96x96.png", | ||
"version": "2.0.0.0", | ||
"supportedLocales": [ | ||
"en-us", | ||
"sk-sk" | ||
], | ||
"includeClientSideAssets": true, | ||
"skipFeatureDeployment": true, | ||
"isDomainIsolated": false, | ||
"metadata": { | ||
"shortDescription": { | ||
"default": "spfx-lightbox-image-gallery short description.", | ||
"sk-sk": "Krátky opis aplikácie." | ||
}, | ||
"longDescription": { | ||
"default": "Display a good looking image gallery using lightbox effects.", | ||
"sk-sk": "Popis aplikácie." | ||
}, | ||
"screenshotPaths": [], | ||
"videoUrl": "", | ||
"categories": [ | ||
"Site Design" | ||
] | ||
}, | ||
"features": [ | ||
{ | ||
"title": "spfx Feature", | ||
"description": "The feature that activates elements of the solution.", | ||
"id": "256cc7e1-1154-4987-83ae-644419f6ce57", | ||
"version": "1.0.0.0" | ||
} | ||
] | ||
}, | ||
"name": "SharePoint Lightbox Image Gallery", | ||
"id": "a7d34cfc-bc45-4910-9ec5-3e2ca97a5d27", | ||
"version": "1.0.1.0", | ||
"includeClientSideAssets": true, | ||
"skipFeatureDeployment": true, | ||
"isDomainIsolated": false | ||
}, | ||
"paths": { | ||
"zippedPackage": "solution/spfx-lightbox-image-gallery.sppkg" | ||
} | ||
"paths": { | ||
"zippedPackage": "solution/spfx-lightbox-image-gallery.sppkg" | ||
} | ||
} |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"$schema": "https://raw.githubusercontent.com/s-KaiNet/spfx-fast-serve/master/schema/config.latest.schema.json", | ||
"cli": { | ||
"isLibraryComponent": false | ||
} | ||
} |
Oops, something went wrong.