super-time-tracker-ui 0.1.3 → 0.1.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
@@ -2,6 +2,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [0.1.4](https://github.com/f3rnox/super-time-tracker-ui/compare/v0.1.3...v0.1.4) (2026-05-19)
6
+
7
+
8
+ ### Features
9
+
10
+ * add --version output to bin script ([12a91ae](https://github.com/f3rnox/super-time-tracker-ui/commit/12a91ae3ae468bf9f0e46e0304bdf8e7ee01ba8b))
11
+
5
12
  ### [0.1.3](https://github.com/f3rnox/super-time-tracker-ui/compare/v0.1.2...v0.1.3) (2026-05-18)
6
13
 
7
14
 
package/bin/stt-ui.js CHANGED
@@ -6,6 +6,13 @@ const { existsSync, cpSync, unlinkSync } = require('fs')
6
6
  const { join } = require('path')
7
7
 
8
8
  const root = join(__dirname, '..')
9
+ const { version } = require('../package.json')
10
+
11
+ if (process.argv.includes('--version') || process.argv.includes('-V')) {
12
+ process.stdout.write(`${version}\n`)
13
+ process.exit(0)
14
+ }
15
+
9
16
  const standalone_dir = join(root, '.next', 'standalone')
10
17
  const server_js = join(standalone_dir, 'server.js')
11
18
  const build_lock = join(root, '.next', 'lock')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "super-time-tracker-ui",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Web UI for the super-time-tracker CLI time sheets",
5
5
  "keywords": [
6
6
  "nextjs",