mirror of
https://github.com/vercel/workflow.git
synced 2026-09-14 19:59:43 +08:00
fb8153bec4
* feat: add Nuxt module and documentation * fix: add the prepare in the build command * Apply suggestion from @vercel[bot] Co-authored-by: vercel[bot] <35613825+vercel[bot]@users.noreply.github.com> * chore: simplify usage without /nuxt * wip * Update nuxt.mdx Co-Authored-By: Daniel Roe <daniel@roe.dev> * add clean command and ignore prepare * use @workflow/nitro * Changeset Added a Nuxt module and updated documentation accordingly. * feat: enable typescript plugin in tsconfig * chore: revert accordion value * chore: use symlink * fix: json parsing in trigger route for nitro-v2 * ci: add e2e tests for nuxt * ci: add nuxt to test matrix * chore: make sure to add /nuxt to avoid conflicts when importing entry-points * chore: move typescriptPlugin option to Nitro * chore: body is already parsed * fix: use readRawBody * fix: use rawBody in hook.post too * chore: add missing import (but not required) * chore: update pm * Create resolve-symlinks.sh * chore: add also node-rs/xxhash * Update create-test-matrix.mjs * update matrix * Update create-test-matrix.mjs * remove symlink to nitro-v2 --------- Co-authored-by: vercel[bot] <35613825+vercel[bot]@users.noreply.github.com> Co-authored-by: Daniel Roe <daniel@roe.dev> Co-authored-by: Pranay Prakash <pranay.gp@gmail.com> Co-authored-by: Adrian Lam <me@adriandlam.com>
10 lines
292 B
TypeScript
10 lines
292 B
TypeScript
// THIS FILE IS JUST FOR TESTING HMR AS AN ENTRY NEEDS
|
|
// TO IMPORT THE WORKFLOWS TO DISCOVER THEM AND WATCH
|
|
|
|
import * as workflows from '../../workflows/3_streams.js';
|
|
|
|
export default async ({ req }: { req: Request }) => {
|
|
console.log(workflows);
|
|
return Response.json('hello world');
|
|
};
|