Skip to content

Commit

Permalink
Issues/948 (#949)
Browse files Browse the repository at this point in the history
* Fix for #948

* Updated package versions
  • Loading branch information
tarjeieo authored Jan 23, 2023
1 parent 39b0046 commit 369621a
Show file tree
Hide file tree
Showing 18 changed files with 10,183 additions and 125,155 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ Every change is marked with issue ID.
- Fixed an issue where hubsite was not resolved, leading to inconsistensies and errors [#640](https://github.com/Puzzlepart/prosjektportalen365/issues/849)
- Fixed an issue where sometimes the role was shown as the owner of a resource allocation entry [#916](https://github.com/Puzzlepart/prosjektportalen365/issues/916)
- Fixed an issue where '? Hjelp tilgjengelig' button didn't render propertly [#902](https://github.com/Puzzlepart/prosjektportalen365/issues/902)
- Fixed an issue where visitors to a project didn't see the phase web part [#948](https://github.com/Puzzlepart/prosjektportalen365/issues/948)

## 1.7.2 - 26.10.2022

Expand Down
12 changes: 6 additions & 6 deletions Install/Build-Release.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,9 @@ if (-not $SkipBuildSharePointFramework.IsPresent) {
npm ci --silent --no-audit --no-fund >$null 2>&1
}
else {
npm install --no-progress --silent --no-audit --no-fund >$null 2>&1
npm install --no-progress --silent --no-audit --no-fund
}
npm run build >$null 2>&1
npm run build
EndAction
}

Expand All @@ -119,9 +119,9 @@ if (-not $SkipBuildSharePointFramework.IsPresent) {
npm ci --silent --no-audit --no-fund >$null 2>&1
}
else {
npm install --no-progress --silent --no-audit --no-fund >$null 2>&1
npm install --no-progress --silent --no-audit --no-fund
}
npm run package >$null 2>&1
npm run package
Get-ChildItem "./sharepoint/solution/" *.sppkg -Recurse -ErrorAction SilentlyContinue | Where-Object { -not ($_.PSIsContainer -or (Test-Path "$RELEASE_PATH/Apps/$_")) } | Copy-Item -Destination $RELEASE_PATH_APPS -Force
EndAction
}
Expand All @@ -141,9 +141,9 @@ if ($CI.IsPresent) {
npm ci --silent --no-audit --no-fund >$null 2>&1
}
else {
npm install --no-progress --silent --no-audit --no-fund >$null 2>&1
npm install --no-progress --silent --no-audit --no-fund
}
npm run generateJsonTemplates >$null 2>&1
npm run generateJsonTemplates

Get-ChildItem "./Content" -Directory -Filter "*no-NB*" | ForEach-Object {
Convert-PnPFolderToSiteTemplate -Out "$RELEASE_PATH_TEMPLATES/$($_.BaseName).pnp" -Folder $_.FullName -Force
Expand Down
Loading

0 comments on commit 369621a

Please sign in to comment.