From fff36604c4e71330ff3ec56678be7fdb7fb594c2 Mon Sep 17 00:00:00 2001 From: Kevin Levron Date: Wed, 16 Feb 2022 19:57:22 +0100 Subject: [PATCH] 0.3.4 --- package.json | 16 ++++++++-------- rollup.config.js | 4 ++-- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/package.json b/package.json index 22d86d4..0df1cc1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "troisjs", - "version": "0.3.3", + "version": "0.3.4", "scripts": { "dev": "vite", "types": "tsc", @@ -9,30 +9,30 @@ }, "devDependencies": { "@rollup/plugin-replace": "^3.0.0", - "@types/three": "^0.133.1", + "@types/three": "^0.136.0", "@typescript-eslint/eslint-plugin": "^5.2.0", "@typescript-eslint/parser": "^5.2.0", - "@vitejs/plugin-vue": "^1.2.1", + "@vitejs/plugin-vue": "^2.2.0", "@vue/compiler-sfc": "^3.2.20", "@vue/eslint-config-standard": "^6.1.0", - "@vue/eslint-config-typescript": "^9.0.0", + "@vue/eslint-config-typescript": "^10.0.0", "cannon": "^0.6.2", - "esbuild": "^0.13.11", + "esbuild": "^0.14.21", "eslint": "^8.1.0", "eslint-plugin-import": "^2.22.0", "eslint-plugin-node": "^11.1.0", - "eslint-plugin-promise": "^5.1.1", + "eslint-plugin-promise": "^6.0.0", "eslint-plugin-vue": "^8.0.3", "gsap": "^3.5.1", "rollup-plugin-dts": "^4.0.0", "rollup-plugin-esbuild": "^4.1.0", "stats.js": "0.17.0", - "three": "^0.134.0", + "three": "^0.136.0", "typescript": "^4.1.5", "vite": "^2.6.13", "vue": "^3.2.20", "vue-eslint-parser": "^8.0.1", - "vue-tsc": "^0.28.10" + "vue-tsc": "^0.31.4" }, "main": "build/trois.js", "module": "build/trois.module.js", diff --git a/rollup.config.js b/rollup.config.js index ee7595d..b773ac1 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -33,8 +33,8 @@ const external = [ const cdnReplaces = { 'from \'vue\'': 'from \'https://unpkg.com/vue@3.2.20/dist/vue.esm-browser.prod.js\'', - 'from \'three\'': 'from \'https://cdn.skypack.dev/three@0.134.0/build/three.module.js\'', - 'from \'three/examples': 'from \'https://cdn.skypack.dev/three@0.134.0/examples', + 'from \'three\'': 'from \'https://cdn.skypack.dev/three@0.136.0/build/three.module.js\'', + 'from \'three/examples': 'from \'https://cdn.skypack.dev/three@0.136.0/examples', delimiters: ['', ''], }