Skip to content

Commit

Permalink
[fix] version update
Browse files Browse the repository at this point in the history
  • Loading branch information
ibodev1 committed Jan 4, 2024
1 parent 4cbc28d commit e2f6976
Show file tree
Hide file tree
Showing 8 changed files with 1,160 additions and 551 deletions.
208 changes: 181 additions & 27 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,33 +1,187 @@
## Node.js
lib-cov
*.seed
### Node ###
# Logs
logs
*.log
*.csv
*.dat
*.out
*.pid
*.gz
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
.pnpm-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids
logs
results
npm-debug.log
node_modules

## OS X
.DS_Store
.AppleDouble
.LSOverride
Icon
._*
.Spotlight-V100
.Trashes

## Windows
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# Snowpack dependency directory (https://snowpack.dev/)
web_modules/

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional stylelint cache
.stylelintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variable files
.env
.env.development.local
.env.test.local
.env.production.local
.env.local

# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache

# Next.js build output
.next
out

# Nuxt.js build / generate output
.nuxt
dist

# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and not Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# vuepress build output
.vuepress/dist

# vuepress v2.x temp and cache directory
.temp

# Docusaurus cache and generated files
.docusaurus

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/

# TernJS port file
.tern-port

# Stores VSCode versions used for testing VSCode extensions
.vscode-test

# yarn v2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*

### Node Patch ###
# Serverless Webpack directories
.webpack/

# Optional stylelint cache

# SvelteKit build / generate output
.svelte-kit

### VisualStudioCode ###
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
!.vscode/*.code-snippets

# Local History for Visual Studio Code
.history/

# Built Visual Studio Code Extensions
*.vsix

### VisualStudioCode Patch ###
# Ignore all local history of files
.history
.ionide

### Windows ###
# Windows thumbnail cache files
Thumbs.db
Thumbs.db:encryptable
ehthumbs.db
Desktop.ini
ehthumbs_vista.db

# Dump file
*.stackdump

# Folder config file
[Dd]esktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

## Project-specific
.idea/
build/
# Windows Installer files
*.cab
*.msi
*.msix
*.msm
*.msp

# Windows shortcuts
*.lnk

# Custom
dist/
4 changes: 2 additions & 2 deletions dist/main.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* tailwindcss-palette-generator v0.4.5
* Copyright 2023 @ibodev1 <github.com/ibodev1>
* tailwindcss-palette-generator v0.5.0
* Copyright 2024 @ibodev1 <github.com/ibodev1>
*/

declare const _default: {
Expand Down
4 changes: 2 additions & 2 deletions dist/main.esm.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* tailwindcss-palette-generator v0.4.5
* Copyright 2023 @ibodev1 <github.com/ibodev1>
* tailwindcss-palette-generator v0.5.0
* Copyright 2024 @ibodev1 <github.com/ibodev1>
*/

import chroma from 'chroma-js';
Expand Down
4 changes: 2 additions & 2 deletions dist/main.umd.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* tailwindcss-palette-generator v0.4.5
* Copyright 2023 @ibodev1 <github.com/ibodev1>
* tailwindcss-palette-generator v0.5.0
* Copyright 2024 @ibodev1 <github.com/ibodev1>
*/

(function (global, factory) {
Expand Down
5 changes: 0 additions & 5 deletions mod.d.ts

This file was deleted.

48 changes: 26 additions & 22 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tailwindcss-palette-generator",
"version": "0.4.5",
"version": "0.5.0",
"license": "MIT",
"main": "dist/main.min.js",
"module": "dist/main.esm.js",
Expand All @@ -13,8 +13,11 @@
"types": "dist/main.d.ts",
"access": "public"
},
"files": [
"dist"
],
"scripts": {
"build": "cross-env NODE_ENV=production rollup -c rollup.config.ts --configPlugin typescript",
"build": "rimraf dist/ && cross-env NODE_ENV=production rollup -c rollup.config.ts --configPlugin typescript",
"dev": "rollup -c rollup.config.ts --configPlugin typescript -w",
"test": "jest",
"prepublish": "pnpm test && pnpm build",
Expand Down Expand Up @@ -43,28 +46,29 @@
"chroma-js": "^2.4.2"
},
"peerDependencies": {
"tailwindcss": ">=3.0.0 || insiders"
"tailwindcss": ">=3.4.0 || insiders"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-terser": "^0.4.1",
"@rollup/plugin-typescript": "^11.1.1",
"@types/chroma-js": "^2.4.0",
"@types/jest": "^29.5.0",
"@types/node": "^20.1.4",
"babel-jest": "^29.5.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@types/chroma-js": "^2.4.3",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.6",
"babel-jest": "^29.7.0",
"cross-env": "^7.0.3",
"esbuild": "^0.17.14",
"jest": "29.5.0",
"rollup": "^3.20.2",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-esbuild": "^5.0.0",
"rollup-plugin-license": "^3.0.1",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"typescript": "^5.0.2"
"esbuild": "^0.19.11",
"jest": "29.7.0",
"rimraf": "^5.0.5",
"rollup": "^4.9.2",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-esbuild": "^6.1.0",
"rollup-plugin-license": "^3.2.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
}
}
Loading

0 comments on commit e2f6976

Please # to comment.