chore: remove unused package
This commit is contained in:
parent
13b1f086f3
commit
fe1cdc3830
8 changed files with 0 additions and 61 deletions
|
@ -25,7 +25,6 @@ A monorepo ([Turborepo](https://turbo.build)) of my websites for blogging, portf
|
|||
- `blog` - https://blog.developomp.com
|
||||
- `packages` - packages prefixed with `@developomp-site/`
|
||||
- `blog-content` - Contents for the blog
|
||||
- `components-react` - ReactJS components
|
||||
- `eslint-config` - ESLint configuration files
|
||||
- `tailwind-config` -tailwindCSS configuration files
|
||||
- `theme` - universal developomp theme
|
||||
|
|
|
@ -1,4 +0,0 @@
|
|||
module.exports = {
|
||||
root: true,
|
||||
extends: ["developomp-site"],
|
||||
};
|
|
@ -1,35 +0,0 @@
|
|||
{
|
||||
"name": "@developomp-site/components-react",
|
||||
"version": "0.0.0",
|
||||
"main": "./dist/index.js",
|
||||
"module": "./dist/index.mjs",
|
||||
"types": "./dist/index.d.ts",
|
||||
"sideEffects": false,
|
||||
"license": "MIT",
|
||||
"exports": {
|
||||
".": "./dist",
|
||||
"./styles.css": "./dist/styles.css"
|
||||
},
|
||||
"files": [
|
||||
"dist/**"
|
||||
],
|
||||
"scripts": {
|
||||
"build": "tsup src/index.tsx --format esm,cjs --dts --external react && tailwindcss -i ./src/styles.css -o ./dist/styles.css",
|
||||
"dev": "concurrently \"tsup src/index.tsx --format esm,cjs --dts --external react --watch\" \"tailwindcss -i ./src/styles.css -o ./dist/styles.css --watch\"",
|
||||
"lint": "TIMING=1 eslint \"src/**/*.ts*\"",
|
||||
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@developomp-site/eslint-config": "workspace:*",
|
||||
"@developomp-site/tailwind-config": "workspace:*",
|
||||
"@developomp-site/tsconfig": "workspace:*",
|
||||
"@types/react": "^18.0.26",
|
||||
"@types/react-dom": "^18.0.9",
|
||||
"concurrently": "^7.6.0",
|
||||
"eslint": "^8.29.0",
|
||||
"react": "^18.2.0",
|
||||
"tailwindcss": "^3.2.4",
|
||||
"tsup": "^5.12.9",
|
||||
"typescript": "^4.9.4"
|
||||
}
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
import type { ReactNode } from "react"
|
||||
|
||||
export interface ButtonProps {
|
||||
children: ReactNode
|
||||
}
|
||||
|
||||
export function Button(props: ButtonProps) {
|
||||
return <button>{props.children}</button>
|
||||
}
|
|
@ -1 +0,0 @@
|
|||
export { Button, type ButtonProps } from "./Button"
|
|
@ -1,3 +0,0 @@
|
|||
@tailwind base;
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
|
@ -1,3 +0,0 @@
|
|||
const config = require("@developomp-site/tailwind-config/tailwind.config.js")
|
||||
|
||||
module.exports = config
|
|
@ -1,5 +0,0 @@
|
|||
{
|
||||
"extends": "@developomp-site/tsconfig/react-library.json",
|
||||
"include": ["."],
|
||||
"exclude": ["dist", "build", "node_modules"]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue