Skip to content

Commit

Permalink
Commit Message Title
Browse files Browse the repository at this point in the history
`Summary`
A brief one-line summary of the changes made in this commit.

`Description`
A detailed description of the changes introduced by this commit. Include information about why the changes were made, how they address specific issues or requirements, and any relevant context or considerations.

`Type`
Specify the type of change represented by this commit. Choose only one of the following options:

- Feature: A new feature or enhancement added to the project.
- Fix: A bug fix or resolution to an issue.
- Refactor: Code refactoring or restructuring without changing behavior.
- Documentation: Updates or additions to documentation files.
- Test: Additions or modifications to tests.
- Chore: Routine maintenance tasks, such as dependency updates or code cleanup.

`Impact`
Describe the impact of this change on the project. Consider factors such as functionality, performance, compatibility, and user experience.

`Related Issues`
List any related issues or tickets addressed by this commit. Use GitHub issue numbers or links to reference specific issues.

`Dependencies`
Specify any dependencies or requirements associated with this commit. Include information about libraries, frameworks, or other components affected by the changes.

`Testing`
Describe the testing approach or strategy used to validate this change. Include details about test cases, scenarios, or environments used for testing.

`Notes`
Add any additional notes, comments, or considerations relevant to this commit. This may include warnings, caveats, or follow-up tasks for future work.

`Commit Checklist`:

- [ ] The commit message follows the established format and guidelines.
- [ ] The changes introduced by the commit have been thoroughly reviewed and tested.
- [ ] Any related issues or tickets have been appropriately linked or referenced.
- [ ] Documentation has been updated to reflect the changes introduced by the commit.
- [ ] The commit does not introduce any new linting errors, warnings, or regressions.

`Branch`
On branch

`Changes`
Changes to be committed:
  • Loading branch information
astitvsingh committed Nov 9, 2024
1 parent 9055e42 commit d84cbe7
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 deletions.
20 changes: 17 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,27 @@
{
"name": "casinojs",
"version": "0.1.0-alpha",
"description": "A Casino Js Library.",
"description": "A comprehensive JavaScript library for building and managing casino game functionalities, including poker seat management, event handling, and custom middleware.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"type": "module",
"directories": {
"doc": "docs"
},
"exports": {
".": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts"
}
},
"scripts": {
"build": "tsc -p tsconfig.cjs.json && tsc -p tsconfig.esm.json",
"test": "jest --coverage",
"docify": "typedoc --entryPointStrategy expand src --out docs/site"
"docify": "typedoc --entryPointStrategy expand src --out docs/site",
"prepublishOnly": "npm run build && npm test && npm run docify",
"prepublish": "npm run build && npm test && npm run docify"
},
"repository": {
"type": "git",
Expand All @@ -22,7 +32,11 @@
"casino",
"pokerjs",
"poker",
"lib"
"casino library",
"game management",
"event handling",
"middleware",
"typescript"
],
"author": "Astitv Singh <https://github.com/astitvsingh>",
"license": "SEE LICENSE IN LICENSE",
Expand Down
1 change: 1 addition & 0 deletions tsconfig.cjs.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"extends": "./tsconfig.json",
"compilerOptions": {
"module": "CommonJS",
"declaration": true,
"outDir": "./dist/cjs"
}
}
1 change: 1 addition & 0 deletions tsconfig.esm.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"extends": "./tsconfig.json",
"compilerOptions": {
"module": "ESNext",
"declaration": true,
"outDir": "./dist/esm"
}
}

0 comments on commit d84cbe7

Please sign in to comment.