-
-
Notifications
You must be signed in to change notification settings - Fork 764
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* reset exifOrientation Signed-off-by: Juan Pablo Garcia Ripa <sarabadu@gmail.com> * comparation output Signed-off-by: Juan Pablo Garcia Ripa <sarabadu@gmail.com> * prepare for rewrite * kinda working * crop plugin * so close * kind of * add clean (cherry picked from commit bd18a94eb6f8b4d764929055eb2aba5654912d92) * clean up (cherry picked from commit a651044591ecfd20409e5e004aa71c6da0561386) # Conflicts: # packages/core/src/index.ts * nice * works! * add resize * blur plugin * fully complete resize * figure out testing * don't build tests * dont run tests in watch * update snapshot style * test pngs * finish png * add color type enum * move jpeg js * move bmp * fix test watching * add more encoder options * gif * deprecate * TIFF * move gaussian into blur * fux byukd * upgrade turbo * add more things to jimp * move color plugins and merge a few * threshold and phash * fix clone typing * plugins shadow + composite * plugin rotate * move blit tests * remove stale code * move dither * flip plugin * displace plugin * move plugin-circle * simplify scan * plugin fisheye * unused code * add mask plugin * plugin contain * plugin cover * last plugin! * fix tests * pick out things from core * complete jimp api * add some docs * fix usage * make test image package * implement hash functions * move diff test * delete event tests * move composite tests * more tests moved * callback tests * move alpha tests * stale tests * exif test * all code moved! * working on docs * more docs * improve read * simplify font loading since read will do the heavy lifting * docssss * revert changes * update contributing * more docs * fix method docs * tweaks * fix method types * fix constructor options * improve last of static methods * more docs * more docs * dead link * add examples * get it working in a browser * working * add browser tests * use zod for param validation and normalize object APIs * remove build output from repo * preview * fix lint * get bundle working * more docs * add write * minify bundle * update docs * add zod plugins * fix browser build * get most types for methods working * fix lint * force test rerun * fix running browser test * remove only * setup browser --------- Signed-off-by: Juan Pablo Garcia Ripa <sarabadu@gmail.com> Co-authored-by: Juan Pablo Garcia Ripa <sarabadu@gmail.com>
- Loading branch information
1 parent
a4a8d63
commit ecc492d
Showing
736 changed files
with
26,957 additions
and
33,448 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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,32 @@ | ||
name: Deploy PR previews | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- opened | ||
- reopened | ||
- synchronize | ||
- closed | ||
|
||
concurrency: preview-${{ github.ref }} | ||
|
||
jobs: | ||
deploy-preview: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- uses: ./.github/actions/install-deps | ||
|
||
- name: Build with Astro | ||
run: | | ||
pnpm astro build \ | ||
--site "${{ steps.pages.outputs.origin }}" \ | ||
--base "${{ steps.pages.outputs.base_path }}" | ||
working-directory: packages/docs | ||
|
||
- name: Deploy preview | ||
uses: rossjrw/pr-preview-action@v1 | ||
with: | ||
source-dir: packages/docs/dist |
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,53 @@ | ||
name: Deploy Website | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: [main] | ||
|
||
permissions: | ||
contents: read | ||
pages: write | ||
id-token: write | ||
|
||
concurrency: | ||
group: "pages" | ||
cancel-in-progress: false | ||
|
||
jobs: | ||
build: | ||
name: Build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- uses: ./.github/actions/install-deps | ||
|
||
- name: Setup Pages | ||
id: pages | ||
uses: actions/configure-pages@v5 | ||
|
||
- name: Build with Astro | ||
run: | | ||
pnpm astro build \ | ||
--site "${{ steps.pages.outputs.origin }}" \ | ||
--base "${{ steps.pages.outputs.base_path }}" | ||
working-directory: packages/docs | ||
|
||
- name: Upload artifact | ||
uses: actions/upload-pages-artifact@v3 | ||
with: | ||
path: packages/docs/dist | ||
|
||
deploy: | ||
environment: | ||
name: github-pages | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
needs: build | ||
runs-on: ubuntu-latest | ||
name: Deploy | ||
steps: | ||
- name: Deploy to GitHub Pages | ||
id: deployment | ||
uses: actions/deploy-pages@v4 |
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
This file was deleted.
Oops, something went wrong.
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,3 @@ | ||
{ | ||
"prettier.prettierPath": "./node_modules/prettier/index.cjs", | ||
} |
Oops, something went wrong.