From c33f82dae0a177276c0858617ea9b32ca7b18862 Mon Sep 17 00:00:00 2001 From: Emmanuel Viala Date: Sun, 22 Sep 2024 01:48:29 +0200 Subject: [PATCH] T3D v3.0.0 (#210) --- browser/package.json | 2 +- examples/package.json | 2 +- experiments/package.json | 2 +- explorer/package.json | 2 +- lerna.json | 6 ------ library/package.json | 3 ++- package-lock.json | 19 ++++++++++--------- parser/package.json | 3 ++- utils/package.json | 4 ++-- 9 files changed, 20 insertions(+), 23 deletions(-) delete mode 100644 lerna.json diff --git a/browser/package.json b/browser/package.json index b6a0a30a..b66cfdf5 100644 --- a/browser/package.json +++ b/browser/package.json @@ -1,6 +1,6 @@ { "name": "t3d-browser", - "version": "2.3.0", + "version": "3.0.0", "description": "", "main": "src/index.js", "scripts": { diff --git a/examples/package.json b/examples/package.json index b67630f4..58b71539 100644 --- a/examples/package.json +++ b/examples/package.json @@ -1,6 +1,6 @@ { "name": "t3d-examples", - "version": "2.3.0", + "version": "3.0.0", "description": "", "main": "index.js", "scripts": { diff --git a/experiments/package.json b/experiments/package.json index cb3dc8f2..900dd963 100644 --- a/experiments/package.json +++ b/experiments/package.json @@ -1,6 +1,6 @@ { "name": "t3d-experiments", - "version": "2.3.0", + "version": "3.0.0", "description": "", "main": "index.js", "scripts": { diff --git a/explorer/package.json b/explorer/package.json index 2dfe18c2..fe7b7727 100644 --- a/explorer/package.json +++ b/explorer/package.json @@ -1,6 +1,6 @@ { "name": "t3d-explorer", - "version": "2.3.0", + "version": "3.0.0", "description": "", "main": "src/index.html", "author": "Tyria 3D contributors", diff --git a/lerna.json b/lerna.json deleted file mode 100644 index c1d99221..00000000 --- a/lerna.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "packages": [ - "*" - ], - "version": "2.3.0" -} diff --git a/library/package.json b/library/package.json index 80aa83cd..52f74fbc 100644 --- a/library/package.json +++ b/library/package.json @@ -1,6 +1,7 @@ { "name": "t3d-lib", - "version": "2.3.0", + "version": "3.0.0", + "license": "GPL-3.0", "scripts": { "build": "rollup -c", "version": "npm run build; git add build", diff --git a/package-lock.json b/package-lock.json index cec4661a..0276add2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -28,7 +28,7 @@ }, "browser": { "name": "t3d-browser", - "version": "2.3.0", + "version": "3.0.0", "license": "GPL-3.0", "devDependencies": { "http-server": "14.1.1", @@ -38,7 +38,7 @@ }, "examples": { "name": "t3d-examples", - "version": "2.3.0", + "version": "3.0.0", "license": "GPL-3.0", "devDependencies": { "@rollup/plugin-commonjs": "26.0.1", @@ -50,7 +50,7 @@ }, "experiments": { "name": "t3d-experiments", - "version": "2.3.0", + "version": "3.0.0", "license": "GPL-3.0", "dependencies": { "pngjs": "7.0.0" @@ -160,7 +160,7 @@ }, "explorer": { "name": "t3d-explorer", - "version": "2.3.0", + "version": "3.0.0", "license": "GPL-3.0", "devDependencies": { "@rollup/plugin-commonjs": "26.0.1", @@ -172,7 +172,8 @@ }, "library": { "name": "t3d-lib", - "version": "2.3.0", + "version": "3.0.0", + "license": "GPL-3.0", "dependencies": { "t3d-parser": "*", "three": "0.123.0", @@ -8109,8 +8110,8 @@ }, "parser": { "name": "t3d-parser", - "version": "2.3.0", - "license": "MIT", + "version": "3.0.0", + "license": "GPL-3.0", "devDependencies": { "@rollup/plugin-commonjs": "^26.0.1", "@rollup/plugin-node-resolve": "^15.2.3", @@ -8149,8 +8150,8 @@ }, "utils": { "name": "t3d-utils", - "version": "2.3.0", - "license": "MIT", + "version": "3.0.0", + "license": "GPL-3.0", "dependencies": { "@types/node": "12.12.17", "r2pipe-promise": "1.6.0", diff --git a/parser/package.json b/parser/package.json index 6a10228f..1ea36699 100644 --- a/parser/package.json +++ b/parser/package.json @@ -1,8 +1,9 @@ { "name": "t3d-parser", - "version": "2.3.0", + "version": "3.0.0", "description": "Parser for binary archives", "author": "Njibhu ", + "license": "GPL-3.0", "main": "src/main.ts", "directories": { "lib": "lib", diff --git a/utils/package.json b/utils/package.json index 3c3968b7..4af82daf 100644 --- a/utils/package.json +++ b/utils/package.json @@ -1,10 +1,10 @@ { "name": "t3d-utils", - "version": "2.3.0", + "version": "3.0.0", "description": "Utils to help generate definitions and parsing various useful files", "author": "Njibhu ", "homepage": "https://github.com/njibhu/t3d#readme", - "license": "GPL", + "license": "GPL-3.0", "directories": { "lib": "lib" },