file_lualike 0.2.0
file_lualike: ^0.2.0 copied to clipboard
Adapter that bridges package:file FileSystem implementations (SFTP, memory, local) into the lualike scripting runtime. Enables transparent filesystem backends for io.open(), os.remove(), dofile(), and [...]
0.2.0 #
- Broaden the
lualikedependency constraint to>=0.3.0 <0.6.0.
0.1.3 #
- Bump
lualikedependency to^0.4.0. - Keep the filesystem adapter aligned with the updated core runtime.
0.1.2 #
- Re-export
CompositeFileSystemBackendfrompackage:lualikefor convenience when building layered filesystem backends.
0.1.1 #
useFileSystem()now wires the configuredFileSystemProviderinto lualike'sIOLib.fileSystemProvider, fixingio.open()so it routes to the remote filesystem (SFTP, memory, etc.) instead of localdart:io.- Bump
lualikedependency to^0.2.4.
0.1.0 #
- Initial release.
PackageFileIODevice— bridge anypackage:fileFileinto lualike'sIODeviceinterface.PackageFileSystemBackend— bridge anypackage:fileFileSysteminto lualike'sFileSystemBackendmetadata interface.useFileSystem()— one-call setup wiring both adapters into the lualike runtime.- Supports local, in-memory (
MemoryFileSystem), SFTP (file_sftp), and custompackage:filefilesystems.