dbos-inc / dbos-transact

The TypeScript framework for backends that scale
https://docs.dbos.dev
MIT License
291 stars 20 forks source link

remove grunt dependencies + files #467

Closed devhawk closed 1 month ago

devhawk commented 1 month ago

we originally used grunt to set package version via nerdbank git version. However, we now do this directly with the npm version command in the artifact.yml GH Workflow so we don't need grunt anymore.

Assuming you have .NET runtime installed, you can stamp versions locally like this:

version=$(npx nbgv get-version -v NpmPackageVersion)
npm version --workspaces --include-workspace-root --no-git-tag-version "$version"
devhawk commented 1 month ago

lgtm, assuming we don't have to test this in cloud?

AFAIK, we only used grunt files for setting the package version during build.

devhawk commented 1 month ago

AFAIK, we only used grunt files for setting the package version during build.

Verified with @kraftp and @qianl15 that we don't use grunt in cloud and I verified locally that nbgv prepare-release works as expected w/o the grunt files