Skip to content

Commit

Permalink
feat: pad version (#36)
Browse files Browse the repository at this point in the history
* feat: automatically pad version of manifest when packing

* build: update publish tag to be automatic

* docs: changelogs

* docs: version format

* build: remove subjective IDE settings

* style: update to centralized prettier config

* lint: fix prettier config

---------

Co-authored-by: Richard Herman <[email protected]>
  • Loading branch information
GeekyEggo and GeekyEggo authored May 3, 2024
1 parent eb3fa0e commit fabc29f
Show file tree
Hide file tree
Showing 43 changed files with 514 additions and 285 deletions.
7 changes: 6 additions & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ charset = utf-8
end_of_line = lf
insert_final_newline = true
indent_style = tab
max_line_length = 120

[*.{json,md}]
indent_size = 4
indent_style = space

[*.yml]
indent_size = 2
indent_style = space
indent_style = space
6 changes: 5 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,11 @@ jobs:
- name: "🖌️ Lint"
run: npm run lint

- name: "📖 Retrieve package information"
uses: geekyeggo/npm-pkg@v1
id: pkg

- name: "📤 Publish"
run: npm publish --provenance --access public
run: npm publish --provenance --access public --tag ${{ steps.pkg.outputs.version-tag }}
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
1 change: 0 additions & 1 deletion .npmrc
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
sign-git-tag=true
tag=beta
17 changes: 0 additions & 17 deletions .prettierrc

This file was deleted.

14 changes: 0 additions & 14 deletions .vscode/settings.json

This file was deleted.

13 changes: 0 additions & 13 deletions .vscode/tasks.json

This file was deleted.

5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@
- Add `-v` option to display current version of CLI.
- Add "Open in VSCode" prompt, as part of creation wizard, for macOS.

### ♻️ Update

- Update template to `{major}.{minor}.{patch}.{build}` version format.
- Update `streamdeck pack` to automatically adjust version format.

### 🐞 Bug Fixes

- Fix support for Visual Studio integrated terminal.
Expand Down
Loading

0 comments on commit fabc29f

Please sign in to comment.