[PR #42] [MERGED] Deno plugins #15

Closed
opened 2025-12-29 07:18:54 +01:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/mountain-loop/yaak/pull/42
Author: @gschier
Created: 6/6/2024
Status: Merged
Merged: 6/7/2024
Merged by: @gschier

Base: masterHead: deno-plugins


📝 Commits (10+)

  • e4551b6 Run importers using deno_core and print stacks on error
  • 337cbec Merge branch 'refs/heads/master' into deno-plugins
  • 10ed8fb Add deno_console for logging
  • 38e21a4 Rip out BoaJS and make Deno plugin call generic
  • 8d1f514 Bump versions
  • 1042b35 Merge branch 'master' into deno-plugins
  • ce422e8 Merge branch 'refs/heads/master' into deno-plugins
  • c5890e6 CI caching
  • 2243e92 Update workflow
  • 146c7d4 Bump JS too

📊 Changes

32 files changed (+1444 additions, -5729 deletions)

View changed files

📝 .github/workflows/ci-js.yml (+2 -2)
📝 .github/workflows/ci-rust.yml (+37 -4)
📝 .gitignore (+2 -1)
📝 plugins/exporter-curl/vite.config.js (+3 -1)
📝 plugins/filter-jsonpath/src/index.js (+1 -1)
📝 plugins/filter-jsonpath/vite.config.js (+3 -1)
📝 plugins/filter-xpath/src/index.js (+1 -1)
📝 plugins/filter-xpath/vite.config.js (+3 -1)
📝 plugins/importer-curl/src/index.ts (+1 -1)
📝 plugins/importer-curl/vite.config.js (+3 -1)
📝 plugins/importer-insomnia/src/index.ts (+6 -4)
📝 plugins/importer-insomnia/vite.config.js (+3 -1)
📝 plugins/importer-postman/src/index.ts (+5 -1)
📝 plugins/importer-postman/tests/index.test.ts (+1 -1)
📝 plugins/importer-postman/vite.config.js (+3 -1)
📝 plugins/importer-yaak/src/index.ts (+2 -2)
📝 plugins/importer-yaak/vite.config.js (+3 -1)
📝 src-tauri/Cargo.lock (+1018 -515)
📝 src-tauri/Cargo.toml (+6 -3)
src-tauri/plugins/importer-curl/index.mjs (+0 -297)

...and 12 more files

📄 Description

Switch from BoaJS to Deno core


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/mountain-loop/yaak/pull/42 **Author:** [@gschier](https://github.com/gschier) **Created:** 6/6/2024 **Status:** ✅ Merged **Merged:** 6/7/2024 **Merged by:** [@gschier](https://github.com/gschier) **Base:** `master` ← **Head:** `deno-plugins` --- ### 📝 Commits (10+) - [`e4551b6`](https://github.com/mountain-loop/yaak/commit/e4551b6779da1b6ea2164a9d93ffcd692fe87127) Run importers using deno_core and print stacks on error - [`337cbec`](https://github.com/mountain-loop/yaak/commit/337cbece5fcf85d42997504819e7d2dd35619021) Merge branch 'refs/heads/master' into deno-plugins - [`10ed8fb`](https://github.com/mountain-loop/yaak/commit/10ed8fb10b84e900bc324d42754139b02d189451) Add deno_console for logging - [`38e21a4`](https://github.com/mountain-loop/yaak/commit/38e21a477cffa02e66102f0c8dcc3f382d745e63) Rip out BoaJS and make Deno plugin call generic - [`8d1f514`](https://github.com/mountain-loop/yaak/commit/8d1f514824e0e802e63dbb847f544220fce800cf) Bump versions - [`1042b35`](https://github.com/mountain-loop/yaak/commit/1042b35286c4a8653796f63186e80b9353f7f88e) Merge branch 'master' into deno-plugins - [`ce422e8`](https://github.com/mountain-loop/yaak/commit/ce422e8788388b8be1563b3046463794e1a0c4d6) Merge branch 'refs/heads/master' into deno-plugins - [`c5890e6`](https://github.com/mountain-loop/yaak/commit/c5890e6fc847e8e0f065700119b3edffe5f0863f) CI caching - [`2243e92`](https://github.com/mountain-loop/yaak/commit/2243e92697f42ee94a167baaeb27387b8b7540f1) Update workflow - [`146c7d4`](https://github.com/mountain-loop/yaak/commit/146c7d4b9d4c5eca4bb8d20d7adc8ae2eda1d659) Bump JS too ### 📊 Changes **32 files changed** (+1444 additions, -5729 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/ci-js.yml` (+2 -2) 📝 `.github/workflows/ci-rust.yml` (+37 -4) 📝 `.gitignore` (+2 -1) 📝 `plugins/exporter-curl/vite.config.js` (+3 -1) 📝 `plugins/filter-jsonpath/src/index.js` (+1 -1) 📝 `plugins/filter-jsonpath/vite.config.js` (+3 -1) 📝 `plugins/filter-xpath/src/index.js` (+1 -1) 📝 `plugins/filter-xpath/vite.config.js` (+3 -1) 📝 `plugins/importer-curl/src/index.ts` (+1 -1) 📝 `plugins/importer-curl/vite.config.js` (+3 -1) 📝 `plugins/importer-insomnia/src/index.ts` (+6 -4) 📝 `plugins/importer-insomnia/vite.config.js` (+3 -1) 📝 `plugins/importer-postman/src/index.ts` (+5 -1) 📝 `plugins/importer-postman/tests/index.test.ts` (+1 -1) 📝 `plugins/importer-postman/vite.config.js` (+3 -1) 📝 `plugins/importer-yaak/src/index.ts` (+2 -2) 📝 `plugins/importer-yaak/vite.config.js` (+3 -1) 📝 `src-tauri/Cargo.lock` (+1018 -515) 📝 `src-tauri/Cargo.toml` (+6 -3) ➖ `src-tauri/plugins/importer-curl/index.mjs` (+0 -297) _...and 12 more files_ </details> ### 📄 Description Switch from BoaJS to Deno core --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
adam added the pull-request label 2025-12-29 07:18:54 +01:00
adam closed this issue 2025-12-29 07:18:54 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/yaak#15