Skip to content

Commit

Permalink
5.3.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
karamem0 committed Nov 9, 2023
1 parent ac720b1 commit 3f7088c
Show file tree
Hide file tree
Showing 131 changed files with 222,181 additions and 71,199 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
- v*.*.*

env:
BUILD_VERSION: 5.3.0.${{github.run_number}}
BUILD_VERSION: 5.3.1.${{github.run_number}}

jobs:
build:
Expand Down
25 changes: 0 additions & 25 deletions scripts/TestApp0/.editorconfig

This file was deleted.

352 changes: 352 additions & 0 deletions scripts/TestApp0/.eslintrc.js

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions scripts/TestApp0/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@ node_modules
# Build generated files
dist
lib
release
solution
temp
*.sppkg
.heft

# Coverage directory used by tools like istanbul
coverage
Expand Down
16 changes: 16 additions & 0 deletions scripts/TestApp0/.npmignore
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
5 changes: 0 additions & 5 deletions scripts/TestApp0/.vscode/extensions.json

This file was deleted.

63 changes: 21 additions & 42 deletions scripts/TestApp0/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,44 +1,23 @@
{
/**
* 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": "Hosted workbench",
"type": "msedge",
"request": "launch",
"url": "https://{tenantDomain}/_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"
]
}
]
}
20 changes: 10 additions & 10 deletions scripts/TestApp0/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
// Place your settings in this file to overwrite default and user settings.
{
// 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"
// 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"
}
29 changes: 19 additions & 10 deletions scripts/TestApp0/.yo-rc.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,21 @@
{
"@microsoft/generator-sharepoint": {
"version": "1.9.1",
"libraryName": "TestApp0",
"libraryId": "9652a504-9b2e-4555-a047-df37bdfe5187",
"environment": "spo",
"packageManager": "npm",
"isCreatingSolution": true,
"isDomainIsolated": false,
"componentType": "webpart"
}
"@microsoft/generator-sharepoint": {
"plusBeta": false,
"isCreatingSolution": true,
"nodeVersion": "18.17.1",
"sdksVersions": {
"@microsoft/microsoft-graph-client": "3.0.2",
"@microsoft/teams-js": "2.12.0"
},
"version": "1.18.0",
"libraryName": "TestApp0",
"libraryId": "9652a504-9b2e-4555-a047-df37bdfe5187",
"environment": "spo",
"packageManager": "npm",
"solutionName": "TestApp0",
"solutionShortDescription": "TestApp0 description",
"skipFeatureDeployment": true,
"isDomainIsolated": false,
"componentType": "webpart"
}
}
26 changes: 0 additions & 26 deletions scripts/TestApp0/README.md

This file was deleted.

28 changes: 14 additions & 14 deletions scripts/TestApp0/config/config.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/config.2.0.schema.json",
"version": "2.0",
"bundles": {
"testapp0": {
"components": [
{
"entrypoint": "./lib/webparts/TestApp0/TestApp0WebPart.js",
"manifest": "./src/webparts/TestApp0/TestApp0WebPart.manifest.json"
}
]
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/config.2.0.schema.json",
"version": "2.0",
"bundles": {
"testapp0": {
"components": [
{
"entrypoint": "./lib/webparts/testapp0/TestApp0WebPart.js",
"manifest": "./src/webparts/testapp0/TestApp0WebPart.manifest.json"
}
},
"externals": {},
"localizedResources": {
"TestApp0WebPartStrings": "lib/webparts/TestApp0/loc/{locale}.js"
]
}
},
"externals": {},
"localizedResources": {
"TestApp0WebPartStrings": "lib/webparts/testapp0/loc/{locale}.js"
}
}
4 changes: 0 additions & 4 deletions scripts/TestApp0/config/copy-assets.json

This file was deleted.

10 changes: 5 additions & 5 deletions scripts/TestApp0/config/deploy-azure-storage.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/deploy-azure-storage.schema.json",
"workingDir": "./temp/deploy/",
"account": "<!-- STORAGE ACCOUNT NAME -->",
"container": "TestApp0",
"accessKey": "<!-- ACCESS KEY -->"
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/deploy-azure-storage.schema.json",
"workingDir": "./release/assets/",
"account": "<!-- STORAGE ACCOUNT NAME -->",
"container": "TestApp0",
"accessKey": "<!-- ACCESS KEY -->"
}
48 changes: 37 additions & 11 deletions scripts/TestApp0/config/package-solution.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,40 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/package-solution.schema.json",
"solution": {
"name": "TestApp0",
"id": "9652a504-9b2e-4555-a047-df37bdfe5187",
"version": "1.0.0.0",
"includeClientSideAssets": true,
"skipFeatureDeployment": true,
"isDomainIsolated": false
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/package-solution.schema.json",
"solution": {
"name": "TestApp0",
"id": "9652a504-9b2e-4555-a047-df37bdfe5187",
"version": "1.0.0.0",
"includeClientSideAssets": true,
"skipFeatureDeployment": true,
"isDomainIsolated": false,
"developer": {
"name": "",
"websiteUrl": "",
"privacyUrl": "",
"termsOfUseUrl": "",
"mpnId": ""
},
"paths": {
"zippedPackage": "solution/TestApp0.sppkg"
}
"metadata": {
"shortDescription": {
"default": "TestApp0"
},
"longDescription": {
"default": "TestApp0"
},
"screenshotPaths": [],
"videoUrl": "",
"categories": []
},
"features": [
{
"title": "TestApp0 Feature",
"description": "The feature that activates elements of the TestApp0 solution.",
"id": "6dc3b7ab-0b02-4866-a713-4f287be38114",
"version": "1.0.0.0"
}
]
},
"paths": {
"zippedPackage": "solution/TestApp0.sppkg"
}
}
3 changes: 3 additions & 0 deletions scripts/TestApp0/config/sass.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/core-build/sass.schema.json"
}
12 changes: 4 additions & 8 deletions scripts/TestApp0/config/serve.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
{
"$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/"
}
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/spfx-serve.schema.json",
"port": 4321,
"https": true,
"initialPage": "https://{tenantDomain}/_layouts/workbench.aspx"
}
4 changes: 2 additions & 2 deletions scripts/TestApp0/config/write-manifests.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/write-manifests.schema.json",
"cdnBasePath": "<!-- PATH TO CDN -->"
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/write-manifests.schema.json",
"cdnBasePath": "<!-- PATH TO CDN -->"
}
13 changes: 11 additions & 2 deletions scripts/TestApp0/gulpfile.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
'use strict';

const gulp = require('gulp');
const build = require('@microsoft/sp-build-web');

build.addSuppression(`Warning - [sass] The local CSS class 'ms-Grid' is not camelCase and will not be type-safe.`);

build.initialize(gulp);
var getTasks = build.rig.getTasks;
build.rig.getTasks = function () {
var result = getTasks.call(build.rig);

result.set('serve', result.get('serve-deprecated'));

return result;
};

build.initialize(require('gulp'));
Loading

0 comments on commit 3f7088c

Please sign in to comment.