You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -10,4 +10,4 @@ TL;DR:
10
10
11
11
Because obsidian keeps an index of versions of the plugin and their respective minimum version requirements for obsidian itself, the `minAppVersion` field in `manifest.json` and the version of the dependency `obsidian` in `package.json` should be kept equal. The version should also reflect the lowest version of api under which the plugin will work. The dependency version in `package.json` is pinned to a single version.
12
12
13
-
Oh, and also: This project uses yarn, although it doesn't matter if you use another package manager so long as you don't commit the log and lock files to VCS. Just be sure to let us know of your choice of package manager if you encounter a problem.
13
+
This project recently switched to using pnpm as a package manager, although it doesn't matter if you use another package manager so long as you don't commit the log and lock files to VCS. Just be sure to let us know of your choice of package manager if you encounter a problem.
Copy file name to clipboardExpand all lines: src/common/types.ts
+5-1
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,7 @@
1
1
importtype{Chart}from"function-plot";
2
2
importtype{EventEmitter}from"events";
3
3
exporttyperendererType="interactive"|"image";
4
+
importtype{Selectionasd3Selection}from"d3";
4
5
5
6
/**
6
7
* Input types: values that should be set to a default by the plugin are required, values that should be set to a default by functionplot are marked optional. Values that are not set by either are marked optional but default values Omit<> them.
0 commit comments