Skip to content

Commit

Permalink
🚧
Browse files Browse the repository at this point in the history
  • Loading branch information
cruzdanilo committed Oct 15, 2024
1 parent 63ce662 commit a5b0fec
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,9 @@ jobs:
if: always()
with:
token: ${{ secrets.CODECOV_TOKEN }}

- uses: actions/upload-artifact@v4
if: always()
with:
name: dist
path: dist
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"repository": "github:exactly/lib",
"scripts": {
"prepare": "pnpm run --aggregate-output /prepare:/",
"prepare:build": "pnpm build",
"prepare:build": "ls -lahR && tsup",
"prepare:test": "wagmi generate",
"build": "tsup",
"test": "pnpm run --aggregate-output /test:/",
Expand Down
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"module": "ESNext",
"moduleDetection": "force",
"moduleResolution": "Bundler",
"forceConsistentCasingInFileNames": true,
"noUncheckedIndexedAccess": true,
"verbatimModuleSyntax": true,
"resolveJsonModule": true,
Expand Down
2 changes: 1 addition & 1 deletion tsup.config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ export default defineConfig({
cjsInterop: true,
sourcemap: true,
clean: true,
dts: true,
dts: { resolve: true },
});

0 comments on commit a5b0fec

Please sign in to comment.