Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
benallfree committed Apr 27, 2024
1 parent ee8ed6c commit 20a6548
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions plop/commands/testCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,15 +72,18 @@ export function testCommand(plop: NodePlopAPI) {
exec(
`npm run plop build gobot,template:app:helper,app:${slug} -- --no-progress`,
),
exec(`npm run plop pack apps:helpers:latest -- --no-progress`, {
exec(`npm run plop pack gobot,apps:helpers:latest -- --no-progress`, {
env: { [EnvVarNames.PlopFilter]: slug },
}),
exec(`npm run plop publish apps:helpers:latest -- --no-progress`, {
env: {
[EnvVarNames.PlopFilter]: slug,
[EnvVarNames.ReallyPublish]: `1`,
exec(
`npm run plop publish gobot,apps:helpers:latest -- --no-progress`,
{
env: {
[EnvVarNames.PlopFilter]: slug,
[EnvVarNames.ReallyPublish]: `1`,
},
},
}),
),
rimraf(join(cachePath, `releases.json`)),
async (answers, { onProgress }) => {
onProgress(`Fetching releases for snapshot comparison`)
Expand Down

0 comments on commit 20a6548

Please sign in to comment.