mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-28 19:34:14 +01:00
fix pipeline caching issue
This commit is contained in:
parent
50db2afb56
commit
a37d7dc3f8
1 changed files with 4 additions and 0 deletions
|
|
@ -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() {
|
||||
|
|
|
|||
Loading…
Reference in a new issue