support SPFx 1.16.1

This commit is contained in:
David Freedman 2023-03-11 14:00:54 +00:00
parent 2fc17a2e23
commit 9a80cc6223
5 changed files with 49623 additions and 7491 deletions

View File

@ -3,7 +3,7 @@
"solution": { "solution": {
"name": "Modern Script Editor web part by mikaelsvenson", "name": "Modern Script Editor web part by mikaelsvenson",
"id": "1425175f-3ed8-44d2-8fc4-dd1497191294", "id": "1425175f-3ed8-44d2-8fc4-dd1497191294",
"version": "1.0.20.0", "version": "1.0.21.0",
"includeClientSideAssets": true, "includeClientSideAssets": true,
"skipFeatureDeployment": false, "skipFeatureDeployment": false,
"isDomainIsolated": false, "isDomainIsolated": false,

File diff suppressed because it is too large Load Diff

View File

@ -1,37 +1,38 @@
{ {
"name": "pnp-script-editor", "name": "pnp-script-editor",
"version": "1.0.20", "version": "1.0.21",
"private": true, "private": true,
"main": "lib/index.js", "main": "lib/index.js",
"resolutions": { "resolutions": {
"@types/react": "16.8.8" "@types/react": "16.8.8"
}, },
"dependencies": { "dependencies": {
"@microsoft/sp-core-library": "1.13.1", "@microsoft/sp-core-library": "1.16.1",
"@microsoft/sp-loader": "1.13.1", "@microsoft/sp-loader": "1.16.1",
"@microsoft/sp-lodash-subset": "1.13.1", "@microsoft/sp-lodash-subset": "1.16.1",
"@microsoft/sp-property-pane": "1.13.1", "@microsoft/sp-property-pane": "1.16.1",
"@microsoft/sp-webpart-base": "1.13.1", "@microsoft/sp-webpart-base": "1.16.1",
"@pnp/spfx-controls-react": "2.4.0", "@pnp/spfx-controls-react": "3.13.0",
"@pnp/spfx-property-controls": "2.3.0", "@pnp/spfx-property-controls": "3.12.0",
"office-ui-fabric-react": "7.174.1", "office-ui-fabric-react": "7.174.1",
"react": "16.13.1", "react": "16.13.1",
"react-dom": "16.13.1" "react-dom": "16.13.1"
}, },
"devDependencies": { "devDependencies": {
"@microsoft/rush-stack-compiler-3.2": "^0.6.3", "@microsoft/rush-stack-compiler-3.2": "0.11.0",
"@microsoft/rush-stack-compiler-3.3": "0.3.5", "@microsoft/rush-stack-compiler-3.3": "0.10.0",
"@microsoft/rush-stack-compiler-3.7": "0.2.3", "@microsoft/rush-stack-compiler-3.7": "0.7.0",
"@microsoft/rush-stack-compiler-3.9": "0.4.47", "@microsoft/rush-stack-compiler-3.9": "0.5.0",
"@microsoft/sp-build-web": "1.13.1", "@microsoft/rush-stack-compiler-4.5": "0.4.0",
"@microsoft/sp-module-interfaces": "1.13.1", "@microsoft/sp-build-web": "1.16.1",
"@microsoft/sp-tslint-rules": "1.13.1", "@microsoft/sp-module-interfaces": "1.16.1",
"@microsoft/sp-tslint-rules": "1.16.1",
"@types/chai": "3.4.34", "@types/chai": "3.4.34",
"@types/mocha": "2.2.38", "@types/mocha": "2.2.38",
"@types/react": "16.9.36", "@types/react": "16.9.51",
"@types/react-dom": "16.9.15", "@types/react-dom": "16.9.15",
"@types/webpack-env": "1.13.1", "@types/webpack-env": "1.13.1",
"ajv": "~5.2.2", "ajv": "~8.2.0",
"gulp": "4.0.2", "gulp": "4.0.2",
"tslint-microsoft-contrib": "5.0.0", "tslint-microsoft-contrib": "5.0.0",
"webpack-bundle-analyzer": "^4.4.0" "webpack-bundle-analyzer": "^4.4.0"

View File

@ -1,30 +0,0 @@
{
"extends": "./node_modules/@microsoft/sp-tslint-rules/base-tslint.json",
"rules": {
"class-name": false,
"export-name": false,
"forin": false,
"label-position": false,
"member-access": true,
"no-arg": false,
"no-console": false,
"no-construct": false,
"no-duplicate-variable": true,
"no-eval": false,
"no-function-expression": true,
"no-internal-module": true,
"no-shadowed-variable": true,
"no-switch-case-fall-through": true,
"no-unnecessary-semicolons": true,
"no-unused-expression": true,
"no-use-before-declare": true,
"no-with-statement": true,
"semicolon": true,
"trailing-comma": false,
"typedef": false,
"typedef-whitespace": false,
"use-named-parameter": true,
"variable-name": false,
"whitespace": false
}
}