@temporalio/proto
Advanced tools
Comparing version 1.0.1 to 1.1.0
{ | ||
"name": "@temporalio/proto", | ||
"version": "1.0.1", | ||
"version": "1.1.0", | ||
"description": "Temporal.io SDK compiled protobuf definitions", | ||
@@ -34,3 +34,3 @@ "main": "protos/index.js", | ||
}, | ||
"gitHead": "a1dae539e72b6b088b400998d7bef482e8ed52f1" | ||
"gitHead": "132f23a47a93fecf3f39836b31f08ea837b30320" | ||
} |
@@ -0,3 +1,9 @@ | ||
// Workaround an issue that prevents protobufjs from loading 'long' in Yarn 3 PnP | ||
// https://github.com/protobufjs/protobuf.js/issues/1745#issuecomment-1200319399 | ||
const $protobuf = require('protobufjs/light'); | ||
$protobuf.util.Long = require('long'); | ||
$protobuf.configure(); | ||
const { patchProtobufRoot } = require('../lib/patch-protobuf-root'); | ||
const unpatchedRoot = require('./json-module'); | ||
module.exports = patchProtobufRoot(unpatchedRoot); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2397031
40700