Skip to content

Commit

Permalink
chore(build): fix self-contained build tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
ponces authored and m-s- committed Jan 6, 2025
1 parent d55f56f commit 840887c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
"bump:breaking": "npm run bump:npm:breaking && npm run bump:dotnet:breaking",
"build:prod": "npm run build:clean && npm run build:prod:win && npm run build:prod:linux && npm run build:prod:osx",
"build:prod:singlefile": "npm run build:clean && npm run build:prod:singlefile:win && npm run build:prod:singlefile:linux && npm run build:prod:singlefile:osx",
"build:prod:win": "dotnet publish ./cmf-cli/cmf.csproj -c Release -r win-x64 -o dist/win-x64 --self-contained /p:nowarn=NU1603 /p:IncludeSourceRevisionInInformationalVersion=false",
"build:prod:linux": "dotnet publish ./cmf-cli/cmf.csproj -c Release -r linux-x64 -o dist/linux-x64 --self-contained /p:nowarn=NU1603 /p:IncludeSourceRevisionInInformationalVersion=false",
"build:prod:osx": "dotnet publish ./cmf-cli/cmf.csproj -c Release -r osx-x64 -o dist/osx-x64 --self-contained /p:nowarn=NU1603 /p:IncludeSourceRevisionInInformationalVersion=false",
"build:prod:win": "dotnet publish ./cmf-cli/cmf.csproj -c Release -r win-x64 -o dist/win-x64 --self-contained /p:IncludeSourceRevisionInInformationalVersion=false",
"build:prod:linux": "dotnet publish ./cmf-cli/cmf.csproj -c Release -r linux-x64 -o dist/linux-x64 --self-contained /p:IncludeSourceRevisionInInformationalVersion=false",
"build:prod:osx": "dotnet publish ./cmf-cli/cmf.csproj -c Release -r osx-x64 -o dist/osx-x64 --self-contained /p:IncludeSourceRevisionInInformationalVersion=false",
"build:bundle": "npm run build:clean && npm run build:bundle:win && npm run build:bundle:linux && npm run build:bundle:osx",
"build:bundle:win": "dotnet publish ./cmf-cli/cmf.csproj -c Release -r win-x64 -o npm/dist/win-x64 --no-self-contained /p:IncludeSourceRevisionInInformationalVersion=false",
"build:bundle:linux": "dotnet publish ./cmf-cli/cmf.csproj -c Release -r linux-x64 -o npm/dist/linux-x64 --no-self-contained /p:IncludeSourceRevisionInInformationalVersion=false",
"build:bundle:osx": "dotnet publish ./cmf-cli/cmf.csproj -c Release -r osx-x64 -o npm/dist/osx-x64 --no-self-contained /p:IncludeSourceRevisionInInformationalVersion=false",
"build:bundle:win": "dotnet publish ./cmf-cli/cmf.csproj -c Release -r win-x64 -o npm/dist/win-x64 --self-contained /p:IncludeSourceRevisionInInformationalVersion=false",
"build:bundle:linux": "dotnet publish ./cmf-cli/cmf.csproj -c Release -r linux-x64 -o npm/dist/linux-x64 --self-contained /p:IncludeSourceRevisionInInformationalVersion=false",
"build:bundle:osx": "dotnet publish ./cmf-cli/cmf.csproj -c Release -r osx-x64 -o npm/dist/osx-x64 --self-contained /p:IncludeSourceRevisionInInformationalVersion=false",
"build:prod:singlefile:win": "dotnet publish ./cmf-cli/cmf.csproj -c Release -r win-x64 -o dist/win-x64 --self-contained /p:PublishSingleFile=true",
"build:prod:singlefile:linux": "dotnet publish ./cmf-cli/cmf.csproj -c Release -r linux-x64 -o dist/linux-x64 --self-contained /p:PublishSingleFile=true",
"build:prod:singlefile:osx": "dotnet publish ./cmf-cli/cmf.csproj -c Release -r osx-x64 -o dist/osx-x64 --self-contained /p:PublishSingleFile=true",
Expand Down

0 comments on commit 840887c

Please sign in to comment.