Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ncalteen committed Aug 1, 2024
1 parent f3a580f commit d1d42cc
Show file tree
Hide file tree
Showing 9 changed files with 254 additions and 205 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/continuous-delivery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ jobs:

- name: Tag
id: tag
uses: issue-ops/semver@v1
uses: issue-ops/semver@v2
with:
manifest-path: package.json
workspace: ${{ github.workspace }}
ref: main

- name: Create Release
id: release
uses: issue-ops/releaser@v1
uses: issue-ops/releaser@v2
with:
tag: v${{ steps.tag.outputs.version }}
5 changes: 1 addition & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
# vscode
.vscode
.env

# Dependency directory
node_modules/

Expand All @@ -22,3 +18,4 @@ Thumbs.db
# Extra
tmp/
linter/
.env
1 change: 1 addition & 0 deletions .mega-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ DEFAULT_BRANCH: main
DISABLE:
- COPYPASTE
- JAVASCRIPT
- PYTHON
- SPELL

# List of disabled linters keys
Expand Down
17 changes: 17 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"editor.inlineSuggest.enabled": true,
"editor.rulers": [80],
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.tabSize": 2,
"editor.codeActionsOnSave": {
"source.organizeImports": "always"
},
"html.format.templating": true,
"markdown.extension.list.indentationSize": "adaptive",
"markdown.extension.italic.indicator": "_",
"markdown.extension.orderedList.marker": "one",
"java.checkstyle.configuration": "usps-common-configuration/linting_rules/java/sun-checks.xml",
"java.configuration.updateBuildConfiguration": "automatic",
"java.compile.nullAnalysis.mode": "automatic"
}
14 changes: 14 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Workspace: Lint",
"type": "shell",
"command": "npx mega-linter-runner --flavor cupcake",
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": []
}
]
}
58 changes: 39 additions & 19 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

Loading

0 comments on commit d1d42cc

Please sign in to comment.