Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
timephy committed May 24, 2024
1 parent 8eb7172 commit 86263ba
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 10 deletions.
6 changes: 6 additions & 0 deletions nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@
"^build"
],
"cache": true
},
"nx-release-publish": {
"dependsOn": [
"lint",
"build"
]
}
},
"defaultBase": "main",
Expand Down
4 changes: 2 additions & 2 deletions packages/tui-colors-tw/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"description": "The tui tailwind plugin/config.",
"homepage": "https://github.com/timephy/tui/tree/main/tui-colors-tw#readme",
"scripts": {
"lint": "prettier --check . && eslint .",
"prepublishOnly": "pnpm run lint && publint"
"lint": "prettier --check . && eslint . && publint",
"check:publish": "pnpm run lint && "
},
"author": "",
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 deletions packages/tui-components-svelte/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
"clean": "rm -rf dist/ .svelte-kit/",
"dev": "vite dev",
"build": "vite build && svelte-package",
"prepublishOnly": "pnpm run lint && pnpm run package && publint",
"check:publish": "pnpm run lint && pnpm run build && publint",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "pnpm run check && prettier --check .",
"lint": "pnpm run check && prettier --check . && publint",
"format": "prettier --write ."
},
"files": [
Expand Down
4 changes: 2 additions & 2 deletions packages/tui-components-tw/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"description": "",
"homepage": "https://github.com/timephy/tui/tree/main/tui-components-tw#readme",
"scripts": {
"lint": "prettier --check . && eslint .",
"prepublishOnly": "pnpm lint && publint"
"lint": "prettier --check . && eslint . && publint",
"check:publish": "pnpm lint && publint"
},
"author": "",
"license": "MIT",
Expand Down
6 changes: 3 additions & 3 deletions packages/tui-icons-svelte/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
"description": "The Bootstrap SVG icons converted to be used with Svelte Awesome",
"scripts": {
"clean": "rm -rf dist/ icons/*.ts",
"lint": "prettier ./generate.ts --check",
"lint": "prettier ./generate.ts --check && eslint generate.ts && publint",
"generate": "bun generate.ts",
"build": "tsc",
"prepublishOnly": "pnpm lint && pnpm generate && pnpm build && publint"
"build": "tsc && rm dist/generate.*",
"check:publish": "pnpm lint && pnpm generate && pnpm build && publint"
},
"files": [
"dist"
Expand Down
2 changes: 1 addition & 1 deletion packages/tui-icons-svelte/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,6 @@
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
"skipLibCheck": true /* Skip type checking all .d.ts files. */
},
"include": ["icons"],
"include": ["icons", "generate.ts"],
"exclude": ["dist"]
}

0 comments on commit 86263ba

Please sign in to comment.