Skip to content

Commit dab64aa

Browse files
committed
deploy: 1754837
1 parent 7967f22 commit dab64aa

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

figma.js

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
markers: [".appModel.isReadOnly"],
77
replacements: [
88
{
9-
pattern: /\.appModel\.isReadOnly/g,
9+
pattern: ".appModel.isReadOnly",
1010
replacer: ".appModel.__isReadOnly__"
1111
}
1212
]
@@ -16,11 +16,11 @@
1616
replacements: [
1717
{
1818
pattern: /([A-Za-z_$][A-Za-z0-9_$]*)=\(0,([A-Za-z_$][A-Za-z0-9_$]*\.[A-Za-z_$][A-Za-z0-9_$]*)\)\(\)\|\|([A-Za-z_$][A-Za-z0-9_$]*);if\(!\1\)/,
19-
replacer: "$1=(0,$2)()||$3;debugger;if(false)"
19+
replacer: "$1=(0,$2)()||$3;if(false)"
2020
},
2121
{
2222
pattern: /if\(\(0,([A-Za-z_$][A-Za-z0-9_$]*\.[A-Za-z_$][A-Za-z0-9_$]*)\)\(\)\)return;([A-Za-z_$][A-Za-z0-9_$]*)&&/,
23-
replacer: "if((0,$1)())return;debugger;true&&"
23+
replacer: "if((0,$1)())return;true&&"
2424
}
2525
]
2626
},
@@ -32,6 +32,15 @@
3232
replacer: "FIGMA_PLEASE_STOP"
3333
}
3434
]
35+
},
36+
{
37+
markers: ["ext_init_wdf"],
38+
replacements: [
39+
{
40+
pattern: "ext_init_wdf",
41+
replacer: "__ext_init_wdf__"
42+
}
43+
]
3544
}
3645
];
3746

0 commit comments

Comments
 (0)