- Add Foundry project configuration (foundry.toml, foundry.lock) - Add Solidity contracts (TokenFactory138, BridgeVault138, ComplianceRegistry, etc.) - Add API definitions (OpenAPI, GraphQL, gRPC, AsyncAPI) - Add comprehensive test suite (unit, integration, fuzz, invariants) - Add API services (REST, GraphQL, orchestrator, packet service) - Add documentation (ISO20022 mapping, runbooks, adapter guides) - Add development tools (RBC tool, Swagger UI, mock server) - Update OpenZeppelin submodules to v5.0.0
20 lines
392 B
JavaScript
20 lines
392 B
JavaScript
// pnpm hooks for workspace management
|
|
function readPackage(pkg, context) {
|
|
// Ensure workspace protocol is used for internal packages
|
|
if (pkg.dependencies) {
|
|
Object.keys(pkg.dependencies).forEach(dep => {
|
|
if (dep.startsWith('@emoney/')) {
|
|
pkg.dependencies[dep] = 'workspace:*';
|
|
}
|
|
});
|
|
}
|
|
return pkg;
|
|
}
|
|
|
|
module.exports = {
|
|
hooks: {
|
|
readPackage
|
|
}
|
|
};
|
|
|