Skip to content

Commit

Permalink
Merge pull request #609 from pmndrs/dev
Browse files Browse the repository at this point in the history
Version 6.35.0
  • Loading branch information
vanruesc authored Mar 2, 2024
2 parents e053ac3 + ad2eee6 commit 32be0c5
Show file tree
Hide file tree
Showing 45 changed files with 712 additions and 948 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,16 @@ jobs:
uses: actions/setup-node@v3
with:
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Install dependencies and test
run: pnpm install-test --frozen-lockfile
- name: Publish
id: publish
uses: JS-DevTools/npm-publish@v2
uses: JS-DevTools/npm-publish@v3
with:
token: ${{ secrets.NPM_TOKEN }}
ignore-scripts: false
- if: ${{ steps.publish.outputs.type }}
run: |
echo "Version changed: ${{ steps.publish.outputs.old-version }} → ${{ steps.publish.outputs.version }}"
- if: ${{ !steps.publish.outputs.type }}
run: |
pnpm run prepublishOnly
echo "Published version: ${{ steps.publish.outputs.version }}"
- name: Deploy
run: pnpm run deploy
- uses: JamesIves/github-pages-deploy-action@v4
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![CI](https://github.com/pmndrs/postprocessing/actions/workflows/ci.yml/badge.svg)](https://github.com/pmndrs/postprocessing/actions/workflows/ci.yml)
[![Version](https://badgen.net/npm/v/postprocessing?color=green)](https://www.npmjs.com/package/postprocessing)

A post processing library that provides the means to implement image filter effects for [three.js](https://threejs.org/).
A post processing library for [three.js](https://threejs.org/).

*[Demo](https://pmndrs.github.io/postprocessing/public/demo) · [Sandbox](https://codesandbox.io/s/postprocessing-25rts) · [Documentation](https://pmndrs.github.io/postprocessing/public/docs) · [Wiki](https://github.com/pmndrs/postprocessing/wiki)*

Expand Down
1 change: 0 additions & 1 deletion manual/content/demos/anti-aliasing/_index.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
layout: section
collection: sections
title: Anti-Aliasing
headless: true
draft: false
menu:
demos:
Expand Down
2 changes: 1 addition & 1 deletion manual/layouts/partials/menu.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
{{ range .menu }}
{{ if .HasChildren }}

{{ $class := slice (path.Base .Page.RelPermalink) }}
{{ $class := slice (path.Base .URL) }}
{{ if $currentPage.HasMenuCurrent $menuName . }}
{{ $class = $class | append "active" }}
{{ end }}
Expand Down
11 changes: 6 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "postprocessing",
"version": "6.34.3",
"version": "6.35.0",
"description": "A post processing library for three.js.",
"homepage": "https://github.com/pmndrs/postprocessing",
"license": "Zlib",
Expand Down Expand Up @@ -63,6 +63,7 @@
},
"scripts": {
"ava": "ava",
"build": "npm run clean && run-p build:css build:js:min build:dts",
"build:css": "sass --no-source-map -I manual/assets/css/src/values manual/assets/css/src:manual/assets/css/dist",
"build:js": "node esbuild",
"build:js:min": "node esbuild -m",
Expand All @@ -73,21 +74,21 @@
"doc": "esdoc",
"gzip": "gzipper c public",
"hugo": "hugo -s manual --minify",
"lint": "run-s lint:*",
"lint": "run-p lint:*",
"lint:css": "stylelint --fix manual/assets/css/src",
"lint:js": "eslint --ext .js --fix src demo/src manual/assets/js/src",
"postcss": "postcss manual/assets/css/dist/index.css -o manual/assets/css/dist/index.css -c manual",
"prepublishOnly": "run-s test doc",
"prepublishOnly": "npm test",
"prewatch": "run-s clean copy build:css build:js",
"test": "run-s clean lint build:css build:js:min build:dts ava",
"test": "run-s lint build ava doc",
"start": "hugo server -s manual -e development",
"watch": "run-p watch:* start",
"watch:css": "sass --no-source-map -I manual/assets/css/src/values manual/assets/css/src:manual/assets/css/dist -w",
"watch:eslint": "esw -w --ext .js --color src demo/src manual/assets/js/src",
"watch:js": "node esbuild -w"
},
"peerDependencies": {
"three": ">= 0.138.0 < 0.162.0"
"three": ">= 0.152.0 < 0.163.0"
},
"devDependencies": {
"@tweakpane/core": "2.x.x",
Expand Down
Loading

0 comments on commit 32be0c5

Please sign in to comment.