Skip to content

Commit

Permalink
feat: enable devtools (#465)
Browse files Browse the repository at this point in the history
* feat: devtools hook on window object

* chore: release v3.6.0-next.0
  • Loading branch information
alvarosabu authored Dec 12, 2023
1 parent 765a51f commit d61df05
Show file tree
Hide file tree
Showing 9 changed files with 526 additions and 12 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@


## [3.6.0-next.0](https://github.com/Tresjs/tres/compare/3.5.1...3.6.0-next.0) (2023-12-06)


### Features

* devtools hook on window object ([df96c1f](https://github.com/Tresjs/tres/commit/df96c1f31aafe1b73cd344fde39420c1ae443d47))


## [3.5.2](https://github.com/Tresjs/tres/compare/3.5.1...3.5.2) (2023-12-12)


Expand Down
6 changes: 3 additions & 3 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
"build": "vitepress build",
"preview": "vitepress preview"
},
"dependencies": {
"@tresjs/core": "workspace:^3.1.1"
},
"devDependencies": {
"unocss": "^0.58.0",
"vite-svg-loader": "^5.1.0"
},
"dependencies": {
"@tresjs/core": "workspace:3.6.0-next.0"
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@tresjs/core",
"type": "module",
"version": "3.5.2",
"version": "3.6.0-next.0",
"packageManager": "[email protected]",
"description": "Declarative ThreeJS using Vue Components",
"author": "Alvaro Saburido <[email protected]> (https://github.com/alvarosabu/)",
Expand Down
1 change: 1 addition & 0 deletions playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"devDependencies": {
"@tresjs/leches": "0.15.0-next.3",
"@tweakpane/plugin-essentials": "^0.2.0",
"vite-plugin-vue-devtools": "1.0.0-rc.6",
"unplugin-auto-import": "^0.17.2",
"vite-plugin-glsl": "^1.2.1",
"vite-plugin-qrcode": "^0.2.3",
Expand Down
2 changes: 2 additions & 0 deletions playground/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,13 @@ import glsl from 'vite-plugin-glsl'
import UnoCSS from 'unocss/vite'
import { templateCompilerOptions } from '@tresjs/core'
import { qrcode } from 'vite-plugin-qrcode'
import VueDevTools from 'vite-plugin-vue-devtools'

// https://vitejs.dev/config/
export default defineConfig({
plugins: [
glsl(),
VueDevTools(),
vue({
script: {
propsDestructure: true,
Expand Down
Loading

0 comments on commit d61df05

Please sign in to comment.