Skip to content

Commit

Permalink
Merge pull request #1 from niconiahi/ci/workflow
Browse files Browse the repository at this point in the history
fix: linting runs successfully
  • Loading branch information
niconiahi authored Jan 19, 2024
2 parents 2e851f7 + 505d661 commit a0cdecb
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"@antfu/eslint-config": "^2.6.3",
"@changesets/cli": "^2.27.1",
"eslint": "~8.56.0",
"eslint-plugin-format": "^0.1.0"
"eslint-plugin-format": "^0.1.0",
"typescript": "^5.3.3"
}
}
10 changes: 5 additions & 5 deletions packages/button/tsup.config.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { defineConfig } from 'tsup';
import { defineConfig } from "tsup"

export default defineConfig({
entry: ['./src/index.ts'],
entry: ["./src/index.ts"],
clean: true,
format: ['esm', 'cjs'],
format: ["esm", "cjs"],
dts: true,
outDir: './dist',
});
outDir: "./dist",
})
3 changes: 3 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit a0cdecb

Please sign in to comment.