First commit

This commit is contained in:
Jerry Yasir 2020-09-26 15:53:05 -04:00 committed by GitHub
parent e6f43e60b6
commit f388ef6d87
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 66 additions and 0 deletions

View File

@ -0,0 +1,20 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/config.2.0.schema.json",
"version": "2.0",
"bundles": {
"world-clock-web-part-web-part": {
"components": [
{
"entrypoint": "./lib/webparts/worldClockWebPart/WorldClockWebPartWebPart.js",
"manifest": "./src/webparts/worldClockWebPart/WorldClockWebPartWebPart.manifest.json"
}
]
}
},
"externals": {},
"localizedResources": {
"WorldClockWebPartWebPartStrings": "lib/webparts/worldClockWebPart/loc/{locale}.js",
"ControlStrings": "node_modules/@pnp/spfx-controls-react/lib/loc/{locale}.js",
"PropertyControlStrings": "node_modules/@pnp/spfx-property-controls/lib/loc/{locale}.js"
}
}

View File

@ -0,0 +1,4 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/copy-assets.schema.json",
"deployCdnPath": "temp/deploy"
}

View File

@ -0,0 +1,7 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/deploy-azure-storage.schema.json",
"workingDir": "./temp/deploy/",
"account": "<!-- STORAGE ACCOUNT NAME -->",
"container": "world-clock",
"accessKey": "<!-- ACCESS KEY -->"
}

View File

@ -0,0 +1,21 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/package-solution.schema.json",
"solution": {
"name": "world-clocks-client-side-solution",
"id": "a6191c45-b01b-4158-8ca0-f86497d79df5",
"version": "1.0.0.1",
"includeClientSideAssets": true,
"skipFeatureDeployment": true,
"isDomainIsolated": false,
"developer": {
"name": "Jerry Yasr",
"websiteUrl": "https://jerryyasir.com",
"privacyUrl": "https://jerryyasir.com",
"termsOfUseUrl": "https://jerryyasir.com",
"mpnId": ""
}
},
"paths": {
"zippedPackage": "solution/world-clocks.sppkg"
}
}

View File

@ -0,0 +1,10 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/core-build/serve.schema.json",
"port": 4321,
"https": true,
"initialPage": "https://localhost:5432/workbench",
"api": {
"port": 5432,
"entryPath": "node_modules/@microsoft/sp-webpart-workbench/lib/api/"
}
}

View File

@ -0,0 +1,4 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/write-manifests.schema.json",
"cdnBasePath": "<!-- PATH TO CDN -->"
}