Skip to content

Commit

Permalink
Merge pull request #8 from jtprogru/fix-excluded-dirs
Browse files Browse the repository at this point in the history
Fix excluded dirs
  • Loading branch information
jtprogru authored Jan 8, 2025
2 parents c9653d3 + 931e195 commit c719b3b
Show file tree
Hide file tree
Showing 7 changed files with 4,048 additions and 1,155 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Vault Full Statistics Plugin

![GitHub Downloads (all assets, all releases)](https://img.shields.io/github/downloads/jtprogru/obsidian-vault-full-statistics-plugin/total)
![GitHub License](https://img.shields.io/github/license/jtprogru/obsidian-vault-full-statistics-plugin)

**NOTE**: This plugin is modified fork of the [Obsidian Vault Statistics Plugin](https://github.com/bkyle/obsidian-vault-statistics-plugin) plugin.

Status bar item with vault full statistics including:
Expand Down
5 changes: 5 additions & 0 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ tasks:
cmds:
- npm run build

test:
desc: 'Run all tests in project'
cmds:
- npm test

dev:
desc: 'Start the development server'
cmds:
Expand Down
14 changes: 14 additions & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'],
transform: {
'^.+\\.tsx?$': 'ts-jest',
},
testMatch: ['**/?(*.)+(spec|test).ts?(x)'],
globals: {
'ts-jest': {
tsconfig: 'tsconfig.json',
},
},
};
Loading

0 comments on commit c719b3b

Please sign in to comment.