Skip to content

Commit

Permalink
Merge pull request #67 from pnp/v7.0.1
Browse files Browse the repository at this point in the history
new version 7.0.1 with some fixes + updated getting start locally readme
  • Loading branch information
tavikukko authored Sep 17, 2024
2 parents 74bc011 + 7bad47b commit c56c2f0
Show file tree
Hide file tree
Showing 17 changed files with 19,771 additions and 21,079 deletions.
10 changes: 4 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,10 @@ If you want to chip in by porting features or even creating new ones, here is a
```powershell
git clone https://github.com/pnp/sp-editor.git # clone the project
cd sp-editor # go to the folder
npm i # install dependencies
cd iframe-sandbox-app # go to the iframe app folder
npm i # install dependencies
cd .. # got back to root
npm run watch # build and start watch mode
code . # open vscode
npm i # install dependencies
npm run build # to build everything before starting to developing
npm start # build and start watch mode
```
When Watch is running, open Microsoft Edge and select Extensions from the menu

Expand All @@ -33,7 +31,7 @@ If all good, the local build extension will show up

![](repo-images/edgeextensionloaded.png)

Now you can open a SharePoint site, open devtools and select SharePoint tab. Press the reload button to reload extension after making code changes.
Now you can open a SharePoint site, open devtools and select SharePoint tab. The extension updates it self on file changes. If it does not, press the reload button to reload extension after making code changes.

![](repo-images/edgewatchrefresh.png)

Expand Down
3,750 changes: 1,936 additions & 1,814 deletions package-lock.json

Large diffs are not rendered by default.

25 changes: 11 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sp-editor",
"version": "7.0.0",
"version": "7.0.1",
"private": true,
"homepage": ".",
"dependencies": {
Expand All @@ -13,18 +13,18 @@
"@microsoft/mgt-react": "^4.2.5",
"@microsoft/microsoft-graph-client": "^3.0.7",
"@minoru/react-dnd-treeview": "^3.4.4",
"@pnp/graph": "^4.4.0",
"@pnp/logging": "^4.4.0",
"@pnp/msaljsclient": "^4.4.0",
"@pnp/sp": "^4.4.0",
"@pnp/sp-admin": "^4.4.0",
"@pnp/graph": "^4.5.0",
"@pnp/logging": "^4.5.0",
"@pnp/msaljsclient": "^4.5.0",
"@pnp/sp": "^4.5.0",
"@pnp/sp-admin": "^4.5.0",
"@reduxjs/toolkit": "^2.2.7",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.13",
"@types/node": "^22.5.4",
"@types/react": "^18.3.5",
"@types/node": "^22.5.5",
"@types/react": "^18.3.6",
"@types/react-dom": "^18.3.0",
"@uifabric/theme-samples": "^7.5.33",
"gsap": "^3.12.5",
Expand All @@ -48,21 +48,18 @@
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@types/chrome": "^0.0.270",
"@types/chrome": "^0.0.271",
"react-scripts": "^5.0.1",
"ts-loader": "^9.5.1",
"webpack-cli": "^5.1.4",
"del": "^6.0.0",
"gulp": "^4.0.2",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.1.3"
"gulp-replace": "^1.1.4"
},
"scripts": {
"start": "react-scripts start",
"start": "GENERATE_SOURCEMAP=false craco start",
"build": "react-scripts build && cd iframe-sandbox-app && BUILD_PATH='../build/build' react-scripts build && cd ..",
"test": "react-scripts test",
"eject": "react-scripts eject",
"cracostart": "GENERATE_SOURCEMAP=false craco start",
"updatedeps": "node_modules/.bin/webpack && gulp"
},
"eslintConfig": {
Expand Down
Loading

0 comments on commit c56c2f0

Please sign in to comment.