obsidian-launcher 1.0.0 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +4 -1
package/README.md CHANGED
@@ -17,7 +17,7 @@ const launcher = new ObsidianLauncher();
17
17
  const {proc} = await launcher.launch({
18
18
  appVersion: "1.7.7",
19
19
  vault: "path/to/my/vault",
20
- copy: true, // copy the vault before installing plugins and opening in Obsidian
20
+ copy: true, // open a copy of the vault in Obsidian
21
21
  plugins: [
22
22
  "path/to/my/plugin", // install a local plugin
23
23
  {id: "dataview"}, // install a community plugin
@@ -41,8 +41,8 @@ same Obsidian app version on different versions of Electron.
41
41
 
42
42
  `appVersion` can be set to one of:
43
43
  - a specific version string like "1.7.7"
44
- - "latest": run the current latest non-beta Obsidian version
45
- - "latest-beta": run the current latest beta Obsidian version (or latest is there is no current beta)
44
+ - "latest": run the latest non-beta Obsidian version
45
+ - "latest-beta": run the latest beta Obsidian version (or latest is there is no current beta)
46
46
  - To download Obsidian beta versions you'll need to have an Obsidian account with Catalyst and set the
47
47
  `OBSIDIAN_USERNAME` and `OBSIDIAN_PASSWORD` environment variables. 2FA needs to be disabled.
48
48
  - "earliest": run the `minAppVersion` set in your plugin's `manifest.json`
package/package.json CHANGED
@@ -1,7 +1,10 @@
1
1
  {
2
2
  "name": "obsidian-launcher",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "Download and launch sandboxed Obsidian instances",
5
+ "keywords": [
6
+ "obsidian"
7
+ ],
5
8
  "type": "module",
6
9
  "main": "./dist/index.js",
7
10
  "types": "./dist/index.d.ts",