ui-syncup 0.4.0-beta.3 → 0.4.0-beta.4

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/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ # [0.4.0-beta.4](https://github.com/BYKHD/ui-syncup/compare/v0.4.0-beta.3...v0.4.0-beta.4) (2026-03-22)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * rename CLI package to ui-syncup-cli, add shebang banner, guard CI against skip-ci commits ([3e9ef29](https://github.com/BYKHD/ui-syncup/commit/3e9ef2970eae274752a5ed74eb9b88d424d60233))
7
+
1
8
  # [0.4.0-beta.3](https://github.com/BYKHD/ui-syncup/compare/v0.4.0-beta.2...v0.4.0-beta.3) (2026-03-22)
2
9
 
3
10
 
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "ui-syncup",
3
- "version": "0.4.0-beta.3",
3
+ "version": "0.4.0-beta.4",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "ui-syncup",
9
- "version": "0.4.0-beta.3",
9
+ "version": "0.4.0-beta.4",
10
10
  "license": "MIT",
11
11
  "dependencies": {
12
12
  "@inquirer/prompts": "^8.0.0",
package/cli/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
- "name": "ui-syncup",
3
- "version": "0.4.0-beta.3",
2
+ "name": "ui-syncup-cli",
3
+ "version": "0.4.0-beta.4",
4
4
  "description": "Self-host UI SyncUp with a single command",
5
5
  "bin": {
6
6
  "ui-syncup": "./dist/index.js"
@@ -9,4 +9,7 @@ export default defineConfig({
9
9
  sourcemap: false,
10
10
  minify: false,
11
11
  shims: true,
12
+ banner: {
13
+ js: '#!/usr/bin/env node',
14
+ },
12
15
  })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ui-syncup",
3
- "version": "0.4.0-beta.3",
3
+ "version": "0.4.0-beta.4",
4
4
  "scripts": {
5
5
  "dev": "next dev",
6
6
  "dev:stack": "docker compose -f docker/compose.local.yml up -d && supabase start",