Skip to content

Commit

Permalink
v4.0.0-alpha.4
Browse files Browse the repository at this point in the history
  • Loading branch information
crutchcorn committed Dec 17, 2024
1 parent 90589c3 commit bb10d75
Show file tree
Hide file tree
Showing 14 changed files with 67 additions and 67 deletions.
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"version": "4.0.0-alpha.3",
"version": "4.0.0-alpha.4",
"npmClient": "pnpm"
}
14 changes: 7 additions & 7 deletions packages/node-vibrant/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-vibrant",
"version": "4.0.0-alpha.3",
"version": "4.0.0-alpha.4",
"description": "Extract prominent colors from an image. Supports both node and browser environment.",
"type": "module",
"types": "dist/esm/throw.d.ts",
Expand Down Expand Up @@ -56,15 +56,15 @@
],
"dependencies": {
"@types/node": "^18.15.3",
"@vibrant/core": "^4.0.0-alpha.3",
"@vibrant/generator-default": "^4.0.0-alpha.3",
"@vibrant/image-browser": "^4.0.0-alpha.3",
"@vibrant/image-node": "^4.0.0-alpha.3",
"@vibrant/quantizer-mmcq": "^4.0.0-alpha.3"
"@vibrant/core": "^4.0.0-alpha.4",
"@vibrant/generator-default": "^4.0.0-alpha.4",
"@vibrant/image-browser": "^4.0.0-alpha.4",
"@vibrant/image-node": "^4.0.0-alpha.4",
"@vibrant/quantizer-mmcq": "^4.0.0-alpha.4"
},
"devDependencies": {
"@tanstack/config": "^0.14.2",
"@vibrant/color": "^4.0.0-alpha.3",
"@vibrant/color": "^4.0.0-alpha.4",
"@vitest/browser": "^2.1.8",
"playwright": "^1.49.1",
"typescript": "^4.5.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/vibrant-color/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vibrant/color",
"version": "4.0.0-alpha.3",
"version": "4.0.0-alpha.4",
"description": "Color utilities for vibrant",
"scripts": {
"build": "vite build",
Expand Down
14 changes: 7 additions & 7 deletions packages/vibrant-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vibrant/core",
"version": "4.0.0-alpha.3",
"version": "4.0.0-alpha.4",
"description": "Core vibrant classes",
"scripts": {
"test:lib": "vitest run",
Expand Down Expand Up @@ -40,12 +40,12 @@
"homepage": "https://github.com/akfish/node-vibrant",
"license": "MIT",
"dependencies": {
"@vibrant/color": "^4.0.0-alpha.3",
"@vibrant/generator": "^4.0.0-alpha.3",
"@vibrant/image": "^4.0.0-alpha.3",
"@vibrant/quantizer": "^4.0.0-alpha.3",
"@vibrant/types": "^4.0.0-alpha.3",
"@vibrant/worker": "^4.0.0-alpha.3"
"@vibrant/color": "^4.0.0-alpha.4",
"@vibrant/generator": "^4.0.0-alpha.4",
"@vibrant/image": "^4.0.0-alpha.4",
"@vibrant/quantizer": "^4.0.0-alpha.4",
"@vibrant/types": "^4.0.0-alpha.4",
"@vibrant/worker": "^4.0.0-alpha.4"
},
"devDependencies": {
"@tanstack/config": "^0.14.2",
Expand Down
6 changes: 3 additions & 3 deletions packages/vibrant-generator-default/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vibrant/generator-default",
"version": "4.0.0-alpha.3",
"version": "4.0.0-alpha.4",
"description": "Default generator that generates the original vibrant palette",
"scripts": {
"build": "vite build",
Expand Down Expand Up @@ -39,8 +39,8 @@
"license": "MIT",
"dependencies": {
"@tanstack/config": "^0.14.2",
"@vibrant/color": "^4.0.0-alpha.3",
"@vibrant/generator": "^4.0.0-alpha.3",
"@vibrant/color": "^4.0.0-alpha.4",
"@vibrant/generator": "^4.0.0-alpha.4",
"vite": "^6.0.3"
},
"devDependencies": {
Expand Down
6 changes: 3 additions & 3 deletions packages/vibrant-generator/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vibrant/generator",
"version": "4.0.0-alpha.3",
"version": "4.0.0-alpha.4",
"description": "Helpers and typings for writing a vibrant generator",
"scripts": {
"build": "vite build",
Expand Down Expand Up @@ -38,8 +38,8 @@
"homepage": "https://github.com/akfish/node-vibrant",
"license": "MIT",
"dependencies": {
"@vibrant/color": "^4.0.0-alpha.3",
"@vibrant/types": "^4.0.0-alpha.3"
"@vibrant/color": "^4.0.0-alpha.4",
"@vibrant/types": "^4.0.0-alpha.4"
},
"devDependencies": {
"@tanstack/config": "^0.14.2",
Expand Down
4 changes: 2 additions & 2 deletions packages/vibrant-image-browser/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vibrant/image-browser",
"version": "4.0.0-alpha.3",
"version": "4.0.0-alpha.4",
"description": "Browser vibrant ImageClass implementation",
"scripts": {
"build": "vite build",
Expand Down Expand Up @@ -40,7 +40,7 @@
"homepage": "https://github.com/akfish/node-vibrant",
"license": "MIT",
"dependencies": {
"@vibrant/image": "^4.0.0-alpha.3"
"@vibrant/image": "^4.0.0-alpha.4"
},
"devDependencies": {
"@tanstack/config": "^0.14.2",
Expand Down
4 changes: 2 additions & 2 deletions packages/vibrant-image-node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vibrant/image-node",
"version": "4.0.0-alpha.3",
"version": "4.0.0-alpha.4",
"description": "Node.js vibrant ImageClass implementation",
"scripts": {
"build": "vite build",
Expand Down Expand Up @@ -41,7 +41,7 @@
"@jimp/custom": "^0.16.1",
"@jimp/plugin-resize": "^0.16.1",
"@jimp/types": "^0.16.1",
"@vibrant/image": "^4.0.0-alpha.3"
"@vibrant/image": "^4.0.0-alpha.4"
},
"devDependencies": {
"@tanstack/config": "^0.14.2",
Expand Down
6 changes: 3 additions & 3 deletions packages/vibrant-image/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vibrant/image",
"version": "4.0.0-alpha.3",
"version": "4.0.0-alpha.4",
"description": "Helpers and typings for writing a vibrant ImageClass",
"scripts": {
"build": "vite build",
Expand Down Expand Up @@ -38,8 +38,8 @@
"homepage": "https://github.com/akfish/node-vibrant",
"license": "MIT",
"dependencies": {
"@vibrant/color": "^4.0.0-alpha.3",
"@vibrant/types": "^4.0.0-alpha.3"
"@vibrant/color": "^4.0.0-alpha.4",
"@vibrant/types": "^4.0.0-alpha.4"
},
"devDependencies": {
"@tanstack/config": "^0.14.2",
Expand Down
8 changes: 4 additions & 4 deletions packages/vibrant-quantizer-mmcq/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vibrant/quantizer-mmcq",
"version": "4.0.0-alpha.3",
"version": "4.0.0-alpha.4",
"description": "MMCQ quantzier for vibrant",
"scripts": {
"build": "vite build",
Expand Down Expand Up @@ -38,9 +38,9 @@
"homepage": "https://github.com/akfish/node-vibrant",
"license": "MIT",
"dependencies": {
"@vibrant/color": "^4.0.0-alpha.3",
"@vibrant/image": "^4.0.0-alpha.3",
"@vibrant/quantizer": "^4.0.0-alpha.3"
"@vibrant/color": "^4.0.0-alpha.4",
"@vibrant/image": "^4.0.0-alpha.4",
"@vibrant/quantizer": "^4.0.0-alpha.4"
},
"devDependencies": {
"@tanstack/config": "^0.14.2",
Expand Down
8 changes: 4 additions & 4 deletions packages/vibrant-quantizer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vibrant/quantizer",
"version": "4.0.0-alpha.3",
"version": "4.0.0-alpha.4",
"description": "Helper and typings for writing a vibrant quantizer",
"scripts": {
"build": "vite build",
Expand Down Expand Up @@ -38,9 +38,9 @@
"homepage": "https://github.com/akfish/node-vibrant",
"license": "MIT",
"dependencies": {
"@vibrant/color": "^4.0.0-alpha.3",
"@vibrant/image": "^4.0.0-alpha.3",
"@vibrant/types": "^4.0.0-alpha.3"
"@vibrant/color": "^4.0.0-alpha.4",
"@vibrant/image": "^4.0.0-alpha.4",
"@vibrant/types": "^4.0.0-alpha.4"
},
"devDependencies": {
"@tanstack/config": "^0.14.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/vibrant-types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vibrant/types",
"version": "4.0.0-alpha.3",
"version": "4.0.0-alpha.4",
"description": "Common typings for vibrant",
"scripts": {
"build": "vite build",
Expand Down
4 changes: 2 additions & 2 deletions packages/vibrant-worker/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vibrant/worker",
"version": "4.0.0-alpha.3",
"version": "4.0.0-alpha.4",
"description": "Web worker utilities",
"scripts": {
"build": "vite build",
Expand Down Expand Up @@ -38,7 +38,7 @@
"src"
],
"dependencies": {
"@vibrant/types": "^4.0.0-alpha.3"
"@vibrant/types": "^4.0.0-alpha.4"
},
"devDependencies": {
"@tanstack/config": "^0.14.2",
Expand Down
54 changes: 27 additions & 27 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit bb10d75

Please sign in to comment.