From b44b84f26a183e0272052ada2f8ce816053c5e31 Mon Sep 17 00:00:00 2001 From: georgealways Date: Sun, 12 Oct 2025 16:17:32 -0400 Subject: [PATCH 1/3] add deprecation warning to readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 80ac2476..35366979 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,10 @@ +⚠️ dat.GUI is no longer maintained. For new projects, consider [lil-gui](https://github.com/georgealways/lil-gui). + # dat.GUI A lightweight graphical user interface for changing variables in JavaScript. Get started with dat.GUI by reading the [API documentation](API.md). - - ## Packaged Builds The easiest way to use dat.GUI in your code is by using the built source at `build/dat.gui.min.js`. These built JavaScript files bundle all the necessary dependencies to run dat.GUI. From 8e651d8a59bf706a57a620d5e9e7f7eafbb2ad92 Mon Sep 17 00:00:00 2001 From: George Michael Brower Date: Sun, 12 Oct 2025 16:30:41 -0400 Subject: [PATCH 2/3] 0.8.0 --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 20e4689b..d8b18607 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { "name": "dat.gui", - "version": "0.7.9", + "version": "0.8.0", "lockfileVersion": 2, "requires": true, "packages": { "": { - "version": "0.7.9", + "version": "0.8.0", "license": "Apache-2.0", "devDependencies": { "babel-core": "^6.26.3", diff --git a/package.json b/package.json index 0c343d2f..3b9379c0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "dat.gui", - "version": "0.7.9", + "version": "0.8.0", "description": "A lightweight graphical user interface for changing variables in JavaScript.", "main": "build/dat.gui.js", "module": "build/dat.gui.module.js", From 0b027f0eb1b9dab9465e5ad567a6b45d9e4b5a9f Mon Sep 17 00:00:00 2001 From: George Michael Brower Date: Sun, 12 Oct 2025 16:31:59 -0400 Subject: [PATCH 3/3] add engines field --- package.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package.json b/package.json index 3b9379c0..356b6237 100644 --- a/package.json +++ b/package.json @@ -7,6 +7,9 @@ "directories": { "test": "tests" }, + "engines": { + "node": ">=15" + }, "scripts": { "dev": "concurrently --names \"ROLLUP,HTTP\" -c \"bgBlue.bold,bgGreen.bold\" \"rollup -c -w -m inline\" \"serve --listen 8080\"", "build": "rollup -c && rollup -c rollup.config.min.js",