@hamak/filesystem-server-spi 0.5.2 → 0.5.6
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/dist/index.d.ts +5 -5
- package/dist/index.js +5 -5
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
*
|
|
4
4
|
* Backend filesystem server SPI - Extension points
|
|
5
5
|
*/
|
|
6
|
-
export * from './spi/IFileSystemMiddleware';
|
|
7
|
-
export * from './spi/IPathResolver';
|
|
8
|
-
export * from './spi/IAccessControl';
|
|
9
|
-
export * from './spi/IFileInfoEnricher';
|
|
10
|
-
export * from './spi/tokens';
|
|
6
|
+
export * from './spi/IFileSystemMiddleware.js';
|
|
7
|
+
export * from './spi/IPathResolver.js';
|
|
8
|
+
export * from './spi/IAccessControl.js';
|
|
9
|
+
export * from './spi/IFileInfoEnricher.js';
|
|
10
|
+
export * from './spi/tokens.js';
|
|
11
11
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.js
CHANGED
|
@@ -4,9 +4,9 @@
|
|
|
4
4
|
* Backend filesystem server SPI - Extension points
|
|
5
5
|
*/
|
|
6
6
|
// Export SPI interfaces
|
|
7
|
-
export * from './spi/IFileSystemMiddleware';
|
|
8
|
-
export * from './spi/IPathResolver';
|
|
9
|
-
export * from './spi/IAccessControl';
|
|
10
|
-
export * from './spi/IFileInfoEnricher';
|
|
7
|
+
export * from './spi/IFileSystemMiddleware.js';
|
|
8
|
+
export * from './spi/IPathResolver.js';
|
|
9
|
+
export * from './spi/IAccessControl.js';
|
|
10
|
+
export * from './spi/IFileInfoEnricher.js';
|
|
11
11
|
// Export SPI tokens
|
|
12
|
-
export * from './spi/tokens';
|
|
12
|
+
export * from './spi/tokens.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hamak/filesystem-server-spi",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.6",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "FileSystem Server SPI - Backend filesystem server extension points",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"access": "public"
|
|
20
20
|
},
|
|
21
21
|
"scripts": {
|
|
22
|
-
"build": "tsc -p tsconfig.json && tsc -p tsconfig.es2015.json",
|
|
22
|
+
"build": "tsc -p tsconfig.json && tsc -p tsconfig.es2015.json && node ../../../../scripts/fix-esm-extensions.mjs ./dist",
|
|
23
23
|
"clean": "rm -rf dist",
|
|
24
24
|
"test": "vitest run",
|
|
25
25
|
"test:watch": "vitest"
|