Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: upgrade nuxt-component-meta #21

Merged
merged 11 commits into from
Sep 15, 2022
Merged

Conversation

farnabaz
Copy link
Collaborator

@farnabaz farnabaz commented Aug 29, 2022

No description provided.

@kevinmarrec
Copy link
Contributor

@farnabaz What are the major schema/meta changes I should know about ?

What I've been able to see for now :

  • Props types are full lowercase now (from String to string for a string prop for example)
  • Slots does not seem to be detected anymore (using <slot name="test" /> in template)

@farnabaz
Copy link
Collaborator Author

Other than letter cases I don't think there will be any major breaking change, I've already made a quick test with the editor and it seems fine.

The slots should work like the previous version, this is a regression in the latest release.

@kevinmarrec
Copy link
Contributor

kevinmarrec commented Aug 30, 2022

Alright thanks I'll update editor code on this branch to match lowercase types, but let's wait for slots to be fixed I guess ?

@kevinmarrec kevinmarrec self-requested a review August 30, 2022 10:21
@farnabaz
Copy link
Collaborator Author

@kevinmarrec Just updated the component meta version. Slots are fine :)

@kevinmarrec
Copy link
Contributor

kevinmarrec commented Aug 31, 2022

@farnabaz Alright, cool.

Well there is still two things that bother me :

  1. There's some verbosity in logs that needs to be removed (I guess ?)
    image

  2. The Editor preview (right side panel) seems tohave its CSS broken (no errors in console)
    image

Both of these issues seem to only reproducible on this branch.

EDIT: The second may be caused by modules order ?

@farnabaz
Copy link
Collaborator Author

farnabaz commented Aug 31, 2022

Not sure about broken css, but the logs came from design-tokens and its dependency browser-style-dictionary

Update: I tested dev branch and the styles seems not broken

@kevinmarrec
Copy link
Contributor

@farnabaz Is there a way to opt out these logs ?

Yeah it works well on dev, but it became broken on this one, somehow.

@farnabaz
Copy link
Collaborator Author

farnabaz commented Sep 1, 2022

That there is no option on the package to disable these logs. @Tahul mocked console.log https://github.com/nuxt-modules/design-tokens/blob/bbefe85e2a9515a9ef01aaea56bcfd8c41db96d7/src/config/generate.ts#L148-L154 but seems that it is not working.

Maybe we can improve mocking to resolve it

@kevinmarrec
Copy link
Contributor

@farnabaz From my investigation, generateTokensOutputs is called three times, two with silent: true & one last time with silent: false which triggers the logs.

image

@farnabaz
Copy link
Collaborator Author

farnabaz commented Sep 1, 2022

But default value of silence is true, so missing it in the function call should not affect it

https://github.com/nuxt-modules/design-tokens/blob/bbefe85e2a9515a9ef01aaea56bcfd8c41db96d7/src/config/generate.ts#L144

I think that it happens because build operations are async and console.log reverts to the original one before executing the logic

https://github.com/nuxt-modules/design-tokens/blob/bbefe85e2a9515a9ef01aaea56bcfd8c41db96d7/src/config/generate.ts#L167-L169

@kevinmarrec
Copy link
Contributor

@farnabaz I think it's cause this PR does not use latest design-tokens but is currently on a commit that has a false default somewhre : nuxt-modules/design-tokens@f642c81#diff-0e9ffa40772b7eca15b8e9fed0a847258c6a80dca2f41d5ddc0cb70357736f2cL174

@kevinmarrec
Copy link
Contributor

Its has been fixed by nuxt-modules/design-tokens#19 but I need to update yarn.lock.

About the broken CSS, I think it may be caused by Nuxt edge upgrade.

@kevinmarrec
Copy link
Contributor

kevinmarrec commented Sep 1, 2022

Alright I fixed the dependencies (rollbacked Nuxt 3 edge to the one present on dev ...) which make the Playground working back.
But now the issue is

image

On the Studio UI x)

EDIT: I need to rollback kit edge as well

@farnabaz
Copy link
Collaborator Author

farnabaz commented Sep 1, 2022

In the latest nuxt edge some of the CSS variables did not generate, like --prose-h1-color, but some of them are generated --prose-h1-margin-default.

@kevinmarrec
Copy link
Contributor

Alright I fixed things but one more thing I would want to know before merging is what's going on with Playground build time, it takes 1 minute (including 37s Vite client warmed up) on my computer.

image

I also need to deal with some extra quotes that are injected in the Studio Editor around components props fields :

image

@farnabaz
Copy link
Collaborator Author

farnabaz commented Sep 1, 2022

37s is strange for warm-up, this isn't a big project :/

We can use a regex to remove quotes from string values for now, I will create an issue in component meta to see how we can remove these extra quotes

@kevinmarrec
Copy link
Contributor

Let's wait for @Atinux review beginning of next week :)

@Atinux
Copy link
Member

Atinux commented Sep 2, 2022

Well if it works you can merge :)

@kevinmarrec
Copy link
Contributor

kevinmarrec commented Sep 2, 2022

@Atinux It works but Playground build time (Vite client build) is 3x slower than on dev for me.

@Atinux
Copy link
Member

Atinux commented Sep 2, 2022

@antfu do you mind taking a look at this?

@Atinux
Copy link
Member

Atinux commented Sep 2, 2022

Or maybe @pi0 or @danielroe

Still looking for a way to debug what can take time for dev build

@antfu
Copy link
Member

antfu commented Sep 2, 2022

Seems @benjamincanac fixed it nuxt/ui@0cb38e2#diff-030fc083b2cbf5cf008cfc0c49bb4f1b8d97ac07f93a291d068d81b4d1416f70

Copy link
Contributor

I still have high client build time when using last @nuxthq/ui edge :

image.png

Worth mentioning there's also a Unable to parse component issue on the ClientOnly component 👀

@kevinmarrec kevinmarrec removed the request for review from Atinux September 2, 2022 12:48
@danielroe danielroe self-assigned this Sep 5, 2022
@danielroe
Copy link
Contributor

danielroe commented Sep 5, 2022

Update. There are two things taking a long time here.

  1. resolving/loading the config. This is coming from jiti, which is transpiling the configs and also all dependencies imported into them. I've also mentioned this to @pi0 and will also investigate. It may be that we are over-importing things into nuxt.config or its dependencies. (Even moving things into modules would be helpful.)

  2. vite warm up. edit: it is taking a very long time to process hookable - 28s!! - I think this must be a red herring...

