-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into chore/cientos-playground-structure-alike
- Loading branch information
Showing
11 changed files
with
469 additions
and
904 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# From https://github.com/remirror/template/blob/4f8c5f5629a081217672a8cce1df085510f43913/.github/actions/pnpm/action.yml | ||
name: 'pnpm installation' | ||
description: 'Install and audit dependencies for pnpm' | ||
inputs: | ||
cache: # id of input | ||
description: 'The location of the pnpm cache' | ||
required: true | ||
default: '.pnpm-store' | ||
version: # id of input | ||
description: 'The version to use' | ||
required: false | ||
default: 6.10.0 | ||
|
||
runs: | ||
using: 'composite' | ||
steps: | ||
- name: install pnpm | ||
run: npm install pnpm@${{ inputs.version }} -g | ||
shell: bash | ||
|
||
- name: setup pnpm config | ||
run: pnpm config set store-dir ${{ inputs.cache }} | ||
shell: bash | ||
|
||
- name: install dependencies | ||
run: pnpm install --shamefully-hoist | ||
shell: bash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: 'Lint PR' | ||
|
||
on: | ||
pull_request_target: | ||
types: | ||
- opened | ||
- edited | ||
- synchronize | ||
|
||
jobs: | ||
main: | ||
name: Validate PR title | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: amannn/action-semantic-pull-request@v5 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Run linters | ||
on: [push] | ||
|
||
env: | ||
PNPM_CACHE_FOLDER: .pnpm-store | ||
HUSKY: 0 # Bypass husky commit hook for CI | ||
|
||
jobs: | ||
lint: | ||
name: Lint | ||
runs-on: ubuntu-20.04 | ||
strategy: | ||
matrix: | ||
node-version: [16] | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Setup Pnpm | ||
uses: pnpm/action-setup@v2 | ||
with: | ||
version: 8 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
cache: 'pnpm' | ||
- name: Install dependencies | ||
run: pnpm install | ||
- name: Run Lint | ||
run: pnpm run lint |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[build.environment] | ||
NODE_VERSION = "18" | ||
[build] | ||
publish = "docs/.vitepress/dist" | ||
command = "pnpm run build && pnpm docs:build" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,38 @@ | ||
{ | ||
"name": "@tresjs/post-processing", | ||
"description": "Post-processing library for TresJS", | ||
"version": "0.5.0", | ||
"type": "module", | ||
"version": "0.5.0", | ||
"packageManager": "[email protected]", | ||
"description": "Post-processing library for TresJS", | ||
"author": "Alvaro Saburido <[email protected]> (https://github.com/alvarosabu/)", | ||
"files": [ | ||
"dist", | ||
"*.d.ts" | ||
], | ||
"license": "MIT", | ||
"main": "./dist/tres-postprocessing.js", | ||
"module": "./dist/tres-postprocessing.js", | ||
"keywords": [ | ||
"vue", | ||
"3d", | ||
"threejs", | ||
"three", | ||
"post-processing", | ||
"effects", | ||
"fx" | ||
], | ||
"exports": { | ||
".": { | ||
"types": "./dist/index.d.ts", | ||
"import": "./dist/tres-postprocessing.js" | ||
}, | ||
"./*": "./*" | ||
}, | ||
"main": "./dist/tres-postprocessing.js", | ||
"module": "./dist/tres-postprocessing.js", | ||
"files": [ | ||
"dist", | ||
"*.d.ts" | ||
], | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"keywords": [ | ||
"vue", | ||
"3d", | ||
"threejs", | ||
"three", | ||
"post-processing", | ||
"effects", | ||
"fx" | ||
], | ||
"scripts": { | ||
"dev": "vite", | ||
"dev": "cd playground && npm run dev", | ||
"playground": "cd playground && npm run dev", | ||
"build": "vite build", | ||
"preview": "vite preview", | ||
|
@@ -47,16 +48,16 @@ | |
"vue": ">=3.3" | ||
}, | ||
"dependencies": { | ||
"@tresjs/core": "^3.4.1", | ||
"@unocss/core": "^0.57.1", | ||
"@tresjs/core": "^3.5.0", | ||
"@unocss/core": "^0.57.2", | ||
"@vueuse/core": "^10.5.0", | ||
"postprocessing": "^6.33.2", | ||
"three-stdlib": "^2.28.3" | ||
"postprocessing": "^6.33.3", | ||
"three-stdlib": "^2.28.5" | ||
}, | ||
"devDependencies": { | ||
"@release-it/conventional-changelog": "^7.0.2", | ||
"@tresjs/eslint-config-vue": "^0.2.1", | ||
"@types/three": "^0.157.2", | ||
"@types/three": "^0.158.1", | ||
"@vitejs/plugin-vue": "^4.4.0", | ||
"gsap": "^3.12.2", | ||
"kolorist": "^1.8.0", | ||
|
@@ -67,12 +68,12 @@ | |
"rollup-plugin-visualizer": "^5.9.2", | ||
"three": "^0.158.0", | ||
"typescript": "^5.2.2", | ||
"unocss": "^0.57.1", | ||
"unocss": "^0.57.2", | ||
"vite": "^4.5.0", | ||
"vite-plugin-banner": "^0.7.1", | ||
"vite-plugin-dts": "3.6.2", | ||
"vite-plugin-dts": "3.6.3", | ||
"vite-svg-loader": "^4.0.0", | ||
"vitepress": "1.0.0-rc.24", | ||
"vitepress": "1.0.0-rc.25", | ||
"vue": "^3.3.7", | ||
"vue-tsc": "^1.8.22" | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.