-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
3,334 additions
and
1,119 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,4 +14,4 @@ | |
} | ||
] | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,17 @@ | ||
## [0.0.3](https://github.com/chingu-x/chingu-dashboard-modules/compare/v0.0.2...v0.0.3) (2025-01-15) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* test ([f976466](https://github.com/chingu-x/chingu-dashboard-modules/commit/f976466cd88d8650893e78f6bb9152c944bd59f3)) | ||
- test ([f976466](https://github.com/chingu-x/chingu-dashboard-modules/commit/f976466cd88d8650893e78f6bb9152c944bd59f3)) | ||
|
||
## [0.0.2](https://github.com/chingu-x/chingu-dashboard-modules/compare/v0.0.1...v0.0.2) (2025-01-15) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* set package to public ([e4b7a1e](https://github.com/chingu-x/chingu-dashboard-modules/commit/e4b7a1eb49baf75a8e3fec8856fcfdf3e5ca79aa)) | ||
- set package to public ([e4b7a1e](https://github.com/chingu-x/chingu-dashboard-modules/commit/e4b7a1eb49baf75a8e3fec8856fcfdf3e5ca79aa)) | ||
|
||
## [0.0.1](https://github.com/chingu-x/chingu-dashboard-modules/compare/v0.0.0...v0.0.1) (2025-01-15) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* update secret ([91cacd6](https://github.com/chingu-x/chingu-dashboard-modules/commit/91cacd6d20df2061d448f7b3f5987506154cf465)) | ||
- update secret ([91cacd6](https://github.com/chingu-x/chingu-dashboard-modules/commit/91cacd6d20df2061d448f7b3f5987506154cf465)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
# chingu-dashboard-modules | ||
|
||
Modules shared across the Chingu Dashboard and related apps |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
module.exports = { | ||
export default { | ||
extends: ["@commitlint/config-conventional"], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import globals from "globals"; | ||
import pluginJs from "@eslint/js"; | ||
import tseslint from "typescript-eslint"; | ||
import eslintPluginPrettier from "eslint-plugin-prettier"; | ||
|
||
/** @type {import('eslint').Linter.Config[]} */ | ||
export default [ | ||
{ files: ["**/*.{js,mjs,cjs,ts}"] }, | ||
{ languageOptions: { globals: globals.browser } }, | ||
pluginJs.configs.recommended, | ||
...tseslint.configs.recommended, | ||
{ | ||
plugins: { | ||
prettier: eslintPluginPrettier, | ||
}, | ||
rules: { | ||
"prettier/prettier": "error", | ||
}, | ||
}, | ||
{ | ||
ignores: ["dist/", "node_modules/**/*"], | ||
}, | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.