Skip to content

Commit

Permalink
chore: fix build:prod:singlefile task and update publish:dev task
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 c1e1e65 commit d55f56f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"bump:feature": "npm run bump:npm:feature && npm run bump:dotnet:feature",
"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:selfcontained:win && npm run build:prod:selfcontained:linux && npm run build:prod:selfcontained: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",
Expand All @@ -27,7 +27,7 @@
"build:prod:singlefile:osx": "dotnet publish ./cmf-cli/cmf.csproj -c Release -r osx-x64 -o dist/osx-x64 --self-contained /p:PublishSingleFile=true",
"publish": "cd npm && npm publish --tag next && cd ..",
"publish:live": "cd npm && npm publish --tag latest && cd ..",
"publish:dev": "DEV_VERSION=0.0.0-$(git branch --show-current)-$(date '+%Y%m%d%H%M') npm run bump:npm:dev && npm run build:bundle && cd npm && npm publish --tag $(git branch --show-current) --registry https://dev.criticalmanufacturing.io/repository/npm-releases/ && cd ..",
"publish:dev": "DEV_VERSION=0.0.0-$(git branch --show-current)-$(date '+%Y%m%d%H%M') npm run bump:npm:dev && npm run build:bundle && cd npm && npm publish --tag $(git branch --show-current) --registry https://dev.criticalmanufacturing.io/repository/npm-releases --always-auth && cd ..",
"bump:npm:pre": "cd npm && npm version prerelease --no-git-tag-version && cd ..",
"bump:npm:pre:breaking": "cd npm && npm version premajor --no-git-tag-version && cd ..",
"bump:npm:pre:feature": "cd npm && npm version preminor --no-git-tag-version && cd ..",
Expand Down

0 comments on commit d55f56f

Please sign in to comment.