Skip to content

Commit e2f6976

Browse files
committed
[fix] version update
1 parent 4cbc28d commit e2f6976

File tree

8 files changed

+1160
-551
lines changed

8 files changed

+1160
-551
lines changed

.gitignore

Lines changed: 181 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,187 @@
1-
## Node.js
2-
lib-cov
3-
*.seed
1+
### Node ###
2+
# Logs
3+
logs
44
*.log
5-
*.csv
6-
*.dat
7-
*.out
8-
*.pid
9-
*.gz
5+
npm-debug.log*
6+
yarn-debug.log*
7+
yarn-error.log*
8+
lerna-debug.log*
9+
.pnpm-debug.log*
10+
11+
# Diagnostic reports (https://nodejs.org/api/report.html)
12+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
13+
14+
# Runtime data
1015
pids
11-
logs
12-
results
13-
npm-debug.log
14-
node_modules
15-
16-
## OS X
17-
.DS_Store
18-
.AppleDouble
19-
.LSOverride
20-
Icon
21-
._*
22-
.Spotlight-V100
23-
.Trashes
24-
25-
## Windows
16+
*.pid
17+
*.seed
18+
*.pid.lock
19+
20+
# Directory for instrumented libs generated by jscoverage/JSCover
21+
lib-cov
22+
23+
# Coverage directory used by tools like istanbul
24+
coverage
25+
*.lcov
26+
27+
# nyc test coverage
28+
.nyc_output
29+
30+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
31+
.grunt
32+
33+
# Bower dependency directory (https://bower.io/)
34+
bower_components
35+
36+
# node-waf configuration
37+
.lock-wscript
38+
39+
# Compiled binary addons (https://nodejs.org/api/addons.html)
40+
build/Release
41+
42+
# Dependency directories
43+
node_modules/
44+
jspm_packages/
45+
46+
# Snowpack dependency directory (https://snowpack.dev/)
47+
web_modules/
48+
49+
# TypeScript cache
50+
*.tsbuildinfo
51+
52+
# Optional npm cache directory
53+
.npm
54+
55+
# Optional eslint cache
56+
.eslintcache
57+
58+
# Optional stylelint cache
59+
.stylelintcache
60+
61+
# Microbundle cache
62+
.rpt2_cache/
63+
.rts2_cache_cjs/
64+
.rts2_cache_es/
65+
.rts2_cache_umd/
66+
67+
# Optional REPL history
68+
.node_repl_history
69+
70+
# Output of 'npm pack'
71+
*.tgz
72+
73+
# Yarn Integrity file
74+
.yarn-integrity
75+
76+
# dotenv environment variable files
77+
.env
78+
.env.development.local
79+
.env.test.local
80+
.env.production.local
81+
.env.local
82+
83+
# parcel-bundler cache (https://parceljs.org/)
84+
.cache
85+
.parcel-cache
86+
87+
# Next.js build output
88+
.next
89+
out
90+
91+
# Nuxt.js build / generate output
92+
.nuxt
93+
dist
94+
95+
# Gatsby files
96+
.cache/
97+
# Comment in the public line in if your project uses Gatsby and not Next.js
98+
# https://nextjs.org/blog/next-9-1#public-directory-support
99+
# public
100+
101+
# vuepress build output
102+
.vuepress/dist
103+
104+
# vuepress v2.x temp and cache directory
105+
.temp
106+
107+
# Docusaurus cache and generated files
108+
.docusaurus
109+
110+
# Serverless directories
111+
.serverless/
112+
113+
# FuseBox cache
114+
.fusebox/
115+
116+
# DynamoDB Local files
117+
.dynamodb/
118+
119+
# TernJS port file
120+
.tern-port
121+
122+
# Stores VSCode versions used for testing VSCode extensions
123+
.vscode-test
124+
125+
# yarn v2
126+
.yarn/cache
127+
.yarn/unplugged
128+
.yarn/build-state.yml
129+
.yarn/install-state.gz
130+
.pnp.*
131+
132+
### Node Patch ###
133+
# Serverless Webpack directories
134+
.webpack/
135+
136+
# Optional stylelint cache
137+
138+
# SvelteKit build / generate output
139+
.svelte-kit
140+
141+
### VisualStudioCode ###
142+
.vscode/*
143+
!.vscode/settings.json
144+
!.vscode/tasks.json
145+
!.vscode/launch.json
146+
!.vscode/extensions.json
147+
!.vscode/*.code-snippets
148+
149+
# Local History for Visual Studio Code
150+
.history/
151+
152+
# Built Visual Studio Code Extensions
153+
*.vsix
154+
155+
### VisualStudioCode Patch ###
156+
# Ignore all local history of files
157+
.history
158+
.ionide
159+
160+
### Windows ###
161+
# Windows thumbnail cache files
26162
Thumbs.db
163+
Thumbs.db:encryptable
27164
ehthumbs.db
28-
Desktop.ini
165+
ehthumbs_vista.db
166+
167+
# Dump file
168+
*.stackdump
169+
170+
# Folder config file
171+
[Dd]esktop.ini
172+
173+
# Recycle Bin used on file shares
29174
$RECYCLE.BIN/
30175

31-
## Project-specific
32-
.idea/
33-
build/
176+
# Windows Installer files
177+
*.cab
178+
*.msi
179+
*.msix
180+
*.msm
181+
*.msp
182+
183+
# Windows shortcuts
184+
*.lnk
185+
186+
# Custom
187+
dist/

dist/main.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* tailwindcss-palette-generator v0.4.5
3-
* Copyright 2023 @ibodev1 <github.com/ibodev1>
2+
* tailwindcss-palette-generator v0.5.0
3+
* Copyright 2024 @ibodev1 <github.com/ibodev1>
44
*/
55

