@h3ravel/filesystem 0.4.10 → 0.4.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.
- package/package.json +13 -12
- package/dist/index.d.mts +0 -43
- /package/dist/{index.d.cts → index.d.ts} +0 -0
- /package/dist/{index.mjs → index.js} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@h3ravel/filesystem",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.12",
|
|
4
4
|
"description": "Filesystem manager for H3ravel.",
|
|
5
5
|
"h3ravel": {
|
|
6
6
|
"providers": [
|
|
@@ -8,15 +8,15 @@
|
|
|
8
8
|
]
|
|
9
9
|
},
|
|
10
10
|
"type": "module",
|
|
11
|
-
"main": "./dist/index.
|
|
12
|
-
"types": "./dist/index.d.
|
|
13
|
-
"module": "./dist/index.
|
|
11
|
+
"main": "./dist/index.cjs",
|
|
12
|
+
"types": "./dist/index.d.ts",
|
|
13
|
+
"module": "./dist/index.js",
|
|
14
14
|
"exports": {
|
|
15
15
|
".": {
|
|
16
|
-
"
|
|
17
|
-
"import": "./dist/index.mjs",
|
|
16
|
+
"import": "./dist/index.js",
|
|
18
17
|
"require": "./dist/index.cjs"
|
|
19
|
-
}
|
|
18
|
+
},
|
|
19
|
+
"./*": "./*"
|
|
20
20
|
},
|
|
21
21
|
"files": [
|
|
22
22
|
"dist"
|
|
@@ -42,20 +42,21 @@
|
|
|
42
42
|
"filesystem"
|
|
43
43
|
],
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@h3ravel/musket": "^0.3.
|
|
46
|
-
"@h3ravel/shared": "^0.27.
|
|
47
|
-
"@h3ravel/support": "^0.15.
|
|
45
|
+
"@h3ravel/musket": "^0.3.9",
|
|
46
|
+
"@h3ravel/shared": "^0.27.6",
|
|
47
|
+
"@h3ravel/support": "^0.15.5"
|
|
48
48
|
},
|
|
49
49
|
"peerDependencies": {
|
|
50
|
-
"@h3ravel/core": "^1.21.
|
|
50
|
+
"@h3ravel/core": "^1.21.5"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"typescript": "^5.4.0"
|
|
54
54
|
},
|
|
55
55
|
"scripts": {
|
|
56
|
+
"barrel": "barrelsby --directory src --delete --singleQuotes",
|
|
56
57
|
"build": "tsdown --config-loader unconfig",
|
|
57
58
|
"dev": "tsx watch src/index.ts",
|
|
58
|
-
"start": "node dist/index.
|
|
59
|
+
"start": "node dist/index.js",
|
|
59
60
|
"lint": "eslint . --ext .ts",
|
|
60
61
|
"test": "jest --passWithNoTests",
|
|
61
62
|
"version-patch": "pnpm version patch"
|
package/dist/index.d.mts
DELETED
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
/// <reference path="./app.globals.d.ts" />
|
|
2
|
-
import { Command } from "@h3ravel/musket";
|
|
3
|
-
import { ServiceProvider } from "@h3ravel/core";
|
|
4
|
-
|
|
5
|
-
//#region src/Commands/StorageLinkCommand.d.ts
|
|
6
|
-
declare class StorageLinkCommand extends Command {
|
|
7
|
-
/**
|
|
8
|
-
* The name and signature of the console command.
|
|
9
|
-
*
|
|
10
|
-
* @var string
|
|
11
|
-
*/
|
|
12
|
-
protected signature: string;
|
|
13
|
-
/**
|
|
14
|
-
* The console command description.
|
|
15
|
-
*
|
|
16
|
-
* @var string
|
|
17
|
-
*/
|
|
18
|
-
protected description: string;
|
|
19
|
-
/**
|
|
20
|
-
* Execute the console command.
|
|
21
|
-
*/
|
|
22
|
-
handle(this: any): Promise<void>;
|
|
23
|
-
/**
|
|
24
|
-
* Create the symbolic links configured for the application.
|
|
25
|
-
*/
|
|
26
|
-
link(): Promise<void>;
|
|
27
|
-
/**
|
|
28
|
-
* Delete existing symbolic links configured for the application.
|
|
29
|
-
*/
|
|
30
|
-
unlink(): Promise<void>;
|
|
31
|
-
}
|
|
32
|
-
//#endregion
|
|
33
|
-
//#region src/Providers/FilesystemProvider.d.ts
|
|
34
|
-
/**
|
|
35
|
-
* Sets up Filesystem management and lifecycle.
|
|
36
|
-
*
|
|
37
|
-
*/
|
|
38
|
-
declare class FilesystemProvider extends ServiceProvider {
|
|
39
|
-
static priority: number;
|
|
40
|
-
register(): void;
|
|
41
|
-
}
|
|
42
|
-
//#endregion
|
|
43
|
-
export { FilesystemProvider, StorageLinkCommand };
|
|
File without changes
|
|
File without changes
|