@tresjs/post-processing 3.3.1 → 3.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -16
- package/dist/tres-post-processing.d.ts +1 -1
- package/dist/tres-post-processing.js +1 -1
- package/package.json +6 -5
package/README.md
CHANGED
|
@@ -25,14 +25,6 @@ pnpm i @tresjs/post-processing
|
|
|
25
25
|
|
|
26
26
|
Checkout the [docs](https://post-processing.tresjs.org/)
|
|
27
27
|
|
|
28
|
-
## Demos
|
|
29
|
-
|
|
30
|
-
- [Stackblitz Collection](https://stackblitz.com/@alvarosabu/collections/tresjs)
|
|
31
|
-
|
|
32
|
-
## Contributing
|
|
33
|
-
|
|
34
|
-
We are open to contributions, please read the [contributing guide](https://github.com/Tresjs/tres/blob/main/CONTRIBUTING.md) to get started.
|
|
35
|
-
|
|
36
28
|
### Build
|
|
37
29
|
|
|
38
30
|
To build the package run:
|
|
@@ -43,15 +35,15 @@ pnpm run build
|
|
|
43
35
|
|
|
44
36
|
### Playground
|
|
45
37
|
|
|
46
|
-
|
|
38
|
+
Running the playground is a great way to test the components and helpers locally:
|
|
47
39
|
|
|
48
|
-
First install dependencies
|
|
40
|
+
First install the dependencies
|
|
49
41
|
|
|
50
42
|
```
|
|
51
43
|
pnpm i
|
|
52
44
|
```
|
|
53
45
|
|
|
54
|
-
And then
|
|
46
|
+
And then run the development server on http://localhost:5173
|
|
55
47
|
|
|
56
48
|
```bash
|
|
57
49
|
pnpm run playground
|
|
@@ -59,7 +51,7 @@ pnpm run playground
|
|
|
59
51
|
|
|
60
52
|
### Docs
|
|
61
53
|
|
|
62
|
-
To run
|
|
54
|
+
To run the docs in dev mode
|
|
63
55
|
|
|
64
56
|
```bash
|
|
65
57
|
pnpm run docs:dev
|
|
@@ -74,7 +66,3 @@ pnpm run docs:build
|
|
|
74
66
|
## License
|
|
75
67
|
|
|
76
68
|
[MIT](/LICENSE)
|
|
77
|
-
|
|
78
|
-
## Sponsors
|
|
79
|
-
|
|
80
|
-
Be the first to support this project [here](https://github.com/sponsors/alvarosabu) ☺️
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tresjs/post-processing",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.5.0",
|
|
5
5
|
"description": "Post-processing library for TresJS",
|
|
6
6
|
"author": "Alvaro Saburido <hola@alvarosaburido.dev> (https://github.com/alvarosabu/)",
|
|
7
7
|
"license": "MIT",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"access": "public"
|
|
40
40
|
},
|
|
41
41
|
"peerDependencies": {
|
|
42
|
-
"@tresjs/core": "5.
|
|
42
|
+
"@tresjs/core": "5.6.0",
|
|
43
43
|
"three": ">=0.169",
|
|
44
44
|
"vue": ">=3.4"
|
|
45
45
|
},
|
|
@@ -48,14 +48,14 @@
|
|
|
48
48
|
"postprocessing": "^6.37.2"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@types/three": "^0.
|
|
51
|
+
"@types/three": "^0.183.0",
|
|
52
52
|
"@vitejs/plugin-vue": "^6.0.1",
|
|
53
53
|
"eslint": "^9.34.0",
|
|
54
54
|
"kolorist": "^1.8.0",
|
|
55
55
|
"pathe": "^2.0.3",
|
|
56
56
|
"rollup-plugin-analyzer": "^4.0.0",
|
|
57
57
|
"rollup-plugin-visualizer": "^6.0.3",
|
|
58
|
-
"three": "^0.
|
|
58
|
+
"three": "^0.183.0",
|
|
59
59
|
"tsdown": "0.18.3",
|
|
60
60
|
"typescript": "^5.8.3",
|
|
61
61
|
"vite": "^7.1.9",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"vite-plugin-dts": "4.5.4",
|
|
64
64
|
"vue": "^3.5.22",
|
|
65
65
|
"vue-tsc": "^3.2.1",
|
|
66
|
-
"@tresjs/core": "5.
|
|
66
|
+
"@tresjs/core": "5.6.0",
|
|
67
67
|
"@tresjs/eslint-config": "1.5.1",
|
|
68
68
|
"@tresjs/leches": "1.1.4"
|
|
69
69
|
},
|
|
@@ -74,6 +74,7 @@
|
|
|
74
74
|
},
|
|
75
75
|
"scripts": {
|
|
76
76
|
"build": "tsdown",
|
|
77
|
+
"build:analyze": "ANALYZE=true tsdown",
|
|
77
78
|
"preview": "vite preview",
|
|
78
79
|
"lint": "eslint .",
|
|
79
80
|
"typecheck": "vue-tsc --noEmit",
|