Some preliminary numbers
file time
/@fs/private/tmp/studio/node_modules/nuxt/dist/app/entry 109.267ms
/@fs/private/tmp/studio/node_modules/.vite/deps/vue.js?v=31d83858 358.544ms
/@fs/private/tmp/studio/node_modules/.vite/deps/chunk-FAW2VN4A.js?v=31d83858 478.935ms
/@fs/private/tmp/studio/node_modules/ohmyfetch/dist/index.mjs?v=31d83858 0.223ms
/@fs/private/tmp/studio/node_modules/ohmyfetch/dist/chunks/fetch.mjs?v=31d83858 0.11ms
/@fs/private/tmp/studio/node_modules/destr/dist/index.mjs?v=31d83858 0.094ms
/@fs/private/tmp/studio/node_modules/.vite/deps/ufo.js?v=31d83858 0.089ms
/@id/virtual:nuxt:/private/tmp/studio/playground/.nuxt/paths.mjs 538.005ms
/@fs/private/tmp/studio/node_modules/nuxt/dist/app/index.mjs 0.109ms
/@fs/private/tmp/studio/node_modules/nuxt/dist/app/nuxt.mjs 0.081ms
/@fs/private/tmp/studio/node_modules/hookable/dist/index.mjs?v=31d83858 28.519s
/@fs/private/tmp/studio/node_modules/unctx/dist/index.mjs?v=31d83858 0.12ms
/@fs/private/tmp/studio/node_modules/nuxt/dist/app/composables/index.mjs 0.085ms
/@fs/private/tmp/studio/node_modules/nuxt/dist/app/composables/component.mjs 0.09ms
/@fs/private/tmp/studio/node_modules/vue-router/dist/vue-router.mjs?v=31d83858 0.083ms
/@fs/private/tmp/studio/node_modules/@vue/devtools-api/lib/esm/index.js?v=31d83858 54.261ms
/@fs/private/tmp/studio/node_modules/@vue/devtools-api/lib/esm/env.js?v=31d83858 45.077ms
/@fs/private/tmp/studio/node_modules/@vue/devtools-api/lib/esm/const.js?v=31d83858 0.094ms
/@fs/private/tmp/studio/node_modules/@vue/devtools-api/lib/esm/proxy.js?v=31d83858 1.485ms
/@fs/private/tmp/studio/node_modules/@vue/devtools-api/lib/esm/time.js?v=31d83858 0.741ms
/@fs/private/tmp/studio/node_modules/@vue/devtools-api/lib/esm/api/index.js?v=31d83858 3.374ms
/@fs/private/tmp/studio/node_modules/@vue/devtools-api/lib/esm/api/api.js?v=31d83858 106.41ms
/@fs/private/tmp/studio/node_modules/@vue/devtools-api/lib/esm/api/app.js?v=31d83858 0.427ms
/@fs/private/tmp/studio/node_modules/@vue/devtools-api/lib/esm/api/component.js?v=31d83858 0.397ms
/@fs/private/tmp/studio/node_modules/@vue/devtools-api/lib/esm/api/context.js?v=31d83858 0.391ms
/@fs/private/tmp/studio/node_modules/@vue/devtools-api/lib/esm/api/hooks.js?v=31d83858 0.084ms
/@fs/private/tmp/studio/node_modules/@vue/devtools-api/lib/esm/api/util.js?v=31d83858 0.423ms
/@fs/private/tmp/studio/node_modules/@vue/devtools-api/lib/esm/plugin.js?v=31d83858 0.084ms
/@fs/private/tmp/studio/node_modules/nuxt/dist/app/composables/asyncData.mjs 0.08ms
/@fs/private/tmp/studio/node_modules/nuxt/dist/app/composables/hydrate.mjs 0.072ms
/@fs/private/tmp/studio/node_modules/nuxt/dist/app/composables/state.mjs 0.075ms
/@fs/private/tmp/studio/node_modules/nuxt/dist/app/composables/error.mjs 0.07ms
/@fs/private/tmp/studio/node_modules/h3/dist/index.mjs?v=31d83858 0.076ms
/@fs/private/tmp/studio/node_modules/radix3/dist/index.mjs?v=31d83858 0.073ms
/@fs/private/tmp/studio/node_modules/cookie-es/dist/index.mjs?v=31d83858 0.073ms
/@fs/private/tmp/studio/node_modules/nuxt/dist/app/composables/fetch.mjs 0.071ms
/@fs/private/tmp/studio/node_modules/nuxt/dist/app/composables/cookie.mjs 0.07ms
/@fs/private/tmp/studio/node_modules/ohash/dist/index.mjs?v=31d83858 0.073ms
/@fs/private/tmp/studio/node_modules/nuxt/dist/app/composables/ssr.mjs 0.154ms
/@fs/private/tmp/studio/node_modules/nuxt/dist/app/composables/router.mjs 0.073ms
/@fs/private/tmp/studio/node_modules/nuxt/dist/app/composables/preload.mjs 0.071ms
/@fs/private/tmp/studio/node_modules/nuxt/dist/app/components/index.mjs 0.073ms
/@fs/private/tmp/studio/node_modules/nuxt/dist/app/components/nuxt-link.mjs 0.07ms
/@fs/private/tmp/studio/node_modules/nuxt/dist/app/config.mjs 0.07ms
/.nuxt/app.config.mjs 0.069ms
/@fs/private/tmp/studio/node_modules/.vite/deps/defu.js?v=31d83858 0.039ms
/@fs/private/tmp/studio/node_modules/nuxt/dist/head/runtime/index.mjs 0.079ms
/@fs/private/tmp/studio/node_modules/nuxt/dist/head/runtime/composables.mjs 0.074ms
/@fs/private/tmp/studio/node_modules/@vue/shared/dist/shared.esm-bundler.js?v=31d83858 0.084ms
/@id/virtual:nuxt:/private/tmp/studio/playground/.nuxt/css.mjs 11.167ms
/@id/virtual:nuxt:/private/tmp/studio/playground/.nuxt/plugins/client.mjs 4.579s
/@id/virtual:nuxt:/private/tmp/studio/playground/.nuxt/root-component.mjs 1.833s
/@id/virtual:nuxt:/private/tmp/studio/playground/.nuxt/app-component.mjs 716.804ms

@kevinmarrec
Copy link
Contributor

Thank you for investigating @danielroe !

@pi0
Copy link
Contributor

pi0 commented Sep 5, 2022

Well, a LOT of files are being transpiled via jiti which is not really normal. (including typescript/lib/tsserverlibrary.js and vue-language-core/out/index.js) but i also get a loop on playground/.nuxt/tokens/index.ts. You can inspect better using JITI_DEBUG=1 yarn play.

