dorky 2.4.1 → 3.0.1

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.
@@ -0,0 +1,46 @@
1
+ name: "🧩 Publish VSCode Extension To Marketplace"
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - main
7
+ paths:
8
+ - "extension/dorky-extension/**"
9
+
10
+ jobs:
11
+ publish:
12
+ name: 🧩 publish extension
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - name: Checkout
16
+ uses: actions/checkout@v4
17
+
18
+ - name: Setup Node
19
+ uses: actions/setup-node@v4
20
+ with:
21
+ node-version: "24.x"
22
+
23
+ - name: Install dependencies
24
+ run: npm install
25
+ working-directory: extension/dorky-extension
26
+
27
+ - name: Lint
28
+ run: npm run lint
29
+ working-directory: extension/dorky-extension
30
+
31
+ - name: Get extension version
32
+ id: pkg
33
+ run: echo "version=$(node -p "require('./package.json').version")" >> $GITHUB_OUTPUT
34
+ working-directory: extension/dorky-extension
35
+
36
+ - name: Package extension
37
+ run: npx @vscode/vsce package
38
+ working-directory: extension/dorky-extension
39
+
40
+ - name: Publish to VS Code Marketplace
41
+ uses: HaaLeo/publish-vscode-extension@v1
42
+ with:
43
+ pat: ${{ secrets.VSCE_PAT }}
44
+ registryUrl: https://marketplace.visualstudio.com
45
+ extensionFile: extension/dorky-extension/dorky-extension-${{ steps.pkg.outputs.version }}.vsix
46
+
package/README.md CHANGED
@@ -10,6 +10,8 @@
10
10
 
11
11
  [`DevOps Records Keeper`](https://dorky.trishantpahwa.me/)
12
12
 
13
+ ![Logo](/logo.svg)
14
+
13
15
  [![dorky npm](https://img.shields.io/npm/v/dorky.svg?logo=npm)](https://npmjs.com/package/dorky)
14
16
  [![Code coverage](https://img.shields.io/badge/coverage-87.93%25-blue)](https://npmjs.com/package/dorky)
15
17
  [![Downloads](https://img.shields.io/npm/dt/dorky.svg?logo=npm)](https://npmjs.com/package/dorky)
@@ -403,7 +405,7 @@ ISC License - see [LICENSE](LICENSE) file for details.
403
405
  - [x] rm + push should delete file from remote storage (minor release)
404
406
  - [x] Uninitialize dorky setup (Bug fix release)
405
407
  - [ ] dorky --list remote --update should sync metadata according to remote (Minor release)
406
- - [ ] Extension for VS Code to list and highlight them like git (Major release)
408
+ - [x] Extension for VS Code to list and highlight them like git (Major release)
407
409
  - [ ] MCP server (Minor release)
408
410
  - [ ] Encryption of files (Minor release)
409
411
  - [ ] Add stages for variables (Major release)
package/logo.svg ADDED
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
3
+ <svg fill="#000000" width="800px" height="800px" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg">
4
+ <title>lion</title>
5
+ <path d="M24.162 12.116l0-0c-0.414-1.43-1.488-2.364-3.546-3.307 0.733-3.675-1.030-5.775-4.376-7.727l0.268 2.698c-2.369-1.583-5.763-3.216-8.804-3.074-1.014 0.047-2.060 0.206-3.159 0.527l3.723 3.911c-2.034 0.012-5.435 0.296-7.315 1.693l2.012 3.271-2.294 1.191v4.224l2.479 1.4-2.479 2.135v2.882c1.78-0.145 4.183 0.115 6.33-0.603-1.518 1.78-2.002 4.331-3.811 6.558 2.419-0.092 4.831-0.406 7.408-1.805l-0.602 4.776c4.108-1.53 8.165-5.386 7.817-8.677l0.058-0.275c0.239 0.142 0.491 0.269 0.755 0.379l7.263 2.574c0.397-0.859 0.828-1.723 1.284-2.586-0.286 0.111-0.597 0.173-0.922 0.173-1.405 0-2.544-1.139-2.544-2.544s1.139-2.544 2.544-2.544c1.252 0 2.291 0.904 2.504 2.094 0.758-1.281 1.561-2.552 2.391-3.8l-6.986-3.544z"></path>
6
+ </svg>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dorky",
3
- "version": "2.4.1",
3
+ "version": "3.0.1",
4
4
  "description": "DevOps Records Keeper.",
5
5
  "bin": {
6
6
  "dorky": "bin/index.js"