Skip to content

Commit

Permalink
Fixed import
Browse files Browse the repository at this point in the history
  • Loading branch information
james-pre committed Feb 10, 2024
1 parent b1dbd68 commit cc764ed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions scripts/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ const ctx = await context({
});
build.onEnd(() => {
try {
execSync('npx tsc -p tsconfig-frontend.json --outDir ' + options.out);
execSync('npx tsc -p tsconfig-frontend.json --outDir ' + options.out, { stdio: 'inherit' });
} catch (error) {
console.error(error);
console.error(error.stack);
}
});
},
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export * from '../accounts.js';
export * from '../generic.js';
export * from './endpoints';
export * from './endpoints/index.js';
export { auth } from './auth.js';
export * from './request.js';

0 comments on commit cc764ed

Please sign in to comment.