Skip to content

Commit

Permalink
init prev vi
Browse files Browse the repository at this point in the history
  • Loading branch information
benemmaofficial committed Oct 7, 2024
1 parent 638a747 commit 4e12746
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ jobs:
- name: Install Dependencies
run: pnpm install --frozen-lockfile

- name: TypeScript Version
run: npx tsc --version

- name: TypeScript Config
run: cat tsconfig.json

- name: Build Packages
run: pnpm run build

Expand Down
7 changes: 5 additions & 2 deletions packages/core/kit/button/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@
"dist/**"
],
"scripts": {
"build": "tsup"
"build": "tsup src/index.ts --format cjs,esm --dts",
"dev": "tsup src/index.ts --format cjs,esm --watch --dts",
"lint": "eslint \"src/**/*.ts*\"",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
},
"devDependencies": {
"@inspatial/eslint-config": "workspace:*",
Expand All @@ -27,4 +30,4 @@
"publishConfig": {
"access": "public"
}
}
}

0 comments on commit 4e12746

Please sign in to comment.