Skip to content

Commit

Permalink
feat: enable validation via import (#37)
Browse files Browse the repository at this point in the history
* feat: enable validation functionality via importing

* refactor: rename export

* build: add static schema build option

* refactor: import JSON schemas as objects

* chore: remove unused script, and add 0.3.1 changelog

* deps: fix security alerts

---------

Co-authored-by: Richard Herman <[email protected]>
Co-authored-by: Andrew Story <[email protected]>
  • Loading branch information
3 people authored Jun 26, 2024
1 parent 2449ac5 commit a7036ac
Show file tree
Hide file tree
Showing 14 changed files with 234 additions and 131 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ node_modules/

# Build and temporary files
bin/
dist/
/.tmp/

# CLI
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@

# Change Log

## 0.3.1

### ✨ New

- Enable validation of Stream Deck plugins programmatically.

## 0.3.0

### ✨ New
Expand Down
75 changes: 41 additions & 34 deletions package-lock.json

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

12 changes: 8 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,12 @@
"streamdeck": "bin/streamdeck.mjs",
"sd": "bin/streamdeck.mjs"
},
"main": "./dist/index.js",
"files": [
"bin/streamdeck.mjs",
"template"
"./bin/streamdeck.mjs",
"./dist/*.js",
"./dist/*.d.ts",
"./template"
],
"type": "module",
"engines": {
Expand Down Expand Up @@ -62,7 +65,7 @@
"ajv": "^8.12.0",
"chalk": "^5.3.0",
"commander": "^11.0.0",
"ejs": "^3.1.9",
"ejs": "^3.1.10",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jsdoc": "^46.8.2",
Expand All @@ -75,12 +78,13 @@
"log-symbols": "^5.1.0",
"rage-edit": "^1.2.0",
"rollup": "^4.0.2",
"rollup-plugin-dts": "^6.1.0",
"semver": "^7.6.0",
"tar": "^7.0.1",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
},
"dependencies": {
"@elgato/schemas": "^0.3.0"
"@elgato/schemas": "^0.3.5"
}
}
Loading

0 comments on commit a7036ac

Please sign in to comment.