diffstalker 0.1.0 → 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.
@@ -5,34 +5,26 @@ on:
5
5
  tags:
6
6
  - 'v*'
7
7
 
8
+ permissions:
9
+ id-token: write # Required for OIDC
10
+ contents: write # Required for GitHub release
11
+
8
12
  jobs:
9
- release:
13
+ publish:
10
14
  runs-on: ubuntu-latest
11
- permissions:
12
- contents: write
13
- id-token: write
14
-
15
+ environment: npm
15
16
  steps:
16
- - name: Checkout
17
- uses: actions/checkout@v4
17
+ - uses: actions/checkout@v4
18
18
 
19
- - name: Setup Node.js
20
- uses: actions/setup-node@v4
19
+ - uses: actions/setup-node@v4
21
20
  with:
22
- node-version: '20'
21
+ node-version: '24'
23
22
  registry-url: 'https://registry.npmjs.org'
24
23
 
25
- - name: Install dependencies
26
- run: npm ci
27
-
28
- - name: Run tests
29
- run: npm test
30
-
31
- - name: Build
32
- run: npm run build:prod
33
-
34
- - name: Publish to npm
35
- run: npm publish --provenance --access public
24
+ - run: npm ci
25
+ - run: npm run build:prod
26
+ - run: npm test
27
+ - run: npm publish --access public
36
28
 
37
29
  - name: Create GitHub Release
38
30
  uses: softprops/action-gh-release@v2
package/README.md CHANGED
@@ -2,10 +2,10 @@
2
2
 
3
3
  Keep your changes visible. A terminal-based git UI designed to run on a secondary monitor, automatically tracking whichever repository you're working in.
4
4
 
5
- ![diffstalker diff view](assets/diff.png)
5
+ ![diffstalker diff view](https://raw.githubusercontent.com/yogh-io/diffstalker/main/assets/diff.png)
6
6
  *Stage files and review changes with word-level diff highlighting.*
7
7
 
8
- ![diffstalker history view](assets/history.png)
8
+ ![diffstalker history view](https://raw.githubusercontent.com/yogh-io/diffstalker/main/assets/history.png)
9
9
  *Browse commit history and inspect past changes.*
10
10
 
11
11
  ## Why diffstalker?
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "diffstalker",
3
- "version": "0.1.0",
3
+ "version": "0.1.4",
4
4
  "description": "Terminal application that displays git diff/status for directories",
5
5
  "author": "yogh-io",
6
6
  "license": "MIT",