Skip to content

Commit cca9e6f

Browse files
committed
Wrong class name for UnsignableCompiler
1 parent b75d6c8 commit cca9e6f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/build/src/unsignable-compiler.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ enum Target {
1414
* A compiler that can produce an executable that is not
1515
* code signable, but faster for dev environments.
1616
*/
17-
class SignableCompiler extends Compiler {
17+
class UnsignableCompiler extends Compiler {
1818

1919
/**
2020
* Compile the executable with the library.
@@ -46,5 +46,5 @@ class SignableCompiler extends Compiler {
4646
};
4747
}
4848

49-
export default SignableCompiler;
49+
export default UnsignableCompiler;
5050
export { Target };

0 commit comments

Comments
 (0)