Skip to content

Commit

Permalink
remove yarn build warning about importing/exporting GrumpkinCrs
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasxia01 committed Sep 12, 2024
1 parent 031a656 commit b29f9cc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion barretenberg/ts/src/crs/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export { Crs, GrumpkinCrs } from './node/index.js';
export { Crs } from './node/index.js';
2 changes: 1 addition & 1 deletion barretenberg/ts/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export { Crs, GrumpkinCrs } from './crs/index.js';
export { Crs } from './crs/index.js';
export { Barretenberg, BarretenbergSync } from './barretenberg/index.js';
export { RawBuffer, Fr } from './types/index.js';
3 changes: 2 additions & 1 deletion barretenberg/ts/src/main.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/usr/bin/env node
import { Crs, GrumpkinCrs, Barretenberg, RawBuffer } from './index.js';
import { Crs, Barretenberg, RawBuffer } from './index.js';
import { GrumpkinCrs } from './crs/node/index.js';
import createDebug from 'debug';
import { readFileSync, writeFileSync } from 'fs';
import { gunzipSync } from 'zlib';
Expand Down

0 comments on commit b29f9cc

Please sign in to comment.