66
declare const _default: {

dist/main.esm.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* tailwindcss-palette-generator v0.4.5
3-
* Copyright 2023 @ibodev1 <github.com/ibodev1>
2+
* tailwindcss-palette-generator v0.5.0
3+
* Copyright 2024 @ibodev1 <github.com/ibodev1>
44
*/
55

66
import chroma from 'chroma-js';

dist/main.umd.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* tailwindcss-palette-generator v0.4.5
3-
* Copyright 2023 @ibodev1 <github.com/ibodev1>
2+
* tailwindcss-palette-generator v0.5.0
3+
* Copyright 2024 @ibodev1 <github.com/ibodev1>
44
*/
55

66
(function (global, factory) {

mod.d.ts

Lines changed: 0 additions & 5 deletions
This file was deleted.

package.json

Lines changed: 26 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tailwindcss-palette-generator",
3-
"version": "0.4.5",
3+
"version": "0.5.0",
44
"license": "MIT",
55
"main": "dist/main.min.js",
66
"module": "dist/main.esm.js",
@@ -13,8 +13,11 @@
1313
"types": "dist/main.d.ts",
1414
"access": "public"
1515
},
16+
"files": [
17+
"dist"
18+
],
1619
"scripts": {
17-
"build": "cross-env NODE_ENV=production rollup -c rollup.config.ts --configPlugin typescript",
20+
"build": "rimraf dist/ && cross-env NODE_ENV=production rollup -c rollup.config.ts --configPlugin typescript",
1821
"dev": "rollup -c rollup.config.ts --configPlugin typescript -w",
1922
"test": "jest",
2023
"prepublish": "pnpm test && pnpm build",
@@ -43,28 +46,29 @@
4346
"chroma-js": "^2.4.2"
4447
},
4548
"peerDependencies": {
46-
"tailwindcss": ">=3.0.0 || insiders"
49+
"tailwindcss": ">=3.4.0 || insiders"
4750
},
4851
"devDependencies": {
49-
"@rollup/plugin-commonjs": "^25.0.0",
50-
"@rollup/plugin-json": "^6.0.0",
51-
"@rollup/plugin-node-resolve": "^15.0.2",
52-
"@rollup/plugin-terser": "^0.4.1",
53-
"@rollup/plugin-typescript": "^11.1.1",
54-
"@types/chroma-js": "^2.4.0",
55-
"@types/jest": "^29.5.0",
56-
"@types/node": "^20.1.4",
57-
"babel-jest": "^29.5.0",
52+
"@rollup/plugin-commonjs": "^25.0.7",
53+
"@rollup/plugin-json": "^6.1.0",
54+
"@rollup/plugin-node-resolve": "^15.2.3",
55+
"@rollup/plugin-terser": "^0.4.4",
56+
"@rollup/plugin-typescript": "^11.1.5",
57+
"@types/chroma-js": "^2.4.3",
58+
"@types/jest": "^29.5.11",
59+
"@types/node": "^20.10.6",
60+
"babel-jest": "^29.7.0",
5861
"cross-env": "^7.0.3",
59-
"esbuild": "^0.17.14",
60-
"jest": "29.5.0",
61-
"rollup": "^3.20.2",
62-
"rollup-plugin-dts": "^5.3.0",
63-
"rollup-plugin-esbuild": "^5.0.0",
64-
"rollup-plugin-license": "^3.0.1",
65-
"ts-jest": "^29.0.5",
66-
"ts-node": "^10.9.1",
67-
"tslib": "^2.5.0",
68-
"typescript": "^5.0.2"
62+
"esbuild": "^0.19.11",
63+
"jest": "29.7.0",
64+
"rimraf": "^5.0.5",
65+
"rollup": "^4.9.2",
66+
"rollup-plugin-dts": "^6.1.0",
67+
"rollup-plugin-esbuild": "^6.1.0",
68+
"rollup-plugin-license": "^3.2.0",
69+
"ts-jest": "^29.1.1",
70+
"ts-node": "^10.9.2",
71+
"tslib": "^2.6.2",
72+
"typescript": "^5.3.3"
6973
}
7074
}

0 commit comments

Comments
 (0)