Skip to content

Commit

Permalink
fix(exports): update exports in indices
Browse files Browse the repository at this point in the history
  • Loading branch information
atticusofsparta committed Feb 14, 2024
1 parent dba7313 commit f794437
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ jobs:
cache: 'yarn'

- name: Install dependencies
run: yarn --frozen-lockfile
run: yarn --immutable --immutable-cache

- run: yarn ${{ matrix.command }}
2 changes: 2 additions & 0 deletions src/common/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,5 @@
*/
export * from './ArIO.js';
export * from './ContractStateProviders/index.js';
export * from './error.js';
export * from './logger.js';
1 change: 1 addition & 0 deletions src/node/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,4 @@
export * from '../types.js';
export * from '../common/index.js';
export * from '../constants.js';
export * from '../utils/index.js';
1 change: 1 addition & 0 deletions src/web/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,4 @@
export * from '../types.js';
export * from '../common/index.js';
export * from '../constants.js';
export * from '../utils/index.js';
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"compilerOptions": {
"target": "esnext",
"target": "es2021",
"allowSyntheticDefaultImports": true,
"lib": ["esnext", "dom"],
"outDir": "./lib/esm",
Expand Down

0 comments on commit f794437

Please sign in to comment.