@biffo/cli 0.41.0 → 0.41.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/core.version CHANGED
@@ -1 +1 @@
1
- 0.41.0
1
+ 0.41.1
package/dist/index.js CHANGED
@@ -3972,7 +3972,10 @@ async function configureSiblingGithub(github, config, coreConfig, session, coreI
3972
3972
  await github.createEnvironments(config);
3973
3973
  await github.enableVulnerabilityAlerts(org, repo);
3974
3974
  await github.setRepoVariable(org, repo, "PROJECT_NAME", config.project.name);
3975
- await github.setRepoVariable(org, repo, "PATH_PREFIX", resolvePathPrefix(config));
3975
+ const pathPrefix = resolvePathPrefix(config);
3976
+ if (pathPrefix !== "") {
3977
+ await github.setRepoVariable(org, repo, "PATH_PREFIX", pathPrefix);
3978
+ }
3976
3979
  await github.setRepoVariable(org, repo, "AWS_REGION", awsConfig(config).region);
3977
3980
  await github.setRepoVariable(org, repo, "SIBLING_DEPLOY_ENABLED", "true");
3978
3981
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@biffo/cli",
3
- "version": "0.41.0",
3
+ "version": "0.41.1",
4
4
  "description": "Biffo project scaffolding CLI",
5
5
  "license": "MIT",
6
6
  "type": "module",