-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use custom build script to temporarily bump version and build
- Loading branch information
Showing
2 changed files
with
27 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#!/usr/bin/env node | ||
|
||
import { $ } from 'execa'; | ||
|
||
async function main() { | ||
const { stdout: status } = await $`git status --porcelain`; | ||
if (status) { | ||
console.error(`❗️ Working directory is not clean:\n${status}`); | ||
return; | ||
} | ||
|
||
const { stdout: nextVersion } = await $`auto shipit --dry-run --quiet`; | ||
|
||
console.info(`📌 Temporarily bumping version to '${nextVersion}' for build step`); | ||
await $`npm --no-git-tag-version version ${nextVersion}`; | ||
|
||
console.info('📦 Building with new version'); | ||
await $`yarn build`; | ||
|
||
console.info('🧹 Resetting changes to let `auto` do its thing'); | ||
await $`git reset --hard`; | ||
|
||
console.info('✅ Build with new version completed'); | ||
} | ||
|
||
main(); |