Skip to content

Updating all the things #188

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Jul 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .cursor/rules/javascript.mdc
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
description: JavaScript module
globs:
alwaysApply: true
---

- Use JSDoc standard for creating docblocks of functions and classes.
- Always use camelCase for function names.
- Always use upper-case snake_case for constants.
- Create integration tests in 'tests/integration' that use node-assert, which run with mocha.
- Create unit tests in 'tests/unit' that use node-assert, which run with mocha.
- Use node.js community "Best Practices".
- Adhere to DRY, KISS, YAGNI, & SOLID principles
- Adhere to OWASP security guidance
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
node-version: [18.x, 20.x]
node-version: [20.x, 22.x]

steps:
- name: Checkout Repository
Expand All @@ -21,7 +21,7 @@ jobs:
fetch-depth: 1

- name: Setup Node ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
always-auth: false
node-version: ${{ matrix.node-version }}
Expand All @@ -30,10 +30,10 @@ jobs:
run: npm install

- name: Build
run: npm run rollup
run: npm run build

- name: Run Tests
run: npm run test
run: npm test

automerge:
needs: build
Expand Down
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
.husky
.nyc_output
node_modules
.idea
test/webpack
coverage
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2024, Jason Mulligan
Copyright (c) 2025, Jason Mulligan
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
Loading
Loading