@cloud411716/fancy-webnovel 1.0.37 → 1.0.38
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/index.js +2 -2
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
* - File operations use Node.js fs (project roots may be outside workspace).
|
|
13
13
|
* - ctx.timer (via ctx.timeout()) handles all delays/timeouts.
|
|
14
14
|
*
|
|
15
|
-
* Required Cordis services: commands, userQuestions, timer,
|
|
15
|
+
* Required Cordis services: commands, userQuestions, timer, fs
|
|
16
16
|
* (all are part of dsh-base, so this plugin works on dsh-tui, dsh-web, dsh-desktop).
|
|
17
17
|
*
|
|
18
18
|
* IMPORTANT: This plugin needs `danger-full-access` sandbox mode because it
|
|
@@ -27,7 +27,7 @@ import { apply as applyScan } from './commands/scan/index.js';
|
|
|
27
27
|
* Services this plugin requires from the Cordis context.
|
|
28
28
|
* All are provided by dsh-base, so this works on every DSH UI.
|
|
29
29
|
*/
|
|
30
|
-
export const inject = ['commands', 'userQuestions', 'timer', '
|
|
30
|
+
export const inject = ['commands', 'userQuestions', 'timer', 'fs'];
|
|
31
31
|
|
|
32
32
|
/**
|
|
33
33
|
* Called once when the plugin is loaded into a Cordis context (fiber).
|