Skip to content

Commit 5940fa8

Browse files
authored
Fix dependency vulnerabilities
1 parent 329848e commit 5940fa8

7 files changed

Lines changed: 412 additions & 2335 deletions

File tree

.eslintrc.json

Lines changed: 0 additions & 18 deletions
This file was deleted.

.github/workflows/build.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: Build
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
9+
permissions:
10+
contents: read
11+
12+
jobs:
13+
build:
14+
name: Node ${{ matrix.node-version }}
15+
runs-on: ubuntu-latest
16+
strategy:
17+
fail-fast: false
18+
matrix:
19+
node-version:
20+
- 20
21+
- 22
22+
23+
steps:
24+
- name: Checkout
25+
uses: actions/checkout@v4
26+
27+
- name: Setup Node
28+
uses: actions/setup-node@v4
29+
with:
30+
node-version: ${{ matrix.node-version }}
31+
cache: npm
32+
33+
- name: Install dependencies
34+
run: npm ci --ignore-scripts
35+
36+
- name: Build
37+
run: npm run build

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ignore-scripts=true

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ The plugin uses Obsidian's native events (not polling) to track position changes
3838

3939
## Author
4040

41-
**Mei Park**[@meimakes](https://github.com/meimakes)
41+
**Diana**[@madebydia](https://github.com/madebydia)
4242

4343
## License
4444

manifest.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"version": "1.0.16",
55
"minAppVersion": "1.4.0",
66
"description": "Remembers your cursor and scroll position for each note. Navigate away and come back — you'll be right where you left off.",
7-
"author": "Mei Park",
8-
"authorUrl": "https://github.com/meimakes",
7+
"author": "Diana",
8+
"authorUrl": "https://github.com/madebydia",
99
"isDesktopOnly": false
10-
}
10+
}

0 commit comments

Comments
 (0)