obsidian-launcher 1.3.3 → 2.0.0

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.
package/README.md CHANGED
@@ -1,21 +1,22 @@
1
- [![NPM](https://img.shields.io/npm/v/obsidian-launcher)](https://www.npmjs.com/package/obsidian-launcher)
2
- # Obsidian Launcher
1
+ # Obsidian Launcher [![NPM](https://img.shields.io/npm/v/obsidian-launcher)](https://www.npmjs.com/package/obsidian-launcher)
3
2
 
4
- `obsidian-launcher` is a package for downloading and launching different versions of [Obsidian](https://obsidian.md)
5
- for testing and development of Obsidian plugins. It can download Obsidian, install plugins and themes into Obsidian
6
- vaults, and launch sandboxed Obsidian instances with isolated user configuration directories. You can use it either as
7
- a JavaScript package or as a command line interface.
3
+ `obsidian-launcher` is a package for downloading and launching different versions of [Obsidian](https://obsidian.md) for testing Obsidian plugins. It can download and launch different versions of Obsidian, install plugins and themes into Obsidian vaults, and launch sandboxed Obsidian instances with isolated user configuration directories. You can use it as either a JavaScript package or as a command line interface.
8
4
 
9
- The primary use case for this package is to allow [wdio-obsidian-service](../wdio-obsidian-service/README.md) to
10
- download Obsidian when testing Obsidian plugins with WebdriverIO. However, it can also be used as a stand-alone package,
11
- for instance if you want to test plugins with a different testing framework, or want to use the provided CLI.
5
+ The primary use case for this package is to allow [wdio-obsidian-service](../wdio-obsidian-service/README.md) to automatically download Obsidian when testing plugins with WebdriverIO. However, it can also be used as a stand-alone package if you want to use the CLI to compare Obsidian versions during plugin development.
12
6
 
13
7
  ## Example Usage
14
- The default export of the package is the `ObsidianLauncher` class, which can be used like so:
8
+ You can run the CLI via `npx`, e.g.:
9
+ ```bash
10
+ npx obsidian-launcher watch --version 1.8.10 --copy -p . test/vault
11
+ ```
12
+ This will download and launch Obsidian 1.8.10 with a sandboxed configuration directory so you don't need to worry about it interfering with your system Obsidian installation. You can even launch multiple different versions of Obsidian side-by-side. See [below](#cli) for CLI docs.
13
+
14
+ To use the JavaScript API, use the `ObsidianLauncher` class, e.g.:
15
15
  ```js
16
+ import ObsidianLauncher from "obsidian-launcher"
16
17
  const launcher = new ObsidianLauncher();
17
18
  const {proc} = await launcher.launch({
18
- appVersion: "1.7.7",
19
+ appVersion: "1.8.10",
19
20
  vault: "path/to/my/vault",
20
21
  copy: true, // open a copy of the vault in Obsidian
21
22
  plugins: [
@@ -24,27 +25,15 @@ const {proc} = await launcher.launch({
24
25
  ],
25
26
  })
26
27
  ```
27
- This will download and launch Obsidian 1.7.7 with a sandboxed configuration directory so you don't need to worry about
28
- it interfering with your system Obsidian installation.
29
28
 
30
29
  ## Obsidian App vs Installer Versions
31
- Obsidian is distributed in two parts, the "installer" which is the executable containing Electron, and the "app" which
32
- is a bundle of JavaScript containing the Obsidian code. Obsidian's self-update system only updates the app JS bundle,
33
- and not the base installer/Electron version. This makes Obsidian's auto-update fast as it only needs to download a few
34
- MiB of JS instead of all of Electron. But, it means different users with the same Obsidian app version may be running on
35
- different versions of Electron, which can cause subtle differences in plugin behavior.
36
-
37
- You can check your current Obsidian app and installer versions in the General settings tab.
38
-
39
- Most ObsidianLauncher methods take both an `appVersion` and an `installerVersion` parameter, allowing you to test the
40
- same Obsidian app version on different versions of Electron.
30
+ Obsidian Desktop is distributed in two parts, the "installer" which is the executable containing Electron, and the "app" which is a bundle of JavaScript containing the Obsidian code. Obsidian's self-update system only updates the app JS bundle, and not the base installer/Electron version. This makes Obsidian's auto-update fast as it only needs to download a few MiB of JS instead of all of Electron. But, it means different users with the same Obsidian app version may be running on different versions of Electron, which can cause subtle differences in plugin behavior. Most ObsidianLauncher methods take both an `appVersion` and an `installerVersion` parameter, allowing you to test the same Obsidian app version on different versions of Electron.
41
31
 
42
32
  `appVersion` can be set to one of:
43
33
  - a specific version string like "1.7.7"
44
34
  - "latest": run the latest non-beta Obsidian version
45
35
  - "latest-beta": run the latest beta Obsidian version (or latest is there is no current beta)
46
- - To download Obsidian beta versions you'll need to have an Obsidian account with Catalyst and set the
47
- `OBSIDIAN_USERNAME` and `OBSIDIAN_PASSWORD` environment variables. 2FA needs to be disabled.
36
+ - To download Obsidian beta versions you'll need to have an Obsidian Insiders account
48
37
  - "earliest": run the `minAppVersion` set in your plugin's `manifest.json`
49
38
 
50
39
  `installerVersion` can be set to one of:
@@ -52,55 +41,44 @@ same Obsidian app version on different versions of Electron.
52
41
  - "latest": run the latest Obsidian installer compatible with `appVersion`
53
42
  - "earliest": run the oldest Obsidian installer compatible with `appVersion`
54
43
 
44
+ ### Platform Support
45
+ `obsidian-launcher` works for Obsidian Desktop on Windows, Linux, and MacOS.
46
+
47
+ Windows firewall will sometimes complain about NodeJS on launch, you can just cancel the popup it makes.
48
+
55
49
  ## API Docs
56
50
  API docs for the package are available [here](https://jesse-r-s-hines.github.io/wdio-obsidian-service/obsidian-launcher/README.html).
57
51
 
58
52
  ## CLI
59
- `obsidian-launcher` also provides a CLI interface which can be used via `npx`
60
53
  ```bash
61
54
  npx obsidian-launcher [subcommand] ...
62
55
  ```
63
56
 
64
57
  ### Plugin and Theme format
65
- Several commands can take a list of plugins and themes to install. You can specify the `--plugin` and `--theme`
66
- arguments multiple times to install multiple plugins/themes. The format should be one of:
58
+ Several commands can take a list of plugins and themes to install. You can specify the `--plugin` and `--theme` arguments multiple times to install multiple plugins/themes. The format should be one of:
67
59
  - `<path>`: Path to a local plugin/theme to install
68
60
  - `repo:<github-repo>`: GitHub repo of the plugin/theme to install, e.g. `repo:SilentVoid13/Templater`
69
61
  - `id:<community-id>`: For plugins, id of a community plugin, e.g. `id:templater-obsidian`
70
62
  - `name:<community-name>`: For themes, name of a community theme, e.g. `name:Minimal`
71
63
 
72
- ### download
73
- Download Obsidian to the cache without launching.
74
-
75
- Options:
76
- - `-c, --cache <cache>`: Directory to use as the download cache
77
- - `-v, --version <version>`: Obsidian version to run (default: "latest")
78
- - `-i, --installer <version>`: Obsidian installer version to run (default: "latest")
79
-
80
- ### install
81
- Install plugins and themes into an Obsidian vault.
82
-
83
- Arguments:
84
- - `vault`: Vault to install into
85
-
86
- Options:
87
- - `-c, --cache <cache>`: Directory to use as the download cache
88
- - `-p, --plugin <plugin>`: Plugin(s) to install
89
- - `-t, --theme <plugin>`: Theme(s) to install.
64
+ You can install a specific version of a plugin with `-p id:myplugin=1.2.3`.
90
65
 
91
66
  ### launch
92
- Download and launch Obsidian, opening the specified vault. The Obsidian instance will have a sandboxed configuration
93
- directory.
67
+ Download and launch Obsidian, opening the specified vault.
68
+
69
+ The Obsidian instance will have a sandboxed configuration directory. You can use this option to easily compare plugin behavior on different versions of Obsidian without messing with your system installation of Obsidian.
94
70
 
95
- You can use this option to easily compare plugin behavior on different versions of Obsidian without messing with your
96
- system installation of Obsidian.
71
+ You can pass arguments through to the Obsidian executable using `--` like so:
72
+ ```bash
73
+ npx obsidian-launcher launch ./vault -- --remote-debugging-port=9222
74
+ ```
97
75
 
98
76
  Arguments:
99
77
  - `vault`: Vault to open
100
78
 
101
79
  Options:
102
- - `-c, --cache <cache>`: Directory to use as the download cache
103
- - `-v, --version <version>`: Obsidian version to run (default: "latest")
80
+ - `-c, --cache <cache>`: Directory to use as the download cache (default: OBSIDIAN_CACHE env var or ".obsidian-cache")
81
+ - `-v, --version <version>`: Obsidian app version to run (default: "latest")
104
82
  - `-i, --installer <version>`: Obsidian installer version to run (default: "latest")
105
83
  - `-p, --plugin <plugin>`: Plugin(s) to install
106
84
  - `-t, --theme <plugin>`: Theme(s) to install
@@ -109,16 +87,34 @@ Options:
109
87
  ### watch
110
88
  Downloads Obsidian and opens a vault, then watches for changes to plugins and themes.
111
89
 
112
- Takes the same arguments as the `launch` command but watches for changes to any local plugins or themes and updates the
113
- the vault. Automatically installs `pjeby/hot-reload` so plugins will hot reload as they are updated.
90
+ Takes the same arguments as the `launch` command but watches for changes to any local plugins or themes and updates the vault. Automatically installs `pjeby/hot-reload` so plugins will hot reload as they are updated.
114
91
 
115
92
  Arguments:
116
93
  - `vault`: Vault to open
117
94
 
118
95
  Options:
119
- - `-c, --cache <cache>`: Directory to use as the download cache
120
- - `-v, --version <version>`: Obsidian version to run (default: "latest")
96
+ - `-c, --cache <cache>`: Directory to use as the download cache (default: OBSIDIAN_CACHE env var or ".obsidian-cache")
97
+ - `-v, --version <version>`: Obsidian app version to run (default: "latest")
121
98
  - `-i, --installer <version>`: Obsidian installer version to run (default: "latest")
122
99
  - `-p, --plugin <plugin>`: Plugin(s) to install
123
100
  - `-t, --theme <plugin>`: Theme to install
124
101
  - `--copy`: Copy the vault first
102
+
103
+ ### download
104
+ Download Obsidian to the cache without launching.
105
+
106
+ Options:
107
+ - `-c, --cache <cache>`: Directory to use as the download cache (default: OBSIDIAN_CACHE env var or ".obsidian-cache")
108
+ - `-v, --version <version>`: Obsidian app version to download (default: "latest")
109
+ - `-i, --installer <version>`: Obsidian installer version to download (default: "latest")
110
+
111
+ ### install
112
+ Install plugins and themes into an Obsidian vault.
113
+
114
+ Arguments:
115
+ - `vault`: Vault to install into
116
+
117
+ Options:
118
+ - `-c, --cache <cache>`: Directory to use as the download cache (default: OBSIDIAN_CACHE env var or ".obsidian-cache")
119
+ - `-p, --plugin <plugin>`: Plugin(s) to install
120
+ - `-t, --theme <plugin>`: Theme(s) to install.
package/dist/7z.cjs ADDED
@@ -0,0 +1,41 @@
1
+ "use strict"; function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }require('./chunk-QQJCBP4N.cjs');
2
+
3
+ // src/7z.js
4
+ var _path = require('path'); var _path2 = _interopRequireDefault(_path);
5
+ var _7zwasm = require('7z-wasm'); var _7zwasm2 = _interopRequireDefault(_7zwasm);
6
+ async function main() {
7
+ const sevenZip = await _7zwasm2.default.default({
8
+ // stdin: () => {},
9
+ stdout: (charCode) => {
10
+ if (charCode !== null) {
11
+ process.stdout.write(String.fromCharCode(charCode));
12
+ }
13
+ },
14
+ quit: (code) => {
15
+ if (code) {
16
+ process.exit(code);
17
+ }
18
+ }
19
+ });
20
+ const chmodOrig = sevenZip.FS.chmod.bind(sevenZip.FS);
21
+ sevenZip.FS.chmod = function(path2, mode, dontFollow) {
22
+ if (!mode) {
23
+ return;
24
+ }
25
+ chmodOrig(path2, mode, dontFollow);
26
+ };
27
+ const cwd = process.cwd();
28
+ const hostRoot = _path2.default.parse(cwd).root;
29
+ const hostDir = _path2.default.relative(hostRoot, cwd).split(_path2.default.sep).join("/");
30
+ const mountRoot = "/nodefs";
31
+ sevenZip.FS.mkdir(mountRoot);
32
+ sevenZip.FS.mount(sevenZip.NODEFS, { root: hostRoot }, mountRoot);
33
+ sevenZip.FS.chdir(mountRoot + "/" + hostDir);
34
+ var args = process.argv.slice(2);
35
+ sevenZip.callMain(args);
36
+ }
37
+ main().catch((e) => {
38
+ console.error(e);
39
+ process.exit(-1);
40
+ });
41
+ //# sourceMappingURL=7z.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["/home/runner/work/wdio-obsidian-service/wdio-obsidian-service/packages/obsidian-launcher/dist/7z.cjs","../src/7z.js"],"names":["path"],"mappings":"AAAA,6IAA6B;AAC7B;AACA;ACGA,wEAAiB;AACjB,iFAAqB;AAErB,MAAA,SAAe,IAAA,CAAA,EAAO;AAClB,EAAA,MAAM,SAAA,EAAW,MAAM,gBAAA,CAAS,OAAA,CAAQ;AAAA;AAAA,IAEpC,MAAA,EAAQ,CAAC,QAAA,EAAA,GAAa;AAClB,MAAA,GAAA,CAAI,SAAA,IAAa,IAAA,EAAM;AACnB,QAAA,OAAA,CAAQ,MAAA,CAAO,KAAA,CAAM,MAAA,CAAO,YAAA,CAAa,QAAQ,CAAC,CAAA;AAAA,MACtD;AAAA,IACJ,CAAA;AAAA,IACA,IAAA,EAAM,CAAC,IAAA,EAAA,GAAS;AACZ,MAAA,GAAA,CAAI,IAAA,EAAM;AACN,QAAA,OAAA,CAAQ,IAAA,CAAK,IAAI,CAAA;AAAA,MACrB;AAAA,IACJ;AAAA,EACJ,CAAC,CAAA;AAED,EAAA,MAAM,UAAA,EAAY,QAAA,CAAS,EAAA,CAAG,KAAA,CAAM,IAAA,CAAK,QAAA,CAAS,EAAE,CAAA;AACpD,EAAA,QAAA,CAAS,EAAA,CAAG,MAAA,EAAQ,QAAA,CAASA,KAAAA,EAAM,IAAA,EAAM,UAAA,EAAY;AACjD,IAAA,GAAA,CAAI,CAAC,IAAA,EAAM;AACP,MAAA,MAAA;AAAA,IACJ;AACA,IAAA,SAAA,CAAUA,KAAAA,EAAM,IAAA,EAAM,UAAU,CAAA;AAAA,EACpC,CAAA;AAEA,EAAA,MAAM,IAAA,EAAM,OAAA,CAAQ,GAAA,CAAI,CAAA;AACxB,EAAA,MAAM,SAAA,EAAW,cAAA,CAAK,KAAA,CAAM,GAAG,CAAA,CAAE,IAAA;AACjC,EAAA,MAAM,QAAA,EAAU,cAAA,CAAK,QAAA,CAAS,QAAA,EAAU,GAAG,CAAA,CAAE,KAAA,CAAM,cAAA,CAAK,GAAG,CAAA,CAAE,IAAA,CAAK,GAAG,CAAA;AACrE,EAAA,MAAM,UAAA,EAAY,SAAA;AAClB,EAAA,QAAA,CAAS,EAAA,CAAG,KAAA,CAAM,SAAS,CAAA;AAC3B,EAAA,QAAA,CAAS,EAAA,CAAG,KAAA,CAAM,QAAA,CAAS,MAAA,EAAQ,EAAE,IAAA,EAAM,SAAS,CAAA,EAAG,SAAS,CAAA;AAChE,EAAA,QAAA,CAAS,EAAA,CAAG,KAAA,CAAM,UAAA,EAAY,IAAA,EAAM,OAAO,CAAA;AAE3C,EAAA,IAAI,KAAA,EAAO,OAAA,CAAQ,IAAA,CAAK,KAAA,CAAM,CAAC,CAAA;AAC/B,EAAA,QAAA,CAAS,QAAA,CAAS,IAAI,CAAA;AAC1B;AAEA,IAAA,CAAK,CAAA,CAAE,KAAA,CAAM,CAAA,CAAA,EAAA,GAAK;AACd,EAAA,OAAA,CAAQ,KAAA,CAAM,CAAC,CAAA;AACf,EAAA,OAAA,CAAQ,IAAA,CAAK,CAAA,CAAE,CAAA;AACnB,CAAC,CAAA","file":"/home/runner/work/wdio-obsidian-service/wdio-obsidian-service/packages/obsidian-launcher/dist/7z.cjs","sourcesContent":[null,"/**\n * Script wrapper for 7z-wasm. 7z-wasm comes with it's own CLI, but getting the binary path can be flaky depending on\n * how wdio-obsidian-service is installed. This also lets us customize it a bit. This does need to be called as a\n * subprocess to avoid blocking the main thread.\n */\nimport path from \"path\";\nimport SevenZip from \"7z-wasm\"\n\nasync function main() {\n const sevenZip = await SevenZip.default({\n // stdin: () => {},\n stdout: (charCode) => {\n if (charCode !== null) {\n process.stdout.write(String.fromCharCode(charCode));\n }\n },\n quit: (code) => {\n if (code) {\n process.exit(code);\n }\n }\n });\n // HACK: The WASM 7-Zip sets file mode to 000 when extracting tar archives, making it impossible to extract sub-folders\n const chmodOrig = sevenZip.FS.chmod.bind(sevenZip.FS);\n sevenZip.FS.chmod = function(path, mode, dontFollow) {\n if (!mode) {\n return;\n }\n chmodOrig(path, mode, dontFollow);\n };\n\n const cwd = process.cwd();\n const hostRoot = path.parse(cwd).root;\n const hostDir = path.relative(hostRoot, cwd).split(path.sep).join(\"/\");\n const mountRoot = \"/nodefs\";\n sevenZip.FS.mkdir(mountRoot);\n sevenZip.FS.mount(sevenZip.NODEFS, { root: hostRoot }, mountRoot);\n sevenZip.FS.chdir(mountRoot + \"/\" + hostDir);\n\n var args = process.argv.slice(2);\n sevenZip.callMain(args);\n}\n\nmain().catch(e => {\n console.error(e);\n process.exit(-1);\n});\n"]}
package/dist/7z.d.cts ADDED
@@ -0,0 +1,2 @@
1
+
2
+ export { }
package/dist/7z.d.ts ADDED
@@ -0,0 +1,2 @@
1
+
2
+ export { }
package/dist/7z.js ADDED
@@ -0,0 +1,39 @@
1
+ // src/7z.js
2
+ import path from "path";
3
+ import SevenZip from "7z-wasm";
4
+ async function main() {
5
+ const sevenZip = await SevenZip.default({
6
+ // stdin: () => {},
7
+ stdout: (charCode) => {
8
+ if (charCode !== null) {
9
+ process.stdout.write(String.fromCharCode(charCode));
10
+ }
11
+ },
12
+ quit: (code) => {
13
+ if (code) {
14
+ process.exit(code);
15
+ }
16
+ }
17
+ });
18
+ const chmodOrig = sevenZip.FS.chmod.bind(sevenZip.FS);
19
+ sevenZip.FS.chmod = function(path2, mode, dontFollow) {
20
+ if (!mode) {
21
+ return;
22
+ }
23
+ chmodOrig(path2, mode, dontFollow);
24
+ };
25
+ const cwd = process.cwd();
26
+ const hostRoot = path.parse(cwd).root;
27
+ const hostDir = path.relative(hostRoot, cwd).split(path.sep).join("/");
28
+ const mountRoot = "/nodefs";
29
+ sevenZip.FS.mkdir(mountRoot);
30
+ sevenZip.FS.mount(sevenZip.NODEFS, { root: hostRoot }, mountRoot);
31
+ sevenZip.FS.chdir(mountRoot + "/" + hostDir);
32
+ var args = process.argv.slice(2);
33
+ sevenZip.callMain(args);
34
+ }
35
+ main().catch((e) => {
36
+ console.error(e);
37
+ process.exit(-1);
38
+ });
39
+ //# sourceMappingURL=7z.js.map
package/dist/7z.js.map ADDED
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/7z.js"],"sourcesContent":["/**\n * Script wrapper for 7z-wasm. 7z-wasm comes with it's own CLI, but getting the binary path can be flaky depending on\n * how wdio-obsidian-service is installed. This also lets us customize it a bit. This does need to be called as a\n * subprocess to avoid blocking the main thread.\n */\nimport path from \"path\";\nimport SevenZip from \"7z-wasm\"\n\nasync function main() {\n const sevenZip = await SevenZip.default({\n // stdin: () => {},\n stdout: (charCode) => {\n if (charCode !== null) {\n process.stdout.write(String.fromCharCode(charCode));\n }\n },\n quit: (code) => {\n if (code) {\n process.exit(code);\n }\n }\n });\n // HACK: The WASM 7-Zip sets file mode to 000 when extracting tar archives, making it impossible to extract sub-folders\n const chmodOrig = sevenZip.FS.chmod.bind(sevenZip.FS);\n sevenZip.FS.chmod = function(path, mode, dontFollow) {\n if (!mode) {\n return;\n }\n chmodOrig(path, mode, dontFollow);\n };\n\n const cwd = process.cwd();\n const hostRoot = path.parse(cwd).root;\n const hostDir = path.relative(hostRoot, cwd).split(path.sep).join(\"/\");\n const mountRoot = \"/nodefs\";\n sevenZip.FS.mkdir(mountRoot);\n sevenZip.FS.mount(sevenZip.NODEFS, { root: hostRoot }, mountRoot);\n sevenZip.FS.chdir(mountRoot + \"/\" + hostDir);\n\n var args = process.argv.slice(2);\n sevenZip.callMain(args);\n}\n\nmain().catch(e => {\n console.error(e);\n process.exit(-1);\n});\n"],"mappings":";AAKA,OAAO,UAAU;AACjB,OAAO,cAAc;AAErB,eAAe,OAAO;AAClB,QAAM,WAAW,MAAM,SAAS,QAAQ;AAAA;AAAA,IAEpC,QAAQ,CAAC,aAAa;AAClB,UAAI,aAAa,MAAM;AACnB,gBAAQ,OAAO,MAAM,OAAO,aAAa,QAAQ,CAAC;AAAA,MACtD;AAAA,IACJ;AAAA,IACA,MAAM,CAAC,SAAS;AACZ,UAAI,MAAM;AACN,gBAAQ,KAAK,IAAI;AAAA,MACrB;AAAA,IACJ;AAAA,EACJ,CAAC;AAED,QAAM,YAAY,SAAS,GAAG,MAAM,KAAK,SAAS,EAAE;AACpD,WAAS,GAAG,QAAQ,SAASA,OAAM,MAAM,YAAY;AACjD,QAAI,CAAC,MAAM;AACP;AAAA,IACJ;AACA,cAAUA,OAAM,MAAM,UAAU;AAAA,EACpC;AAEA,QAAM,MAAM,QAAQ,IAAI;AACxB,QAAM,WAAW,KAAK,MAAM,GAAG,EAAE;AACjC,QAAM,UAAU,KAAK,SAAS,UAAU,GAAG,EAAE,MAAM,KAAK,GAAG,EAAE,KAAK,GAAG;AACrE,QAAM,YAAY;AAClB,WAAS,GAAG,MAAM,SAAS;AAC3B,WAAS,GAAG,MAAM,SAAS,QAAQ,EAAE,MAAM,SAAS,GAAG,SAAS;AAChE,WAAS,GAAG,MAAM,YAAY,MAAM,OAAO;AAE3C,MAAI,OAAO,QAAQ,KAAK,MAAM,CAAC;AAC/B,WAAS,SAAS,IAAI;AAC1B;AAEA,KAAK,EAAE,MAAM,OAAK;AACd,UAAQ,MAAM,CAAC;AACf,UAAQ,KAAK,EAAE;AACnB,CAAC;","names":["path"]}