ui-syncup 0.4.0-beta.2 → 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.
@@ -12,6 +12,7 @@ jobs:
12
12
  quality:
13
13
  name: Quality Gate
14
14
  runs-on: ubuntu-latest
15
+ if: "!contains(github.event.head_commit.message, '[skip ci]')"
15
16
  permissions:
16
17
  contents: read
17
18
  steps:
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
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
+
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)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * skip CI pipeline on semantic-release back-commits ([418cdbb](https://github.com/BYKHD/ui-syncup/commit/418cdbb1e1b293bfb2adeb223c36d40b38f30868))
14
+
1
15
  # [0.4.0-beta.2](https://github.com/BYKHD/ui-syncup/compare/v0.4.0-beta.1...v0.4.0-beta.2) (2026-03-22)
2
16
 
3
17
 
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "ui-syncup",
3
- "version": "0.4.0-beta.2",
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.2",
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.2",
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.2",
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",