sx sync: migrate legacy modules/{fs,process}.sx imports to modules/std/
The June stdlib restructure deleted the flat library modules; the old paths kept resolving only through a stale zig-out/library install snapshot. Verified green with that snapshot removed. Drop the empty src/infra/ — the planned hash/json/cli shims shipped as sx std modules instead.
This commit is contained in:
@@ -29,7 +29,7 @@
|
||||
// — a bare `parse` would bind to `std.cli`'s `parse` once both modules share
|
||||
// one program (the `dist` CLI), which returns a different type.
|
||||
jsonp :: #import "modules/std/json.sx";
|
||||
#import "modules/fs.sx";
|
||||
#import "modules/std/fs.sx";
|
||||
#import "../domain/platform.sx";
|
||||
#import "../domain/validate.sx";
|
||||
|
||||
|
||||
@@ -35,7 +35,7 @@
|
||||
|
||||
#import "modules/std.sx";
|
||||
#import "modules/std/json.sx";
|
||||
#import "modules/fs.sx";
|
||||
#import "modules/std/fs.sx";
|
||||
#import "../domain/platform.sx";
|
||||
#import "../domain/app.sx";
|
||||
#import "../domain/release.sx";
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
// — a bare `parse` would bind to `std.cli`'s `parse` once both modules share
|
||||
// one program (the `dist` CLI), which returns a different type.
|
||||
jsonp :: #import "modules/std/json.sx";
|
||||
#import "modules/fs.sx";
|
||||
#import "modules/std/fs.sx";
|
||||
#import "../domain/platform.sx";
|
||||
#import "../domain/app.sx";
|
||||
#import "../domain/release.sx";
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
// =====================================================================
|
||||
|
||||
#import "modules/std.sx";
|
||||
fs :: #import "modules/fs.sx";
|
||||
fs :: #import "modules/std/fs.sx";
|
||||
hash :: #import "modules/std/hash.sx";
|
||||
|
||||
// Failure classes for a put. `Stage` covers a failed staging write,
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
// =====================================================================
|
||||
|
||||
#import "modules/std.sx";
|
||||
#import "modules/fs.sx";
|
||||
#import "modules/std/fs.sx";
|
||||
#import "modules/std/hash.sx";
|
||||
#import "../domain/platform.sx";
|
||||
#import "../domain/artifact.sx";
|
||||
|
||||
Reference in New Issue
Block a user