create-absolutejs 0.4.0 → 0.4.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.
@@ -46,7 +46,7 @@ export const parseCommandLineOptions = () => {
46
46
  }
47
47
  });
48
48
  const errors = [];
49
- const projectName = (positionals[0] ?? values.skip) ? 'absolutejs-project' : undefined;
49
+ const projectName = positionals[0] ?? (values.skip ? undefined : 'absolutejs-project');
50
50
  let authProvider;
51
51
  if (values.auth !== undefined && !isAuthProvider(values.auth)) {
52
52
  errors.push(`Invalid auth provider: "${values.auth}". Expected: [ ${availableAuthProviders.join(', ')} ]`);
package/package.json CHANGED
@@ -47,5 +47,5 @@
47
47
  "typecheck": "bun run tsc --noEmit"
48
48
  },
49
49
  "type": "module",
50
- "version": "0.4.0"
50
+ "version": "0.4.1"
51
51
  }