dorky 4.1.4 → 4.1.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dorky",
3
- "version": "4.1.4",
3
+ "version": "4.1.6",
4
4
  "description": "DevOps Records Keeper.",
5
5
  "bin": {
6
6
  "dorky": "bin/index.js",
@@ -1,22 +0,0 @@
1
- [
2
- {
3
- "id": "34aaf3c3",
4
- "timestamp": "2026-04-22T18:30:13.819Z",
5
- "files": {
6
- ".env": {
7
- "mime-type": "application/octet-stream",
8
- "hash": "ef690809a391f839b909e303e8d1f888"
9
- }
10
- }
11
- },
12
- {
13
- "id": "e5ecba71",
14
- "timestamp": "2026-04-22T18:30:45.770Z",
15
- "files": {
16
- ".env": {
17
- "mime-type": "application/octet-stream",
18
- "hash": "0f3124c0e7688e35ae2187da45f23f22"
19
- }
20
- }
21
- }
22
- ]
@@ -1,14 +0,0 @@
1
- {
2
- "stage-1-files": {
3
- ".env": {
4
- "mime-type": "application/octet-stream",
5
- "hash": "ef690809a391f839b909e303e8d1f888"
6
- }
7
- },
8
- "uploaded-files": {
9
- ".env": {
10
- "mime-type": "application/octet-stream",
11
- "hash": "ef690809a391f839b909e303e8d1f888"
12
- }
13
- }
14
- }
package/.dorkyignore DELETED
File without changes
@@ -1,46 +0,0 @@
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
-
@@ -1,24 +0,0 @@
1
- name: "🚀 Publish on npm"
2
-
3
- on:
4
- push:
5
- branches:
6
- - main
7
-
8
- jobs:
9
- release:
10
- name: 🚀 release
11
- runs-on: ubuntu-latest
12
- steps:
13
- - name: Checkout
14
- uses: actions/checkout@v4
15
- - name: Setup node
16
- uses: actions/setup-node@v3
17
- with:
18
- node-version: "24.x"
19
- registry-url: "https://registry.npmjs.org"
20
- - run: npm install
21
- - name: 🚀 publish
22
- run: npm publish --access public
23
- env:
24
- NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}}