@e-mc/file-manager 0.10.2 → 0.10.3

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 +4 -4
  4. package/package.json +11 -11
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.10.2/lib/index.d.ts)
12
+ * [View Source](https://www.unpkg.com/@e-mc/types@0.10.3/lib/index.d.ts)
13
13
 
14
14
  ```typescript
15
15
  import type { DataSource, IncrementalMatch, TaskAction } from "./squared";
@@ -305,15 +305,15 @@ NOTE: **FileManager** is a sub-class of [Host](https://www.npmjs.com/package/@e-
305
305
 
306
306
  ## References
307
307
 
308
- - https://www.unpkg.com/@e-mc/types@0.10.2/lib/squared.d.ts
309
- - https://www.unpkg.com/@e-mc/types@0.10.2/lib/asset.d.ts
310
- - https://www.unpkg.com/@e-mc/types@0.10.2/lib/core.d.ts
311
- - https://www.unpkg.com/@e-mc/types@0.10.2/lib/filemanager.d.ts
312
- - https://www.unpkg.com/@e-mc/types@0.10.2/lib/logger.d.ts
313
- - https://www.unpkg.com/@e-mc/types@0.10.2/lib/module.d.ts
314
- - https://www.unpkg.com/@e-mc/types@0.10.2/lib/node.d.ts
315
- - https://www.unpkg.com/@e-mc/types@0.10.2/lib/request.d.ts
316
- - https://www.unpkg.com/@e-mc/types@0.10.2/lib/settings.d.ts
308
+ - https://www.unpkg.com/@e-mc/types@0.10.3/lib/squared.d.ts
309
+ - https://www.unpkg.com/@e-mc/types@0.10.3/lib/asset.d.ts
310
+ - https://www.unpkg.com/@e-mc/types@0.10.3/lib/core.d.ts
311
+ - https://www.unpkg.com/@e-mc/types@0.10.3/lib/filemanager.d.ts
312
+ - https://www.unpkg.com/@e-mc/types@0.10.3/lib/logger.d.ts
313
+ - https://www.unpkg.com/@e-mc/types@0.10.3/lib/module.d.ts
314
+ - https://www.unpkg.com/@e-mc/types@0.10.3/lib/node.d.ts
315
+ - https://www.unpkg.com/@e-mc/types@0.10.3/lib/request.d.ts
316
+ - https://www.unpkg.com/@e-mc/types@0.10.3/lib/settings.d.ts
317
317
 
318
318
  * https://www.npmjs.com/package/@types/node
319
319
 
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
@@ -8,7 +8,11 @@ const diff = require("diff");
8
8
  const chalk = require("chalk");
9
9
  const stripansi = require("strip-ansi");
10
10
  const url_1 = require("url");
11
+ const types_1 = require("@e-mc/types");
11
12
  const core_1 = require("@e-mc/core");
13
+ const asset_1 = require("@e-mc/document/asset");
14
+ const util_1 = require("@e-mc/document/util");
15
+ const util_2 = require("@e-mc/request/util");
12
16
  const request_1 = require("@e-mc/request");
13
17
  const document_1 = require("@e-mc/document");
14
18
  const task_1 = require("@e-mc/task");
@@ -16,10 +20,6 @@ const image_1 = require("@e-mc/image");
16
20
  const watch_1 = require("@e-mc/watch");
17
21
  const compress_1 = require("@e-mc/compress");
18
22
  const cloud_1 = require("@e-mc/cloud");
19
- const types_1 = require("@e-mc/types");
20
- const asset_1 = require("@e-mc/document/asset");
21
- const util_1 = require("@e-mc/document/util");
22
- const util_2 = require("@e-mc/request/util");
23
23
  const kBaseDirectory = Symbol('baseDirectory');
24
24
  const kIncremental = Symbol('incremental');
25
25
  const kRestarting = Symbol('restarting');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@e-mc/file-manager",
3
- "version": "0.10.2",
3
+ "version": "0.10.3",
4
4
  "description": "FileManager constructor for E-mc.",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -17,18 +17,18 @@
17
17
  "squared-functions"
18
18
  ],
19
19
  "author": "An Pham <anpham6@gmail.com>",
20
- "license": "BSD 3-Clause",
20
+ "license": "BSD-3-Clause",
21
21
  "homepage": "https://github.com/anpham6/e-mc#readme",
22
22
  "dependencies": {
23
- "@e-mc/cloud": "0.10.2",
24
- "@e-mc/compress": "0.10.2",
25
- "@e-mc/core": "0.10.2",
26
- "@e-mc/document": "0.10.2",
27
- "@e-mc/image": "0.10.2",
28
- "@e-mc/request": "0.10.2",
29
- "@e-mc/task": "0.10.2",
30
- "@e-mc/types": "0.10.2",
31
- "@e-mc/watch": "0.10.2",
23
+ "@e-mc/cloud": "0.10.3",
24
+ "@e-mc/compress": "0.10.3",
25
+ "@e-mc/core": "0.10.3",
26
+ "@e-mc/document": "0.10.3",
27
+ "@e-mc/image": "0.10.3",
28
+ "@e-mc/request": "0.10.3",
29
+ "@e-mc/task": "0.10.3",
30
+ "@e-mc/types": "0.10.3",
31
+ "@e-mc/watch": "0.10.3",
32
32
  "chalk": "4.1.2",
33
33
  "diff": "^5.2.0",
34
34
  "picomatch": "^4.0.2",