Skip to content

Commit fea7615

Browse files
committed
chore: debug release
1 parent 3860982 commit fea7615

File tree

7 files changed

+25
-43
lines changed

7 files changed

+25
-43
lines changed

.github/workflows/release.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,22 @@ jobs:
3030

3131
- uses: ./.github/setup
3232

33+
- name: Setup npm
34+
run: |
35+
# Create or update .npmrc
36+
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc
37+
echo "@diceui:registry=https://registry.npmjs.org/" >> ~/.npmrc
38+
39+
# Debug info (without exposing token)
40+
echo "--- NPM Config ---"
41+
npm config list
42+
echo "--- NPM User ---"
43+
npm whoami || echo "Not authenticated"
44+
echo "--- Registry ---"
45+
npm config get registry
46+
env:
47+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
48+
3349
- name: Format and lint
3450
run: pnpm lint:fix
3551

docs/tailwind.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import type { Config } from "tailwindcss";
21
import { createPreset } from "fumadocs-ui/tailwind-plugin";
2+
import type { Config } from "tailwindcss";
33
import { fontFamily } from "tailwindcss/defaultTheme";
44

55
export default {

packages/checkbox-group/package.json

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,7 @@
55
"publishConfig": {
66
"access": "public"
77
},
8-
"keywords": [
9-
"checkbox-group",
10-
"checkbox",
11-
"react-checkbox-group"
12-
],
8+
"keywords": ["checkbox-group", "checkbox", "react-checkbox-group"],
139
"author": "Sadman Sakib",
1410
"license": "MIT",
1511
"repository": {
@@ -27,11 +23,7 @@
2723
"require": "./dist/index.cjs"
2824
}
2925
},
30-
"files": [
31-
"dist",
32-
"package.json",
33-
"README.md"
34-
],
26+
"files": ["dist", "package.json", "README.md"],
3527
"scripts": {
3628
"dev": "tsup --watch",
3729
"build": "tsup --clean",

packages/combobox/package.json

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,7 @@
55
"publishConfig": {
66
"access": "public"
77
},
8-
"keywords": [
9-
"combobox",
10-
"autocomplete",
11-
"react-combobox",
12-
"multi-select"
13-
],
8+
"keywords": ["combobox", "autocomplete", "react-combobox", "multi-select"],
149
"author": "Sadman Sakib",
1510
"license": "MIT",
1611
"repository": {
@@ -28,11 +23,7 @@
2823
"require": "./dist/index.cjs"
2924
}
3025
},
31-
"files": [
32-
"dist",
33-
"package.json",
34-
"README.md"
35-
],
26+
"files": ["dist", "package.json", "README.md"],
3627
"scripts": {
3728
"dev": "tsup --watch",
3829
"build": "tsup --clean",

packages/mention/package.json

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,7 @@
2828
"require": "./dist/index.cjs"
2929
}
3030
},
31-
"files": [
32-
"dist",
33-
"package.json",
34-
"README.md"
35-
],
31+
"files": ["dist", "package.json", "README.md"],
3632
"scripts": {
3733
"dev": "tsup --watch",
3834
"build": "tsup --clean",

packages/shared/package.json

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,7 @@
1414
"require": "./dist/index.cjs"
1515
}
1616
},
17-
"files": [
18-
"dist",
19-
"package.json",
20-
"README.md"
21-
],
17+
"files": ["dist", "package.json", "README.md"],
2218
"scripts": {
2319
"dev": "tsup --watch",
2420
"build": "tsup --clean",

packages/tags-input/package.json

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,7 @@
55
"publishConfig": {
66
"access": "public"
77
},
8-
"keywords": [
9-
"tags-input",
10-
"tag-input",
11-
"react-tags-input",
12-
"tags"
13-
],
8+
"keywords": ["tags-input", "tag-input", "react-tags-input", "tags"],
149
"author": "Sadman Sakib",
1510
"license": "MIT",
1611
"repository": {
@@ -28,11 +23,7 @@
2823
"require": "./dist/index.cjs"
2924
}
3025
},
31-
"files": [
32-
"dist",
33-
"package.json",
34-
"README.md"
35-
],
26+
"files": ["dist", "package.json", "README.md"],
3627
"scripts": {
3728
"dev": "tsup --watch",
3829
"build": "tsup --clean",

0 commit comments

Comments
 (0)