output yarn run v1.22.19 $ nuxi dev playground �[2J�[0fNuxt CLI v3.0.0-rc.8-27689472.403e0e6 [jiti] [transpile] /Users/pooya/Code/studio/playground/nuxt.config.ts [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/nuxt/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/hookable/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/@nuxt/kit/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/hash-sum/hash-sum.js [jiti] [native] /Users/pooya/Code/studio/node_modules/unctx/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/scule/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/semver/functions/satisfies.js [jiti] [native] /Users/pooya/Code/studio/node_modules/consola/dist/consola.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/merge2/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/fast-glob/out/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/dir-glob/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/ignore.js [jiti] [native] /Users/pooya/Code/studio/node_modules/fast-glob/out/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/ignore/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/node_modules/slash/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/utilities.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/utilities.js [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/jiti/lib/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/ignore/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/defu/dist/defu.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/untyped/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/untyped/dist/shared/untyped.c53e415b.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/scule/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/scule/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/lodash.template/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/knitwork/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/c12/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/dotenv/lib/main.js [jiti] [native] /Users/pooya/Code/studio/node_modules/jiti/lib/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/rc9/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/defu/dist/defu.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/@nuxt/schema/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/defu/dist/defu.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/std-env/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/create-require/create-require.js [jiti] [native] /Users/pooya/Code/studio/node_modules/scule/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/jiti/lib/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/ufo/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/postcss-import-resolver/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pkg-types/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/escape-string-regexp/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/knitwork/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/ufo/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/scule/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unplugin/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/chokidar/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/acorn/dist/acorn.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/webpack-virtual-modules/lib/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/webpack-sources/lib/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/nuxt/node_modules/magic-string/dist/magic-string.es.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/sourcemap-codec/dist/sourcemap-codec.umd.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/merge2/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/fast-glob/out/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/dir-glob/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/ignore.js [jiti] [native] /Users/pooya/Code/studio/node_modules/fast-glob/out/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/ignore/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/node_modules/slash/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/utilities.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/utilities.js [jiti] [native] /Users/pooya/Code/studio/node_modules/@vue/shared/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/dist/chunks/context.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/fast-glob/out/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/scule/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/dist/chunks/vue-template.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/node_modules/magic-string/dist/magic-string.es.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/sourcemap-codec/dist/sourcemap-codec.umd.js [jiti] [native] /Users/pooya/Code/studio/node_modules/strip-literal/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/local-pkg/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/dist/chunks/vue-template.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/node_modules/magic-string/dist/magic-string.es.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/sourcemap-codec/dist/sourcemap-codec.umd.js [jiti] [native] /Users/pooya/Code/studio/node_modules/strip-literal/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/fast-glob/out/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/scule/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/local-pkg/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/node_modules/magic-string/dist/magic-string.es.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/sourcemap-codec/dist/sourcemap-codec.umd.js [jiti] [native] /Users/pooya/Code/studio/node_modules/strip-literal/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/defu/dist/defu.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unctx/dist/transform.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/acorn/dist/acorn.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unctx/node_modules/magic-string/dist/magic-string.es.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/sourcemap-codec/dist/sourcemap-codec.umd.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unctx/node_modules/estree-walker/src/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unctx/node_modules/estree-walker/src/sync.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unctx/node_modules/estree-walker/src/walker.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unctx/node_modules/estree-walker/src/async.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unctx/node_modules/estree-walker/src/walker.js [jiti] [native] /Users/pooya/Code/studio/node_modules/strip-literal/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/nitropack/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/nitropack/dist/shared/nitro.8d0213e3.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/perfect-debounce/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/h3/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/ufo/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/radix3/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/destr/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/cookie-es/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/http-proxy/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/listhen/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/ufo/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/colorette/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/get-port-please/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/fs-memo/dist/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/http-shutdown/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/defu/dist/defu.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/serve-placeholder/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/defu/dist/defu.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/serve-static/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/ufo/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/chokidar/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/chalk/source/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/chalk/source/vendor/ansi-styles/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/chalk/source/vendor/supports-color/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/chalk/source/utilities.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/hookable/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/dist/chunks/context.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/fast-glob/out/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/scule/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/dist/chunks/vue-template.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/node_modules/magic-string/dist/magic-string.es.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/sourcemap-codec/dist/sourcemap-codec.umd.js [jiti] [native] /Users/pooya/Code/studio/node_modules/strip-literal/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/local-pkg/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/dist/chunks/vue-template.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/node_modules/magic-string/dist/magic-string.es.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/sourcemap-codec/dist/sourcemap-codec.umd.js [jiti] [native] /Users/pooya/Code/studio/node_modules/strip-literal/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/fast-glob/out/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/scule/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/local-pkg/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/node_modules/magic-string/dist/magic-string.es.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/sourcemap-codec/dist/sourcemap-codec.umd.js [jiti] [native] /Users/pooya/Code/studio/node_modules/strip-literal/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/consola/dist/consola.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/c12/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/dotenv/lib/main.js [jiti] [native] /Users/pooya/Code/studio/node_modules/jiti/lib/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/rc9/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/defu/dist/defu.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/klona/full/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/scule/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/defu/dist/defu.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/std-env/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/fs-extra/lib/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/jiti/lib/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/dot-prop/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/archiver/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/merge2/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/fast-glob/out/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/dir-glob/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/ignore.js [jiti] [native] /Users/pooya/Code/studio/node_modules/fast-glob/out/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/ignore/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/node_modules/slash/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/utilities.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/utilities.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pkg-types/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unstorage/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/destr/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unstorage/dist/chunks/_utils.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/nitropack/node_modules/rollup/dist/rollup.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/nitropack/node_modules/pretty-bytes/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/gzip-size/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/duplexer/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/nitropack/node_modules/rollup-plugin-terser/rollup-plugin-terser.js [jiti] [transpile] /Users/pooya/Code/studio/node_modules/nitropack/node_modules/@rollup/plugin-commonjs/dist/cjs/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/nitropack/node_modules/@rollup/plugin-commonjs/node_modules/@rollup/pluginutils/dist/cjs/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/commondir/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/glob/glob.js [jiti] [native] /Users/pooya/Code/studio/node_modules/estree-walker/dist/umd/estree-walker.js [jiti] [native] /Users/pooya/Code/studio/node_modules/magic-string/dist/magic-string.cjs.js [jiti] [native] /Users/pooya/Code/studio/node_modules/is-reference/dist/is-reference.js [jiti] [transpile] /Users/pooya/Code/studio/node_modules/@rollup/plugin-node-resolve/dist/cjs/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/is-builtin-module/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/deepmerge/dist/cjs.js [jiti] [native] /Users/pooya/Code/studio/node_modules/is-module/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/resolve/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/@rollup/pluginutils/dist/cjs/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/nitropack/node_modules/@rollup/plugin-alias/dist/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/nitropack/node_modules/@rollup/plugin-json/dist/index.js [jiti] [transpile] /Users/pooya/Code/studio/node_modules/nitropack/node_modules/@rollup/plugin-wasm/dist/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/nitropack/node_modules/@rollup/plugin-inject/dist/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/nitropack/node_modules/rollup-plugin-visualizer/dist/plugin/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/unenv/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/dist/unplugin.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unplugin/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/chokidar/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/acorn/dist/acorn.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/webpack-virtual-modules/lib/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/webpack-sources/lib/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/unimport/node_modules/@rollup/pluginutils/dist/cjs/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/node_modules/magic-string/dist/magic-string.es.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/sourcemap-codec/dist/sourcemap-codec.umd.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/dist/chunks/context.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/fast-glob/out/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/scule/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/dist/chunks/vue-template.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/node_modules/magic-string/dist/magic-string.es.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/sourcemap-codec/dist/sourcemap-codec.umd.js [jiti] [native] /Users/pooya/Code/studio/node_modules/strip-literal/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/local-pkg/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/fast-glob/out/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/scule/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/dist/chunks/vue-template.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/node_modules/magic-string/dist/magic-string.es.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/sourcemap-codec/dist/sourcemap-codec.umd.js [jiti] [native] /Users/pooya/Code/studio/node_modules/strip-literal/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/strip-literal/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/local-pkg/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/ohash/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/@rollup/plugin-replace/dist/rollup-plugin-replace.cjs.js [jiti] [native] /Users/pooya/Code/studio/node_modules/@vercel/nft/out/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/semver/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/etag/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/mime/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/nitropack/node_modules/esbuild/lib/main.js [jiti] [native] /Users/pooya/Code/studio/node_modules/nitropack/node_modules/@rollup/pluginutils/dist/cjs/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/perfect-debounce/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/h3/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/ufo/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/radix3/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/destr/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/cookie-es/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/http-proxy/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/listhen/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/ufo/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/colorette/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/get-port-please/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/fs-memo/dist/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/http-shutdown/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/defu/dist/defu.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/serve-placeholder/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/defu/dist/defu.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/serve-static/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/ufo/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/chokidar/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/chalk/source/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/chalk/source/vendor/ansi-styles/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/chalk/source/vendor/supports-color/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/chalk/source/utilities.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/hookable/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/dist/chunks/context.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/fast-glob/out/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/scule/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/dist/chunks/vue-template.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/node_modules/magic-string/dist/magic-string.es.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/sourcemap-codec/dist/sourcemap-codec.umd.js [jiti] [native] /Users/pooya/Code/studio/node_modules/strip-literal/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/local-pkg/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/dist/chunks/vue-template.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/node_modules/magic-string/dist/magic-string.es.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/sourcemap-codec/dist/sourcemap-codec.umd.js [jiti] [native] /Users/pooya/Code/studio/node_modules/strip-literal/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/fast-glob/out/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/scule/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/local-pkg/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/node_modules/magic-string/dist/magic-string.es.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/sourcemap-codec/dist/sourcemap-codec.umd.js [jiti] [native] /Users/pooya/Code/studio/node_modules/strip-literal/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/consola/dist/consola.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/c12/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/dotenv/lib/main.js [jiti] [native] /Users/pooya/Code/studio/node_modules/jiti/lib/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/rc9/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/defu/dist/defu.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/klona/full/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/scule/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/defu/dist/defu.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/std-env/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/fs-extra/lib/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/jiti/lib/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/dot-prop/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/archiver/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/merge2/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/fast-glob/out/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/dir-glob/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/ignore.js [jiti] [native] /Users/pooya/Code/studio/node_modules/fast-glob/out/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/ignore/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/node_modules/slash/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/utilities.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/utilities.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pkg-types/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unstorage/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/destr/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unstorage/dist/chunks/_utils.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/nitropack/node_modules/rollup/dist/rollup.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/nitropack/node_modules/pretty-bytes/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/gzip-size/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/duplexer/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/nitropack/node_modules/rollup-plugin-terser/rollup-plugin-terser.js [jiti] [transpile] /Users/pooya/Code/studio/node_modules/nitropack/node_modules/@rollup/plugin-commonjs/dist/cjs/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/nitropack/node_modules/@rollup/plugin-commonjs/node_modules/@rollup/pluginutils/dist/cjs/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/commondir/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/glob/glob.js [jiti] [native] /Users/pooya/Code/studio/node_modules/estree-walker/dist/umd/estree-walker.js [jiti] [native] /Users/pooya/Code/studio/node_modules/magic-string/dist/magic-string.cjs.js [jiti] [native] /Users/pooya/Code/studio/node_modules/is-reference/dist/is-reference.js [jiti] [transpile] /Users/pooya/Code/studio/node_modules/@rollup/plugin-node-resolve/dist/cjs/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/is-builtin-module/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/deepmerge/dist/cjs.js [jiti] [native] /Users/pooya/Code/studio/node_modules/is-module/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/resolve/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/@rollup/pluginutils/dist/cjs/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/nitropack/node_modules/@rollup/plugin-alias/dist/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/nitropack/node_modules/@rollup/plugin-json/dist/index.js [jiti] [transpile] /Users/pooya/Code/studio/node_modules/nitropack/node_modules/@rollup/plugin-wasm/dist/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/nitropack/node_modules/@rollup/plugin-inject/dist/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/nitropack/node_modules/rollup-plugin-visualizer/dist/plugin/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/unenv/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/dist/unplugin.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unplugin/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/chokidar/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/acorn/dist/acorn.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/webpack-virtual-modules/lib/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/webpack-sources/lib/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/unimport/node_modules/@rollup/pluginutils/dist/cjs/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/node_modules/magic-string/dist/magic-string.es.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/sourcemap-codec/dist/sourcemap-codec.umd.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/dist/chunks/context.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/fast-glob/out/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/scule/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/dist/chunks/vue-template.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/node_modules/magic-string/dist/magic-string.es.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/sourcemap-codec/dist/sourcemap-codec.umd.js [jiti] [native] /Users/pooya/Code/studio/node_modules/strip-literal/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/local-pkg/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/fast-glob/out/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/scule/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/dist/chunks/vue-template.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/node_modules/magic-string/dist/magic-string.es.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/sourcemap-codec/dist/sourcemap-codec.umd.js [jiti] [native] /Users/pooya/Code/studio/node_modules/strip-literal/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/strip-literal/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/local-pkg/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/ohash/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/@rollup/plugin-replace/dist/rollup-plugin-replace.cjs.js [jiti] [native] /Users/pooya/Code/studio/node_modules/@vercel/nft/out/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/semver/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/etag/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/mime/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/nitropack/node_modules/esbuild/lib/main.js [jiti] [native] /Users/pooya/Code/studio/node_modules/nitropack/node_modules/@rollup/pluginutils/dist/cjs/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/fs-extra/lib/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/h3/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/ufo/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/radix3/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/destr/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/cookie-es/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/chokidar/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/perfect-debounce/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/untyped/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/untyped/dist/shared/untyped.c53e415b.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/scule/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/scule/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/ohash/dist/index.mjs [jiti] [transpile] /Users/pooya/Code/studio/src/module.ts [jiti] [native] /Users/pooya/Code/studio/node_modules/ufo/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/defu/dist/defu.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/@nuxt/kit/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/hash-sum/hash-sum.js [jiti] [native] /Users/pooya/Code/studio/node_modules/unctx/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/scule/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/semver/functions/satisfies.js [jiti] [native] /Users/pooya/Code/studio/node_modules/consola/dist/consola.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/merge2/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/fast-glob/out/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/dir-glob/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/ignore.js [jiti] [native] /Users/pooya/Code/studio/node_modules/fast-glob/out/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/ignore/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/node_modules/slash/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/utilities.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/utilities.js [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/jiti/lib/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/ignore/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/defu/dist/defu.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/untyped/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/untyped/dist/shared/untyped.c53e415b.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/scule/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/scule/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/lodash.template/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/knitwork/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/c12/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/dotenv/lib/main.js [jiti] [native] /Users/pooya/Code/studio/node_modules/jiti/lib/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/rc9/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/defu/dist/defu.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/@nuxt/schema/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/defu/dist/defu.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/std-env/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/create-require/create-require.js [jiti] [native] /Users/pooya/Code/studio/node_modules/scule/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/jiti/lib/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/ufo/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/postcss-import-resolver/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pkg-types/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/nuxt-component-meta/dist/module.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/@nuxt/kit/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/hash-sum/hash-sum.js [jiti] [native] /Users/pooya/Code/studio/node_modules/unctx/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/scule/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/semver/functions/satisfies.js [jiti] [native] /Users/pooya/Code/studio/node_modules/consola/dist/consola.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/merge2/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/fast-glob/out/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/dir-glob/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/ignore.js [jiti] [native] /Users/pooya/Code/studio/node_modules/fast-glob/out/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/ignore/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/node_modules/slash/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/utilities.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/utilities.js [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/jiti/lib/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/ignore/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/defu/dist/defu.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/untyped/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/untyped/dist/shared/untyped.c53e415b.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/scule/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/scule/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/lodash.template/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/knitwork/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/c12/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/dotenv/lib/main.js [jiti] [native] /Users/pooya/Code/studio/node_modules/jiti/lib/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/rc9/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/defu/dist/defu.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/@nuxt/schema/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/defu/dist/defu.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/std-env/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/create-require/create-require.js [jiti] [native] /Users/pooya/Code/studio/node_modules/scule/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/jiti/lib/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/ufo/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/postcss-import-resolver/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pkg-types/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [transpile] /Users/pooya/Code/studio/node_modules/vue-component-meta/out/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/@volar/vue-language-core/out/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/@volar/vue-language-core/out/index.js [jiti] [transpile] /Users/pooya/Code/studio/node_modules/typescript/lib/tsserverlibrary.js [jiti] [transpile] /Users/pooya/Code/studio/node_modules/@nuxt-themes/elements-edge/theme/nuxt.config.ts [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/nuxt/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/hookable/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/@nuxt/kit/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/hash-sum/hash-sum.js [jiti] [native] /Users/pooya/Code/studio/node_modules/unctx/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/scule/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/semver/functions/satisfies.js [jiti] [native] /Users/pooya/Code/studio/node_modules/consola/dist/consola.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/merge2/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/fast-glob/out/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/dir-glob/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/ignore.js [jiti] [native] /Users/pooya/Code/studio/node_modules/fast-glob/out/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/ignore/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/node_modules/slash/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/utilities.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/utilities.js [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/jiti/lib/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/ignore/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/defu/dist/defu.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/untyped/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/untyped/dist/shared/untyped.c53e415b.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/scule/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/scule/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/lodash.template/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/knitwork/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/c12/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/dotenv/lib/main.js [jiti] [native] /Users/pooya/Code/studio/node_modules/jiti/lib/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/rc9/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/defu/dist/defu.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/@nuxt/schema/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/defu/dist/defu.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/std-env/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/create-require/create-require.js [jiti] [native] /Users/pooya/Code/studio/node_modules/scule/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/jiti/lib/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/ufo/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/postcss-import-resolver/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pkg-types/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/escape-string-regexp/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/knitwork/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/ufo/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/scule/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unplugin/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/chokidar/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/acorn/dist/acorn.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/webpack-virtual-modules/lib/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/webpack-sources/lib/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/nuxt/node_modules/magic-string/dist/magic-string.es.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/sourcemap-codec/dist/sourcemap-codec.umd.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/merge2/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/fast-glob/out/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/dir-glob/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/ignore.js [jiti] [native] /Users/pooya/Code/studio/node_modules/fast-glob/out/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/ignore/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/node_modules/slash/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/utilities.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/utilities.js [jiti] [native] /Users/pooya/Code/studio/node_modules/@vue/shared/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/dist/chunks/context.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/fast-glob/out/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/scule/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/dist/chunks/vue-template.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/node_modules/magic-string/dist/magic-string.es.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/sourcemap-codec/dist/sourcemap-codec.umd.js [jiti] [native] /Users/pooya/Code/studio/node_modules/strip-literal/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/local-pkg/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/dist/chunks/vue-template.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/node_modules/magic-string/dist/magic-string.es.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/sourcemap-codec/dist/sourcemap-codec.umd.js [jiti] [native] /Users/pooya/Code/studio/node_modules/strip-literal/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/fast-glob/out/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/scule/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/local-pkg/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/node_modules/magic-string/dist/magic-string.es.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/sourcemap-codec/dist/sourcemap-codec.umd.js [jiti] [native] /Users/pooya/Code/studio/node_modules/strip-literal/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/defu/dist/defu.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unctx/dist/transform.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/acorn/dist/acorn.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unctx/node_modules/magic-string/dist/magic-string.es.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/sourcemap-codec/dist/sourcemap-codec.umd.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unctx/node_modules/estree-walker/src/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unctx/node_modules/estree-walker/src/sync.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unctx/node_modules/estree-walker/src/walker.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unctx/node_modules/estree-walker/src/async.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unctx/node_modules/estree-walker/src/walker.js [jiti] [native] /Users/pooya/Code/studio/node_modules/strip-literal/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/nitropack/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/nitropack/dist/shared/nitro.8d0213e3.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/perfect-debounce/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/h3/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/ufo/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/radix3/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/destr/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/cookie-es/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/http-proxy/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/listhen/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/ufo/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/colorette/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/get-port-please/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/fs-memo/dist/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/http-shutdown/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/defu/dist/defu.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/serve-placeholder/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/defu/dist/defu.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/serve-static/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/ufo/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/chokidar/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/chalk/source/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/chalk/source/vendor/ansi-styles/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/chalk/source/vendor/supports-color/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/chalk/source/utilities.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/hookable/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/dist/chunks/context.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/fast-glob/out/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/scule/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/dist/chunks/vue-template.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/node_modules/magic-string/dist/magic-string.es.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/sourcemap-codec/dist/sourcemap-codec.umd.js [jiti] [native] /Users/pooya/Code/studio/node_modules/strip-literal/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/local-pkg/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/dist/chunks/vue-template.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/node_modules/magic-string/dist/magic-string.es.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/sourcemap-codec/dist/sourcemap-codec.umd.js [jiti] [native] /Users/pooya/Code/studio/node_modules/strip-literal/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/fast-glob/out/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/scule/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/local-pkg/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/node_modules/magic-string/dist/magic-string.es.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/sourcemap-codec/dist/sourcemap-codec.umd.js [jiti] [native] /Users/pooya/Code/studio/node_modules/strip-literal/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/consola/dist/consola.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/c12/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/dotenv/lib/main.js [jiti] [native] /Users/pooya/Code/studio/node_modules/jiti/lib/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/rc9/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/defu/dist/defu.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/klona/full/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/scule/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/defu/dist/defu.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/std-env/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/fs-extra/lib/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/jiti/lib/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/dot-prop/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/archiver/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/merge2/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/fast-glob/out/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/dir-glob/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/ignore.js [jiti] [native] /Users/pooya/Code/studio/node_modules/fast-glob/out/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/ignore/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/node_modules/slash/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/utilities.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/utilities.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pkg-types/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unstorage/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/destr/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unstorage/dist/chunks/_utils.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/nitropack/node_modules/rollup/dist/rollup.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/nitropack/node_modules/pretty-bytes/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/gzip-size/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/duplexer/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/nitropack/node_modules/rollup-plugin-terser/rollup-plugin-terser.js [jiti] [transpile] /Users/pooya/Code/studio/node_modules/nitropack/node_modules/@rollup/plugin-commonjs/dist/cjs/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/nitropack/node_modules/@rollup/plugin-commonjs/node_modules/@rollup/pluginutils/dist/cjs/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/commondir/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/glob/glob.js [jiti] [native] /Users/pooya/Code/studio/node_modules/estree-walker/dist/umd/estree-walker.js [jiti] [native] /Users/pooya/Code/studio/node_modules/magic-string/dist/magic-string.cjs.js [jiti] [native] /Users/pooya/Code/studio/node_modules/is-reference/dist/is-reference.js [jiti] [transpile] /Users/pooya/Code/studio/node_modules/@rollup/plugin-node-resolve/dist/cjs/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/is-builtin-module/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/deepmerge/dist/cjs.js [jiti] [native] /Users/pooya/Code/studio/node_modules/is-module/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/resolve/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/@rollup/pluginutils/dist/cjs/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/nitropack/node_modules/@rollup/plugin-alias/dist/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/nitropack/node_modules/@rollup/plugin-json/dist/index.js [jiti] [transpile] /Users/pooya/Code/studio/node_modules/nitropack/node_modules/@rollup/plugin-wasm/dist/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/nitropack/node_modules/@rollup/plugin-inject/dist/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/nitropack/node_modules/rollup-plugin-visualizer/dist/plugin/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/unenv/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/dist/unplugin.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unplugin/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/chokidar/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/acorn/dist/acorn.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/webpack-virtual-modules/lib/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/webpack-sources/lib/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/unimport/node_modules/@rollup/pluginutils/dist/cjs/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/node_modules/magic-string/dist/magic-string.es.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/sourcemap-codec/dist/sourcemap-codec.umd.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/dist/chunks/context.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/fast-glob/out/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/scule/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/dist/chunks/vue-template.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/node_modules/magic-string/dist/magic-string.es.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/sourcemap-codec/dist/sourcemap-codec.umd.js [jiti] [native] /Users/pooya/Code/studio/node_modules/strip-literal/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/local-pkg/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/fast-glob/out/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/scule/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/dist/chunks/vue-template.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/node_modules/magic-string/dist/magic-string.es.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/sourcemap-codec/dist/sourcemap-codec.umd.js [jiti] [native] /Users/pooya/Code/studio/node_modules/strip-literal/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/strip-literal/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/local-pkg/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/ohash/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/@rollup/plugin-replace/dist/rollup-plugin-replace.cjs.js [jiti] [native] /Users/pooya/Code/studio/node_modules/@vercel/nft/out/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/semver/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/etag/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/mime/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/nitropack/node_modules/esbuild/lib/main.js [jiti] [native] /Users/pooya/Code/studio/node_modules/nitropack/node_modules/@rollup/pluginutils/dist/cjs/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/perfect-debounce/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/h3/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/ufo/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/radix3/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/destr/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/cookie-es/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/http-proxy/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/listhen/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/ufo/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/colorette/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/get-port-please/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/fs-memo/dist/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/http-shutdown/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/defu/dist/defu.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/serve-placeholder/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/defu/dist/defu.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/serve-static/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/ufo/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/chokidar/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/chalk/source/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/chalk/source/vendor/ansi-styles/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/chalk/source/vendor/supports-color/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/chalk/source/utilities.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/hookable/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/dist/chunks/context.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/fast-glob/out/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/scule/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/dist/chunks/vue-template.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/node_modules/magic-string/dist/magic-string.es.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/sourcemap-codec/dist/sourcemap-codec.umd.js [jiti] [native] /Users/pooya/Code/studio/node_modules/strip-literal/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/local-pkg/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/dist/chunks/vue-template.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/node_modules/magic-string/dist/magic-string.es.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/sourcemap-codec/dist/sourcemap-codec.umd.js [jiti] [native] /Users/pooya/Code/studio/node_modules/strip-literal/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/fast-glob/out/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/scule/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/local-pkg/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/node_modules/magic-string/dist/magic-string.es.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/sourcemap-codec/dist/sourcemap-codec.umd.js [jiti] [native] /Users/pooya/Code/studio/node_modules/strip-literal/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/consola/dist/consola.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/c12/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/dotenv/lib/main.js [jiti] [native] /Users/pooya/Code/studio/node_modules/jiti/lib/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/rc9/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/defu/dist/defu.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/klona/full/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/scule/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/defu/dist/defu.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/std-env/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/fs-extra/lib/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/jiti/lib/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/dot-prop/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/archiver/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/merge2/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/fast-glob/out/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/dir-glob/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/ignore.js [jiti] [native] /Users/pooya/Code/studio/node_modules/fast-glob/out/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/ignore/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/node_modules/slash/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/utilities.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/utilities.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pkg-types/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unstorage/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/destr/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unstorage/dist/chunks/_utils.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/nitropack/node_modules/rollup/dist/rollup.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/nitropack/node_modules/pretty-bytes/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/gzip-size/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/duplexer/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/nitropack/node_modules/rollup-plugin-terser/rollup-plugin-terser.js [jiti] [transpile] /Users/pooya/Code/studio/node_modules/nitropack/node_modules/@rollup/plugin-commonjs/dist/cjs/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/nitropack/node_modules/@rollup/plugin-commonjs/node_modules/@rollup/pluginutils/dist/cjs/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/commondir/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/glob/glob.js [jiti] [native] /Users/pooya/Code/studio/node_modules/estree-walker/dist/umd/estree-walker.js [jiti] [native] /Users/pooya/Code/studio/node_modules/magic-string/dist/magic-string.cjs.js [jiti] [native] /Users/pooya/Code/studio/node_modules/is-reference/dist/is-reference.js [jiti] [transpile] /Users/pooya/Code/studio/node_modules/@rollup/plugin-node-resolve/dist/cjs/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/is-builtin-module/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/deepmerge/dist/cjs.js [jiti] [native] /Users/pooya/Code/studio/node_modules/is-module/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/resolve/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/@rollup/pluginutils/dist/cjs/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/nitropack/node_modules/@rollup/plugin-alias/dist/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/nitropack/node_modules/@rollup/plugin-json/dist/index.js [jiti] [transpile] /Users/pooya/Code/studio/node_modules/nitropack/node_modules/@rollup/plugin-wasm/dist/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/nitropack/node_modules/@rollup/plugin-inject/dist/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/nitropack/node_modules/rollup-plugin-visualizer/dist/plugin/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/unenv/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/dist/unplugin.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unplugin/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/chokidar/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/acorn/dist/acorn.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/webpack-virtual-modules/lib/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/webpack-sources/lib/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/unimport/node_modules/@rollup/pluginutils/dist/cjs/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/node_modules/magic-string/dist/magic-string.es.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/sourcemap-codec/dist/sourcemap-codec.umd.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/dist/chunks/context.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/fast-glob/out/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/scule/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/dist/chunks/vue-template.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/node_modules/magic-string/dist/magic-string.es.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/sourcemap-codec/dist/sourcemap-codec.umd.js [jiti] [native] /Users/pooya/Code/studio/node_modules/strip-literal/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/local-pkg/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/fast-glob/out/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/scule/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/dist/chunks/vue-template.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/unimport/node_modules/magic-string/dist/magic-string.es.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/sourcemap-codec/dist/sourcemap-codec.umd.js [jiti] [native] /Users/pooya/Code/studio/node_modules/strip-literal/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/strip-literal/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/local-pkg/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/ohash/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/@rollup/plugin-replace/dist/rollup-plugin-replace.cjs.js [jiti] [native] /Users/pooya/Code/studio/node_modules/@vercel/nft/out/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/semver/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/etag/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/mime/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/nitropack/node_modules/esbuild/lib/main.js [jiti] [native] /Users/pooya/Code/studio/node_modules/nitropack/node_modules/@rollup/pluginutils/dist/cjs/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/fs-extra/lib/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/h3/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/ufo/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/radix3/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/destr/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/cookie-es/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/chokidar/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/perfect-debounce/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/untyped/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/untyped/dist/shared/untyped.c53e415b.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/scule/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/scule/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/ohash/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/@nuxt/kit/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/hash-sum/hash-sum.js [jiti] [native] /Users/pooya/Code/studio/node_modules/unctx/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/scule/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/semver/functions/satisfies.js [jiti] [native] /Users/pooya/Code/studio/node_modules/consola/dist/consola.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/merge2/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/fast-glob/out/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/dir-glob/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/ignore.js [jiti] [native] /Users/pooya/Code/studio/node_modules/fast-glob/out/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/ignore/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/node_modules/slash/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/utilities.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/utilities.js [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/jiti/lib/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/ignore/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/defu/dist/defu.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/untyped/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/untyped/dist/shared/untyped.c53e415b.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/scule/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/scule/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/lodash.template/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/knitwork/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/c12/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/dotenv/lib/main.js [jiti] [native] /Users/pooya/Code/studio/node_modules/jiti/lib/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/rc9/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/defu/dist/defu.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/@nuxt/schema/dist/index.mjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/defu/dist/defu.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/std-env/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/create-require/create-require.js [jiti] [native] /Users/pooya/Code/studio/node_modules/scule/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/jiti/lib/index.js [jiti] [native] /Users/pooya/Code/studio/node_modules/ufo/dist/index.cjs [jiti] [native] /Users/pooya/Code/studio/node_modules/postcss-import-resolver/index.js [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pkg-types/dist/index.mjs [jiti] [native] /Users/pooya/Code/studio/node_modules/mlly/dist/index.cjs [jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs

Local: http://localhost:3000/
Network: http://10.0.0.107:3000/

ℹ To develop Nuxt Studio:

  • Change directory to ./module
  • Run yarn play
  • Copy app/.env.example to app/.env and adjust based on playground port
  • Run yarn dev on another terminal and open studio url

[jiti] [transpile] /Users/pooya/Code/studio/node_modules/@nuxt-themes/elements-edge/theme/theme.config.ts
[jiti] [cache hit] /Users/pooya/Code/studio/node_modules/@nuxt-themes/elements-edge/theme/theme.config.ts ~> /var/folders/s0/k4lcb4b50bj9r4fch4_1h_l40000gn/T/node-jiti/theme-theme.config.ts.3c645fb7.js
[jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/@nuxt-themes/config/dist/index.mjs
[jiti] [cache hit] /Users/pooya/Code/studio/node_modules/@nuxt-themes/config/dist/index.mjs ~> /var/folders/s0/k4lcb4b50bj9r4fch4_1h_l40000gn/T/node-jiti/dist-index.mjs.5ab68922.js
[jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/@nuxt/kit/dist/index.mjs
[jiti] [cache hit] /Users/pooya/Code/studio/node_modules/@nuxt/kit/dist/index.mjs ~> /var/folders/s0/k4lcb4b50bj9r4fch4_1h_l40000gn/T/node-jiti/dist-index.mjs.17864f9e.js
[jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs
[jiti] [cache hit] /Users/pooya/Code/studio/node_modules/pathe/dist/index.mjs ~> /var/folders/s0/k4lcb4b50bj9r4fch4_1h_l40000gn/T/node-jiti/dist-index.mjs.46afb143.js
[jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/index.js
[jiti] [cache hit] /Users/pooya/Code/studio/node_modules/globby/index.js ~> /var/folders/s0/k4lcb4b50bj9r4fch4_1h_l40000gn/T/node-jiti/globby-index.js.77efce64.js
[jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/ignore.js
[jiti] [cache hit] /Users/pooya/Code/studio/node_modules/globby/ignore.js ~> /var/folders/s0/k4lcb4b50bj9r4fch4_1h_l40000gn/T/node-jiti/globby-ignore.js.08a85408.js
[jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/node_modules/slash/index.js
[jiti] [cache hit] /Users/pooya/Code/studio/node_modules/globby/node_modules/slash/index.js ~> /var/folders/s0/k4lcb4b50bj9r4fch4_1h_l40000gn/T/node-jiti/slash-index.js.67853907.js
[jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/globby/utilities.js
[jiti] [cache hit] /Users/pooya/Code/studio/node_modules/globby/utilities.js ~> /var/folders/s0/k4lcb4b50bj9r4fch4_1h_l40000gn/T/node-jiti/globby-utilities.js.895b9808.js
[jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/untyped/dist/index.mjs
[jiti] [cache hit] /Users/pooya/Code/studio/node_modules/untyped/dist/index.mjs ~> /var/folders/s0/k4lcb4b50bj9r4fch4_1h_l40000gn/T/node-jiti/dist-index.mjs.891798d6.js
[jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/untyped/dist/shared/untyped.c53e415b.mjs
[jiti] [cache hit] /Users/pooya/Code/studio/node_modules/untyped/dist/shared/untyped.c53e415b.mjs ~> /var/folders/s0/k4lcb4b50bj9r4fch4_1h_l40000gn/T/node-jiti/shared-untyped.c53e415b.mjs.bc241ca2.js
[jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/knitwork/dist/index.mjs
[jiti] [cache hit] /Users/pooya/Code/studio/node_modules/knitwork/dist/index.mjs ~> /var/folders/s0/k4lcb4b50bj9r4fch4_1h_l40000gn/T/node-jiti/dist-index.mjs.4042bb33.js
[jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/c12/dist/index.mjs
[jiti] [cache hit] /Users/pooya/Code/studio/node_modules/c12/dist/index.mjs ~> /var/folders/s0/k4lcb4b50bj9r4fch4_1h_l40000gn/T/node-jiti/dist-index.mjs.5239adcc.js
[jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/@nuxt/schema/dist/index.mjs
[jiti] [cache hit] /Users/pooya/Code/studio/node_modules/@nuxt/schema/dist/index.mjs ~> /var/folders/s0/k4lcb4b50bj9r4fch4_1h_l40000gn/T/node-jiti/dist-index.mjs.13122b79.js
[jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/std-env/dist/index.mjs
[jiti] [cache hit] /Users/pooya/Code/studio/node_modules/std-env/dist/index.mjs ~> /var/folders/s0/k4lcb4b50bj9r4fch4_1h_l40000gn/T/node-jiti/dist-index.mjs.c6934b02.js
[jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/pkg-types/dist/index.mjs
[jiti] [cache hit] /Users/pooya/Code/studio/node_modules/pkg-types/dist/index.mjs ~> /var/folders/s0/k4lcb4b50bj9r4fch4_1h_l40000gn/T/node-jiti/dist-index.mjs.74d5565f.js
[jiti] [transpile] /Users/pooya/Code/studio/playground/tokens.config.ts
[jiti] [cache hit] /Users/pooya/Code/studio/playground/tokens.config.ts ~> /var/folders/s0/k4lcb4b50bj9r4fch4_1h_l40000gn/T/node-jiti/playground-tokens.config.ts.0bbcedf6.js
[jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/@nuxtjs/design-tokens/dist/index.mjs
[jiti] [cache hit] /Users/pooya/Code/studio/node_modules/@nuxtjs/design-tokens/dist/index.mjs ~> /var/folders/s0/k4lcb4b50bj9r4fch4_1h_l40000gn/T/node-jiti/dist-index.mjs.f3f14ebd.js
[jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/@nuxtjs/design-tokens/dist/chunks/index.mjs
[jiti] [cache hit] /Users/pooya/Code/studio/node_modules/@nuxtjs/design-tokens/dist/chunks/index.mjs ~> /var/folders/s0/k4lcb4b50bj9r4fch4_1h_l40000gn/T/node-jiti/chunks-index.mjs.3792b739.js
[jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/chalk/source/index.js
[jiti] [cache hit] /Users/pooya/Code/studio/node_modules/chalk/source/index.js ~> /var/folders/s0/k4lcb4b50bj9r4fch4_1h_l40000gn/T/node-jiti/source-index.js.90d46efc.js
[jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/chalk/source/vendor/ansi-styles/index.js
[jiti] [cache hit] /Users/pooya/Code/studio/node_modules/chalk/source/vendor/ansi-styles/index.js ~> /var/folders/s0/k4lcb4b50bj9r4fch4_1h_l40000gn/T/node-jiti/ansi-styles-index.js.25c8a2c3.js
[jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/chalk/source/vendor/supports-color/index.js
[jiti] [cache hit] /Users/pooya/Code/studio/node_modules/chalk/source/vendor/supports-color/index.js ~> /var/folders/s0/k4lcb4b50bj9r4fch4_1h_l40000gn/T/node-jiti/supports-color-index.js.4d595ea7.js
[jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/chalk/source/utilities.js
[jiti] [cache hit] /Users/pooya/Code/studio/node_modules/chalk/source/utilities.js ~> /var/folders/s0/k4lcb4b50bj9r4fch4_1h_l40000gn/T/node-jiti/source-utilities.js.ace9f470.js
[jiti] [transpile] /Users/pooya/Code/studio/node_modules/@nuxt-themes/elements-edge/theme/tokens.config.ts
[jiti] [cache hit] /Users/pooya/Code/studio/node_modules/@nuxt-themes/elements-edge/theme/tokens.config.ts ~> /var/folders/s0/k4lcb4b50bj9r4fch4_1h_l40000gn/T/node-jiti/theme-tokens.config.ts.d142b552.js
[jiti] [transpile] /Users/pooya/Code/studio/node_modules/@nuxt-themes/elements-edge/theme/colors.ts
[jiti] [cache hit] /Users/pooya/Code/studio/node_modules/@nuxt-themes/elements-edge/theme/colors.ts ~> /var/folders/s0/k4lcb4b50bj9r4fch4_1h_l40000gn/T/node-jiti/theme-colors.ts.84beb8ed.js
[jiti] [native] /Users/pooya/Code/studio/node_modules/postcss-import/index.js
[jiti] [native] /Users/pooya/Code/studio/node_modules/postcss-url/src/index.js
[jiti] [native] /Users/pooya/Code/studio/node_modules/postcss-nested/index.js
[jiti] [transpile esm module] /Users/pooya/Code/studio/node_modules/postcss-custom-properties/dist/index.mjs
[jiti] [cache hit] /Users/pooya/Code/studio/node_modules/postcss-custom-properties/dist/index.mjs ~> /var/folders/s0/k4lcb4b50bj9r4fch4_1h_l40000gn/T/node-jiti/dist-index.mjs.b5450c40.js
[jiti] [native] /Users/pooya/Code/studio/node_modules/autoprefixer/lib/autoprefixer.js
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
ℹ Vite server warmed up in 59ms
ℹ @nuxt-themes/config-edge v0.0.1-27687966.36116a1 enabled!
[jiti] [transpile] /Users/pooya/Code/studio/playground/tokens.config.ts
[jiti] [cache hit] /Users/pooya/Code/studio/playground/tokens.config.ts ~> /var/folders/s0/k4lcb4b50bj9r4fch4_1h_l40000gn/T/node-jiti/playground-tokens.config.ts.0bbcedf6.js
✔ Design Tokens built in 42ms
✔ Nitro built in 583 ms
ℹ Vite client warmed up in 18164ms
✔ Vite server hmr 2 files in 5.617ms
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/types.d.ts
[jiti] [transpile] /Users/pooya/Code/studio/playground/.nuxt/tokens/index.ts

@danielroe
Copy link
Contributor

danielroe commented Sep 5, 2022

raised issue @ jiti ~> unjs/jiti#80

@Atinux
Copy link
Member

Atinux commented Sep 7, 2022

Can you upgrade the dependencies and see if it works now @kevinmarrec ?

@danielroe
Copy link
Contributor

Update: we've decreased time to load config files from 10s (with single theme, as in this repo, or 15-20s with multiple ones 🤦‍♂️) down to approx 1s.

Two issues remain:

  1. slow first load. Have chatted briefly to @antfu and am investigating further. It seems that warming up server has no effect when using with vite node. It is a temporary workaround to change bundler to legacy.
  2. long warmup. still investigating, but large number of global components seems relevant - each is being processed fully.

@danielroe
Copy link
Contributor

Should be much faster now! Warmup is 5s, and first request is also 5s.

We're tracking the issue with vite-node warmup here: nuxt/nuxt#14898.

@danielroe danielroe removed their assignment Sep 15, 2022
@kevinmarrec
Copy link
Contributor

kevinmarrec commented Sep 15, 2022

Thank you @danielroe & @pi0

We'll be able to merge this soon then !

@kevinmarrec
Copy link
Contributor

Should be mostly fine, I'll try to find a fix for string props having unwanted single quotes in the editor.

Copy link
Contributor

@kevinmarrec kevinmarrec left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the PR @farnabaz ! 💚

@kevinmarrec kevinmarrec merged commit b2023f6 into dev Sep 15, 2022
@kevinmarrec kevinmarrec deleted the chore/upgrade-component-meta branch September 15, 2022 13:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
6 participants