![PyPI Now Supports iOS and Android Wheels for Mobile Python Development](https://cdn.sanity.io/images/cgdhsj6q/production/96416c872705517a6a65ad9646ce3e7caef623a0-1024x1024.webp?w=400&fit=max&auto=format)
Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
@lage-run/target-graph
Advanced tools
This package is concerned about the target graph. The target is a unit of work that gets spawned in a child process eventually be a scheduler + target runner. The main focus of this package are:
TargetGraphBuilder
that will take in PackageInfos
object with some task (dependency) configuration and builds a direct-acyclic graph of the targets.const rootDir = getWorkspaceRoot(process.cwd());
const packageInfos = getPackageInfos(rootDir);
const builder = new TargetGraphBuilder(rootDir, packageInfos);
const tasks = ["build", "test"];
const packages = ["package-a", "package-b"];
const targetGraph = builder.buildTargetGraph(tasks, packages);
The resultant targetGraph
will have a signature of this shape:
interface TargetGraph {
targets: Map<string, Target>;
dependencies: [string, string][];
}
Target
This is merely an interface that contains enough information to let the runner & scheduler know what to run. The "how" of how to run a target resides in the scheduler and a separate runner implementation.
FAQs
Target for Lage
The npm package @lage-run/target-graph receives a total of 1,412 weekly downloads. As such, @lage-run/target-graph popularity was classified as popular.
We found that @lage-run/target-graph demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.