fix pipeline caching issue

This commit is contained in:
Val Erastov 2022-03-08 19:56:19 -08:00
parent 50db2afb56
commit a37d7dc3f8

View file

@ -5,6 +5,10 @@ export type OCCCommandInterface = OCCCommands;
const pushedModels = new Set();
export function clearImplicitModels() {
pushedModels.clear();
}
export const OCI: OCCCommandInterface = new Proxy({}, {
get: function (target, prop: string, receiver) {
return prop in target ? target[prop] : function() {