@e-mc/file-manager 0.9.10 → 0.9.12

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 (4) hide show
  1. package/README.md +10 -10
  2. package/index.d.ts +5 -5
  3. package/index.js +2 -2
  4. package/package.json +10 -10
package/README.md CHANGED
@@ -9,7 +9,7 @@
9
9
 
10
10
  ## Interface
11
11
 
12
- * [View Source](https://www.unpkg.com/@e-mc/types@0.9.10/lib/index.d.ts)
12
+ * [View Source](https://www.unpkg.com/@e-mc/types@0.9.12/lib/index.d.ts)
13
13
 
14
14
  ```typescript
15
15
  import type { DataSource, IncrementalMatch, TaskAction } from "./squared";
@@ -286,15 +286,15 @@ NOTE: **FileManager** is a sub-class of [Host](https://www.npmjs.com/package/@e-
286
286
 
287
287
  ## References
288
288
 
289
- - https://www.unpkg.com/@e-mc/types@0.9.10/lib/squared.d.ts
290
- - https://www.unpkg.com/@e-mc/types@0.9.10/lib/asset.d.ts
291
- - https://www.unpkg.com/@e-mc/types@0.9.10/lib/core.d.ts
292
- - https://www.unpkg.com/@e-mc/types@0.9.10/lib/filemanager.d.ts
293
- - https://www.unpkg.com/@e-mc/types@0.9.10/lib/logger.d.ts
294
- - https://www.unpkg.com/@e-mc/types@0.9.10/lib/module.d.ts
295
- - https://www.unpkg.com/@e-mc/types@0.9.10/lib/node.d.ts
296
- - https://www.unpkg.com/@e-mc/types@0.9.10/lib/request.d.ts
297
- - https://www.unpkg.com/@e-mc/types@0.9.10/lib/settings.d.ts
289
+ - https://www.unpkg.com/@e-mc/types@0.9.12/lib/squared.d.ts
290
+ - https://www.unpkg.com/@e-mc/types@0.9.12/lib/asset.d.ts
291
+ - https://www.unpkg.com/@e-mc/types@0.9.12/lib/core.d.ts
292
+ - https://www.unpkg.com/@e-mc/types@0.9.12/lib/filemanager.d.ts
293
+ - https://www.unpkg.com/@e-mc/types@0.9.12/lib/logger.d.ts
294
+ - https://www.unpkg.com/@e-mc/types@0.9.12/lib/module.d.ts
295
+ - https://www.unpkg.com/@e-mc/types@0.9.12/lib/node.d.ts
296
+ - https://www.unpkg.com/@e-mc/types@0.9.12/lib/request.d.ts
297
+ - https://www.unpkg.com/@e-mc/types@0.9.12/lib/settings.d.ts
298
298
 
299
299
  * https://www.npmjs.com/package/@types/node
300
300
 
package/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
- import type { FileManagerConstructor } from '../types/lib';
2
- import type { ExternalAsset } from '../types/lib/asset';
3
-
4
- declare const FileManager: FileManagerConstructor<ExternalAsset>;
5
-
1
+ import type { FileManagerConstructor } from '@e-mc/types/lib';
2
+ import type { ExternalAsset } from '@e-mc/types/lib/asset';
3
+
4
+ declare const FileManager: FileManagerConstructor<ExternalAsset>;
5
+
6
6
  export = FileManager;
package/index.js CHANGED
@@ -5,11 +5,11 @@ const fs = require("fs");
5
5
  const stream = require("stream");
6
6
  const pm = require("picomatch");
7
7
  const chalk = require("chalk");
8
+ const types_1 = require("@e-mc/types");
9
+ const core_1 = require("@e-mc/core");
8
10
  const util_1 = require("@e-mc/request/util");
9
11
  const asset_1 = require("@e-mc/document/asset");
10
12
  const util_2 = require("@e-mc/document/util");
11
- const types_1 = require("@e-mc/types");
12
- const core_1 = require("@e-mc/core");
13
13
  const request_1 = require("@e-mc/request");
14
14
  const document_1 = require("@e-mc/document");
15
15
  const task_1 = require("@e-mc/task");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@e-mc/file-manager",
3
- "version": "0.9.10",
3
+ "version": "0.9.12",
4
4
  "description": "FileManager constructor for E-mc.",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -20,15 +20,15 @@
20
20
  "license": "BSD 3-Clause",
21
21
  "homepage": "https://github.com/anpham6/e-mc#readme",
22
22
  "dependencies": {
23
- "@e-mc/cloud": "0.9.10",
24
- "@e-mc/compress": "0.9.10",
25
- "@e-mc/core": "0.9.10",
26
- "@e-mc/document": "0.9.10",
27
- "@e-mc/image": "0.9.10",
28
- "@e-mc/request": "0.9.10",
29
- "@e-mc/task": "0.9.10",
30
- "@e-mc/types": "0.9.10",
31
- "@e-mc/watch": "0.9.10",
23
+ "@e-mc/cloud": "0.9.12",
24
+ "@e-mc/compress": "0.9.12",
25
+ "@e-mc/core": "0.9.12",
26
+ "@e-mc/document": "0.9.12",
27
+ "@e-mc/image": "0.9.12",
28
+ "@e-mc/request": "0.9.12",
29
+ "@e-mc/task": "0.9.12",
30
+ "@e-mc/types": "0.9.12",
31
+ "@e-mc/watch": "0.9.12",
32
32
  "chalk": "4.1.2",
33
33
  "picomatch": "^4.0.2"
34
34
  }