- Created a new documentation file for the QueryBuilder class, detailing its methods and usage examples. - Added a comprehensive video tutorials index, covering various aspects of the Debros Network framework. - Updated the sidebar configuration to include the new video tutorials section and reorganized the API documentation categories.
17 lines
269 B
Plaintext
17 lines
269 B
Plaintext
{
|
|
"src/**/*.{js,ts}": [
|
|
"prettier --write",
|
|
"eslint --fix",
|
|
"pnpm run test:unit",
|
|
"npm run build"
|
|
],
|
|
"tests/**/*.{js,ts}": [
|
|
"prettier --write",
|
|
"eslint --fix",
|
|
"pnpm run test:unit"
|
|
],
|
|
"*.{json,md}": [
|
|
"prettier --write"
|
|
]
|
|
}
|