smash-os-install 0.4.2 → 0.4.3

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.
Files changed (2) hide show
  1. package/install.mjs +1 -1
  2. package/package.json +1 -1
package/install.mjs CHANGED
@@ -32,7 +32,7 @@ const cwd = process.cwd();
32
32
  const isUpgrade = process.argv.includes('--upgrade');
33
33
  const isVerify = process.argv.includes('--verify');
34
34
  const isUninstall = process.argv.includes('--uninstall');
35
- const SMASH_VERSION = '0.4.0';
35
+ const SMASH_VERSION = '0.4.3';
36
36
  const vaultConventions = join(process.env.USERPROFILE || process.env.HOME || homedir(), 'Desktop', 'SmashBurgerBar', 'SmashVault', 'Architecture', 'conventions.md');
37
37
  const globalConventions = join(homedir(), '.claude', 'conventions.md');
38
38
  const conventionsFile = existsSync(vaultConventions) ? vaultConventions : globalConventions;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "smash-os-install",
3
- "version": "0.4.2",
3
+ "version": "0.4.3",
4
4
  "description": "Install the SmashOS local AI workflow harness into any repo — no web app, no API keys required",
5
5
  "type": "module",
6
6
  "bin": {