Skip to content

Commit

Permalink
Merge branch 'KelvinTegelaar:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
exservicesCapTech authored Aug 23, 2024
2 parents 443d9e0 + 51b2170 commit 237ff33
Show file tree
Hide file tree
Showing 70 changed files with 4,836 additions and 576 deletions.
12 changes: 10 additions & 2 deletions Tools/Start-CippDevEmulators.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
Write-Host "Starting CIPP Dev Emulators"
Write-Host 'Starting CIPP Dev Emulators'
Get-Process node -ErrorAction SilentlyContinue | Stop-Process -ErrorAction SilentlyContinue
$Path = (Get-Item $PSScriptRoot).Parent.Parent.FullName
wt --title CIPP`; new-tab --title 'Azurite' -d $Path pwsh -c azurite`; new-tab --title 'FunctionApp' -d $Path\CIPP-API pwsh -c func start`; new-tab --title 'CIPP Frontend' -d $Path\CIPP pwsh -c npm run start`; new-tab --title 'SWA' -d $Path\CIPP pwsh -c npm run start-swa

$Process = Read-Host -Prompt 'Start Process Function (y/N)?'

if ($Process -eq 'y') {
wt --title CIPP`; new-tab --title 'Azurite' -d $Path pwsh -c azurite`; new-tab --title 'FunctionApp' -d $Path\CIPP-API pwsh -c func start`; new-tab --title 'CIPP Frontend' -d $Path\CIPP pwsh -c npm run start`; new-tab --title 'SWA' -d $Path\CIPP pwsh -c npm run start-swa`; new-tab --title 'CIPP-API-Processor' -d $Path\CIPP-API-Processor pwsh -c func start --port 7072
} else {
wt --title CIPP`; new-tab --title 'Azurite' -d $Path pwsh -c azurite`; new-tab --title 'FunctionApp' -d $Path\CIPP-API pwsh -c func start`; new-tab --title 'CIPP Frontend' -d $Path\CIPP pwsh -c npm run start`; new-tab --title 'SWA' -d $Path\CIPP pwsh -c npm run start-swa
}

188 changes: 177 additions & 11 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 6 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cipp",
"version": "6.1.0",
"version": "6.3.0",
"description": "The CyberDrain Improved Partner Portal is a portal to help manage administration for Microsoft Partners.",
"homepage": "https://cipp.app/",
"bugs": {
Expand Down Expand Up @@ -50,6 +50,8 @@
"chart.js": "^3.5.1",
"classnames": "^2.3.1",
"core-js": "^3.18.3",
"dompurify": "^3.1.6",
"eml-parse-js": "^1.1.14",
"enzyme": "^3.11.0",
"final-form": "^4.20.4",
"final-form-arrays": "^3.1.0",
Expand All @@ -69,11 +71,13 @@
"react-data-table-component": "^7.4.5",
"react-datepicker": "^4.10.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-final-form": "^6.5.9",
"react-final-form-arrays": "^3.1.4",
"react-final-form-listeners": "^1.0.3",
"react-helmet-async": "^1.3.0",
"react-hotkeys-hook": "^3.4.4",
"react-html-parser": "^2.0.2",
"react-loading-skeleton": "^3.1.0",
"react-masonry-component": "^6.3.0",
"react-media-hook": "^0.4.9",
Expand All @@ -88,7 +92,7 @@
"redux-persist": "^6.0.0",
"simplebar-react": "^2.3.6",
"source-map-loader": "^3.0.0",
"styled-components": "^5.3.3"
"styled-components": "^5.3.11"
},
"devDependencies": {
"@types/react": "^18.2.39",
Expand Down
2 changes: 1 addition & 1 deletion public/version_latest.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.1.0
6.3.0
Loading

0 comments on commit 237ff33

Please sign in to comment.