Update Modern Script Editor to SPFx v1.18.2
This commit is contained in:
parent
94a40c6036
commit
f38cd13429
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"@microsoft/generator-sharepoint": {
|
||||
"libraryName": "pnp-script-editor",
|
||||
"version": "1.17.4",
|
||||
"version": "1.18.2",
|
||||
"environment": "spo",
|
||||
"isDomainIsolated": false,
|
||||
"libraryId": "1425175f-3ed8-44d2-8fc4-dd1497191294",
|
||||
|
@ -10,7 +10,7 @@
|
|||
"componentType": "webpart",
|
||||
"nodeVersion": "16.20.0",
|
||||
"sdkVersions": {
|
||||
"@microsoft/teams-js": "2.9.1",
|
||||
"@microsoft/teams-js": "2.12.0",
|
||||
"@microsoft/microsoft-graph-client": "3.0.2"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -202,6 +202,7 @@ Version|Date|Comments
|
|||
1.0.21.0|March 11, 2023|Bump dependencies to allow react-script-editor to build under SPFx 1.16.1
|
||||
1.0.22.0|April 24, 2023|Added support for script in external template
|
||||
1.0.23.0|September 7, 2023|Upgrade to SPFx 1.17.4
|
||||
1.0.24.0|March 8, 2024|Upgrade to SPFx 1.18.2
|
||||
|
||||
|
||||
## Minimal Path to Awesome
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
"solution": {
|
||||
"name": "Modern Script Editor web part by mikaelsvenson",
|
||||
"id": "1425175f-3ed8-44d2-8fc4-dd1497191294",
|
||||
"version": "1.0.23.0",
|
||||
"version": "1.0.24.0",
|
||||
"includeClientSideAssets": true,
|
||||
"skipFeatureDeployment": false,
|
||||
"isDomainIsolated": false,
|
||||
|
@ -30,7 +30,7 @@
|
|||
"title": "PnP Modern Script Editor Web Part Feature",
|
||||
"description": "The feature that activates ScriptEditorWebPart from the pnp-script-editor solution.",
|
||||
"id": "3a328f0a-99c4-4b28-95ab-fe0847f657a3",
|
||||
"version": "1.0.23.0",
|
||||
"version": "1.0.24.0",
|
||||
"componentIds": [
|
||||
"3a328f0a-99c4-4b28-95ab-fe0847f657a3"
|
||||
]
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,43 +1,44 @@
|
|||
{
|
||||
"name": "pnp-script-editor",
|
||||
"version": "1.0.22",
|
||||
"version": "1.0.24",
|
||||
"private": true,
|
||||
"main": "lib/index.js",
|
||||
"resolutions": {
|
||||
"@types/react": "16.8.8"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=16.13.0 <17.0.0"
|
||||
"node": ">=16.13.0 <17.0.0 || >=18.17.1 <19.0.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluentui/react": "7.199.1",
|
||||
"@microsoft/sp-core-library": "1.17.4",
|
||||
"@microsoft/sp-loader": "1.17.4",
|
||||
"@microsoft/sp-lodash-subset": "1.17.4",
|
||||
"@microsoft/sp-property-pane": "1.17.4",
|
||||
"@microsoft/sp-webpart-base": "1.17.4",
|
||||
"@pnp/spfx-controls-react": "3.15.0",
|
||||
"@pnp/spfx-property-controls": "3.14.0",
|
||||
"@fluentui/react": "8.106.4",
|
||||
"@microsoft/sp-core-library": "1.18.2",
|
||||
"@microsoft/sp-loader": "1.18.2",
|
||||
"@microsoft/sp-lodash-subset": "1.18.2",
|
||||
"@microsoft/sp-property-pane": "1.18.2",
|
||||
"@microsoft/sp-webpart-base": "1.18.2",
|
||||
"@pnp/spfx-controls-react": "3.17.0",
|
||||
"@pnp/spfx-property-controls": "3.16.0",
|
||||
"react": "17.0.1",
|
||||
"react-dom": "17.0.1",
|
||||
"tslib": "2.3.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@microsoft/rush-stack-compiler-4.5": "0.5.0",
|
||||
"@microsoft/rush-stack-compiler-4.7": "0.1.0",
|
||||
"@rushstack/eslint-config": "2.5.1",
|
||||
"@microsoft/eslint-plugin-spfx": "1.17.4",
|
||||
"@microsoft/eslint-config-spfx": "1.17.4",
|
||||
"@microsoft/sp-build-web": "1.17.4",
|
||||
"@microsoft/eslint-plugin-spfx": "1.18.2",
|
||||
"@microsoft/eslint-config-spfx": "1.18.2",
|
||||
"@microsoft/sp-build-web": "1.18.2",
|
||||
"@types/webpack-env": "~1.15.2",
|
||||
"ajv": "^6.12.5",
|
||||
"eslint": "8.7.0",
|
||||
"gulp": "4.0.2",
|
||||
"typescript": "4.5.5",
|
||||
"typescript": "4.7.4",
|
||||
"@types/react": "17.0.45",
|
||||
"@types/react-dom": "17.0.17",
|
||||
"eslint-plugin-react-hooks": "4.3.0",
|
||||
"@microsoft/sp-module-interfaces": "1.17.4",
|
||||
"webpack-bundle-analyzer": "4.9.1"
|
||||
"@microsoft/sp-module-interfaces": "1.18.2",
|
||||
"webpack-bundle-analyzer": "4.10.1"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "gulp bundle",
|
||||
|
|
Loading…
Reference in New Issue