Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
ibodev1 committed Nov 16, 2024
2 parents 6693b1d + 54e8067 commit e877828
Show file tree
Hide file tree
Showing 12 changed files with 919 additions and 938 deletions.
8 changes: 8 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
{
"eslint.enable": false,
"prettier.enable": false,
"editor.defaultFormatter": "biomejs.biome",
"editor.codeActionsOnSave": {
"quickfix.biome": "explicit",
"source.organizeImports.biome": "explicit"
},
"[typescript]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[json]": {
"editor.defaultFormatter": "biomejs.biome"
}
}
2 changes: 1 addition & 1 deletion biome.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/1.5.3/schema.json",
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
"files": {
"ignore": ["node_modules", "dist"]
},
Expand Down
31 changes: 17 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tailwindcss-palette-generator",
"version": "0.7.0",
"version": "0.10.0",
"license": "MIT",
"directories": {
"lib": "dist/main.js",
Expand All @@ -13,15 +13,18 @@
"main": "./dist/main.js",
"module": "./dist/main.mjs",
"types": "./dist/main.d.ts",
"files": ["dist", "src"],
"files": ["dist"],
"scripts": {
"build": "rimraf dist/ && cross-env NODE_ENV=production tsup src/main.ts",
"build": "npm run clean && tsup src/main.ts",
"dev": "tsup --watch",
"test": "jest",
"prepublish": "npm run test && npm run build",
"postversion": "npm publish --access public",
"check": "npx @biomejs/biome check .",
"check:fix": "npx @biomejs/biome check --write ."
"clean": "rimraf dist/",
"check": "biome check .",
"check:fix": "biome check --write .",
"format": "biome format --write .",
"lint": "biome lint --write ."
},
"engines": {
"node": ">=18"
Expand All @@ -38,24 +41,24 @@
"author": "@ibodev1 <github.com/ibodev1>",
"description": "Color palette generation library for TailwindCSS.",
"dependencies": {
"chroma-js": "^2.4.2"
"chroma-js": "^3.1.2"
},
"peerDependencies": {
"tailwindcss": ">=3.4.0 || insiders"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@biomejs/biome": "^1.9.4",
"@swc/core": "^1.9.2",
"@types/chroma-js": "^2.4.4",
"@types/jest": "^29.5.12",
"@types/node": "^22.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"babel-jest": "^29.7.0",
"cross-env": "^7.0.3",
"jest": "29.7.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsup": "^8.2.3",
"typescript": "^5.5.4"
"tsup": "^8.3.5",
"typescript": "^5.6.3"
},
"packageManager": "pnpm@9.6.0"
"packageManager": "pnpm@9.13.2"
}
Loading

0 comments on commit e877828

Please sign in to comment.