@e-mc/file-manager 0.12.13 → 0.12.15

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 (3) hide show
  1. package/README.md +10 -10
  2. package/index.js +3 -10
  3. 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.12.13/lib/index.d.ts)
12
+ * [View Source](https://www.unpkg.com/@e-mc/types@0.12.15/lib/index.d.ts)
13
13
 
14
14
  ```typescript
15
15
  import type { DataSource, IncrementalMatch, TaskAction } from "./squared";
@@ -307,15 +307,15 @@ NOTE: **FileManager** is a sub-class of [Host](https://www.npmjs.com/package/@e-
307
307
 
308
308
  ## References
309
309
 
310
- - https://www.unpkg.com/@e-mc/types@0.12.13/lib/squared.d.ts
311
- - https://www.unpkg.com/@e-mc/types@0.12.13/lib/asset.d.ts
312
- - https://www.unpkg.com/@e-mc/types@0.12.13/lib/core.d.ts
313
- - https://www.unpkg.com/@e-mc/types@0.12.13/lib/filemanager.d.ts
314
- - https://www.unpkg.com/@e-mc/types@0.12.13/lib/logger.d.ts
315
- - https://www.unpkg.com/@e-mc/types@0.12.13/lib/module.d.ts
316
- - https://www.unpkg.com/@e-mc/types@0.12.13/lib/node.d.ts
317
- - https://www.unpkg.com/@e-mc/types@0.12.13/lib/request.d.ts
318
- - https://www.unpkg.com/@e-mc/types@0.12.13/lib/settings.d.ts
310
+ - https://www.unpkg.com/@e-mc/types@0.12.15/lib/squared.d.ts
311
+ - https://www.unpkg.com/@e-mc/types@0.12.15/lib/asset.d.ts
312
+ - https://www.unpkg.com/@e-mc/types@0.12.15/lib/core.d.ts
313
+ - https://www.unpkg.com/@e-mc/types@0.12.15/lib/filemanager.d.ts
314
+ - https://www.unpkg.com/@e-mc/types@0.12.15/lib/logger.d.ts
315
+ - https://www.unpkg.com/@e-mc/types@0.12.15/lib/module.d.ts
316
+ - https://www.unpkg.com/@e-mc/types@0.12.15/lib/node.d.ts
317
+ - https://www.unpkg.com/@e-mc/types@0.12.15/lib/request.d.ts
318
+ - https://www.unpkg.com/@e-mc/types@0.12.15/lib/settings.d.ts
319
319
 
320
320
  * https://www.npmjs.com/package/@types/node
321
321
 
package/index.js CHANGED
@@ -3135,16 +3135,9 @@ class FileManager extends core_1.Host {
3135
3135
  resetAssets(this);
3136
3136
  break;
3137
3137
  }
3138
- if (this.queued) {
3139
- const length = arguments.length;
3140
- const args = new Array(length);
3141
- for (let i = 0; i < length; ++i) {
3142
- args[i] = arguments[i];
3143
- }
3144
- if (this.joinQueue({ args })) {
3145
- this.finalizeState = 4;
3146
- return;
3147
- }
3138
+ if (this.queued && this.joinQueue({ args: Array.from(arguments) })) {
3139
+ this.finalizeState = 4;
3140
+ return;
3148
3141
  }
3149
3142
  if (targeted) {
3150
3143
  this.using(true, ...targeted);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@e-mc/file-manager",
3
- "version": "0.12.13",
3
+ "version": "0.12.15",
4
4
  "description": "FileManager constructor for E-mc.",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -19,15 +19,15 @@
19
19
  "license": "BSD-3-Clause",
20
20
  "homepage": "https://github.com/anpham6/e-mc#readme",
21
21
  "dependencies": {
22
- "@e-mc/cloud": "0.12.13",
23
- "@e-mc/compress": "0.12.13",
24
- "@e-mc/core": "0.12.13",
25
- "@e-mc/document": "0.12.13",
26
- "@e-mc/image": "0.12.13",
27
- "@e-mc/request": "0.12.13",
28
- "@e-mc/task": "0.12.13",
29
- "@e-mc/types": "0.12.13",
30
- "@e-mc/watch": "0.12.13",
22
+ "@e-mc/cloud": "0.12.15",
23
+ "@e-mc/compress": "0.12.15",
24
+ "@e-mc/core": "0.12.15",
25
+ "@e-mc/document": "0.12.15",
26
+ "@e-mc/image": "0.12.15",
27
+ "@e-mc/request": "0.12.15",
28
+ "@e-mc/task": "0.12.15",
29
+ "@e-mc/types": "0.12.15",
30
+ "@e-mc/watch": "0.12.15",
31
31
  "chalk": "4.1.2",
32
32
  "diff": "^7.0.0",
33
33
  "picomatch": "^4.0.3"