@ecopages/file-system 0.2.0-alpha.10 → 0.2.0-alpha.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/CHANGELOG.md CHANGED
@@ -8,4 +8,4 @@ All notable changes to `@ecopages/file-system` are documented here.
8
8
 
9
9
  ### Bug Fixes
10
10
 
11
- - Switched Node-side globbing from `fast-glob` to native `node:fs/promises.glob()` so bundled ESM runtime paths avoid CommonJS interop failures.
11
+ - Switched Node globbing to native `node:fs/promises.glob()` and removed the stale `fast-glob` dependency.
package/README.md CHANGED
@@ -4,7 +4,7 @@ Runtime-agnostic file system utilities for Ecopages that automatically select th
4
4
 
5
5
  ## Features
6
6
 
7
- - **Runtime Detection**: Automatically uses `Bun.Glob`, `Bun.hash`, `Bun.file` for maximum performance on Bun, and falls back to `fast-glob` and `crypto` on Node.js.
7
+ - **Runtime Detection**: Automatically uses `Bun.Glob`, `Bun.hash`, `Bun.file` for maximum performance on Bun, and falls back to native `node:fs/promises.glob()` and `crypto` on Node.js.
8
8
  - **Unified Interface**: Write file system code once; let the runtime handle the optimization.
9
9
  - **Type Safe**: Full TypeScript support with a consistent API.
10
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ecopages/file-system",
3
- "version": "0.2.0-alpha.10",
3
+ "version": "0.2.0-alpha.12",
4
4
  "description": "Runtime-agnostic file system utilities for Ecopages with Bun and Node adapters",
5
5
  "keywords": [
6
6
  "ecopages",
@@ -44,9 +44,6 @@
44
44
  "default": "./src/adapters/node.js"
45
45
  }
46
46
  },
47
- "dependencies": {
48
- "fast-glob": "^3.3.2"
49
- },
50
47
  "peerDependencies": {
51
48
  "bun": ">=1.0.0"
52
49
  },
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @module @ecopages/file-system/adapters/node
3
- * @description Node.js file system adapter using fast-glob, crypto, and node:fs.
3
+ * @description Node.js file system adapter using node:fs/promises.glob(), crypto, and node:fs.
4
4
  */
5
5
  import type { FileSystem, GlobOptions } from '../types.js';
6
6
  import { BaseFileSystem } from '../utils/common.js';