@zappdev/cli 0.1.1 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +24 -21
- package/dist/zapp-cli.js +38 -3
- package/native/src/app/app.zc +30 -7
- package/native/src/cli/node_modules/@esbuild/darwin-arm64/README.md +3 -0
- package/native/src/cli/node_modules/@esbuild/darwin-arm64/bin/esbuild +0 -0
- package/native/src/cli/node_modules/@esbuild/darwin-arm64/package.json +20 -0
- package/native/src/cli/node_modules/@types/bun/LICENSE +21 -0
- package/native/src/cli/node_modules/@types/bun/README.md +20 -0
- package/native/src/cli/node_modules/@types/bun/index.d.ts +1 -0
- package/native/src/cli/node_modules/@types/bun/package.json +53 -0
- package/native/src/cli/node_modules/@types/node/LICENSE +21 -0
- package/native/src/cli/node_modules/@types/node/README.md +15 -0
- package/native/src/cli/node_modules/@types/node/assert/strict.d.ts +111 -0
- package/native/src/cli/node_modules/@types/node/assert.d.ts +1078 -0
- package/native/src/cli/node_modules/@types/node/async_hooks.d.ts +603 -0
- package/native/src/cli/node_modules/@types/node/buffer.buffer.d.ts +472 -0
- package/native/src/cli/node_modules/@types/node/buffer.d.ts +1934 -0
- package/native/src/cli/node_modules/@types/node/child_process.d.ts +1476 -0
- package/native/src/cli/node_modules/@types/node/cluster.d.ts +578 -0
- package/native/src/cli/node_modules/@types/node/compatibility/disposable.d.ts +14 -0
- package/native/src/cli/node_modules/@types/node/compatibility/index.d.ts +9 -0
- package/native/src/cli/node_modules/@types/node/compatibility/indexable.d.ts +20 -0
- package/native/src/cli/node_modules/@types/node/compatibility/iterators.d.ts +20 -0
- package/native/src/cli/node_modules/@types/node/console.d.ts +452 -0
- package/native/src/cli/node_modules/@types/node/constants.d.ts +21 -0
- package/native/src/cli/node_modules/@types/node/crypto.d.ts +4545 -0
- package/native/src/cli/node_modules/@types/node/dgram.d.ts +600 -0
- package/native/src/cli/node_modules/@types/node/diagnostics_channel.d.ts +578 -0
- package/native/src/cli/node_modules/@types/node/dns/promises.d.ts +503 -0
- package/native/src/cli/node_modules/@types/node/dns.d.ts +923 -0
- package/native/src/cli/node_modules/@types/node/domain.d.ts +170 -0
- package/native/src/cli/node_modules/@types/node/events.d.ts +976 -0
- package/native/src/cli/node_modules/@types/node/fs/promises.d.ts +1295 -0
- package/native/src/cli/node_modules/@types/node/fs.d.ts +4461 -0
- package/native/src/cli/node_modules/@types/node/globals.d.ts +172 -0
- package/native/src/cli/node_modules/@types/node/globals.typedarray.d.ts +38 -0
- package/native/src/cli/node_modules/@types/node/http.d.ts +2089 -0
- package/native/src/cli/node_modules/@types/node/http2.d.ts +2644 -0
- package/native/src/cli/node_modules/@types/node/https.d.ts +579 -0
- package/native/src/cli/node_modules/@types/node/index.d.ts +97 -0
- package/native/src/cli/node_modules/@types/node/inspector.d.ts +253 -0
- package/native/src/cli/node_modules/@types/node/inspector.generated.d.ts +4052 -0
- package/native/src/cli/node_modules/@types/node/module.d.ts +891 -0
- package/native/src/cli/node_modules/@types/node/net.d.ts +1057 -0
- package/native/src/cli/node_modules/@types/node/os.d.ts +506 -0
- package/native/src/cli/node_modules/@types/node/package.json +145 -0
- package/native/src/cli/node_modules/@types/node/path.d.ts +200 -0
- package/native/src/cli/node_modules/@types/node/perf_hooks.d.ts +968 -0
- package/native/src/cli/node_modules/@types/node/process.d.ts +2084 -0
- package/native/src/cli/node_modules/@types/node/punycode.d.ts +117 -0
- package/native/src/cli/node_modules/@types/node/querystring.d.ts +152 -0
- package/native/src/cli/node_modules/@types/node/readline/promises.d.ts +161 -0
- package/native/src/cli/node_modules/@types/node/readline.d.ts +594 -0
- package/native/src/cli/node_modules/@types/node/repl.d.ts +428 -0
- package/native/src/cli/node_modules/@types/node/sea.d.ts +153 -0
- package/native/src/cli/node_modules/@types/node/sqlite.d.ts +721 -0
- package/native/src/cli/node_modules/@types/node/stream/consumers.d.ts +38 -0
- package/native/src/cli/node_modules/@types/node/stream/promises.d.ts +90 -0
- package/native/src/cli/node_modules/@types/node/stream/web.d.ts +622 -0
- package/native/src/cli/node_modules/@types/node/stream.d.ts +1664 -0
- package/native/src/cli/node_modules/@types/node/string_decoder.d.ts +67 -0
- package/native/src/cli/node_modules/@types/node/test.d.ts +2163 -0
- package/native/src/cli/node_modules/@types/node/timers/promises.d.ts +108 -0
- package/native/src/cli/node_modules/@types/node/timers.d.ts +287 -0
- package/native/src/cli/node_modules/@types/node/tls.d.ts +1319 -0
- package/native/src/cli/node_modules/@types/node/trace_events.d.ts +197 -0
- package/native/src/cli/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +468 -0
- package/native/src/cli/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +34 -0
- package/native/src/cli/node_modules/@types/node/ts5.6/index.d.ts +97 -0
- package/native/src/cli/node_modules/@types/node/tty.d.ts +208 -0
- package/native/src/cli/node_modules/@types/node/url.d.ts +984 -0
- package/native/src/cli/node_modules/@types/node/util.d.ts +2606 -0
- package/native/src/cli/node_modules/@types/node/v8.d.ts +920 -0
- package/native/src/cli/node_modules/@types/node/vm.d.ts +1000 -0
- package/native/src/cli/node_modules/@types/node/wasi.d.ts +181 -0
- package/native/src/cli/node_modules/@types/node/web-globals/abortcontroller.d.ts +34 -0
- package/native/src/cli/node_modules/@types/node/web-globals/domexception.d.ts +68 -0
- package/native/src/cli/node_modules/@types/node/web-globals/events.d.ts +97 -0
- package/native/src/cli/node_modules/@types/node/web-globals/fetch.d.ts +55 -0
- package/native/src/cli/node_modules/@types/node/web-globals/navigator.d.ts +22 -0
- package/native/src/cli/node_modules/@types/node/web-globals/storage.d.ts +24 -0
- package/native/src/cli/node_modules/@types/node/worker_threads.d.ts +784 -0
- package/native/src/cli/node_modules/@types/node/zlib.d.ts +747 -0
- package/native/src/cli/node_modules/bun-types/CLAUDE.md +105 -0
- package/native/src/cli/node_modules/bun-types/README.md +33 -0
- package/native/src/cli/node_modules/bun-types/bun.d.ts +8481 -0
- package/native/src/cli/node_modules/bun-types/bun.ns.d.ts +5 -0
- package/native/src/cli/node_modules/bun-types/bundle.d.ts +74 -0
- package/native/src/cli/node_modules/bun-types/deprecated.d.ts +184 -0
- package/native/src/cli/node_modules/bun-types/devserver.d.ts +187 -0
- package/native/src/cli/node_modules/bun-types/docs/README.md +28 -0
- package/native/src/cli/node_modules/bun-types/docs/bundler/bytecode.mdx +447 -0
- package/native/src/cli/node_modules/bun-types/docs/bundler/css.mdx +1024 -0
- package/native/src/cli/node_modules/bun-types/docs/bundler/esbuild.mdx +304 -0
- package/native/src/cli/node_modules/bun-types/docs/bundler/executables.mdx +1318 -0
- package/native/src/cli/node_modules/bun-types/docs/bundler/fullstack.mdx +1086 -0
- package/native/src/cli/node_modules/bun-types/docs/bundler/hot-reloading.mdx +229 -0
- package/native/src/cli/node_modules/bun-types/docs/bundler/html-static.mdx +498 -0
- package/native/src/cli/node_modules/bun-types/docs/bundler/index.mdx +1840 -0
- package/native/src/cli/node_modules/bun-types/docs/bundler/loaders.mdx +451 -0
- package/native/src/cli/node_modules/bun-types/docs/bundler/macros.mdx +328 -0
- package/native/src/cli/node_modules/bun-types/docs/bundler/minifier.mdx +1286 -0
- package/native/src/cli/node_modules/bun-types/docs/bundler/plugins.mdx +477 -0
- package/native/src/cli/node_modules/bun-types/docs/bundler/standalone-html.mdx +314 -0
- package/native/src/cli/node_modules/bun-types/docs/feedback.mdx +75 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/binary/arraybuffer-to-array.mdx +29 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/binary/arraybuffer-to-blob.mdx +26 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/binary/arraybuffer-to-buffer.mdx +27 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/binary/arraybuffer-to-string.mdx +17 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/binary/arraybuffer-to-typedarray.mdx +41 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/binary/blob-to-arraybuffer.mdx +16 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/binary/blob-to-dataview.mdx +16 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/binary/blob-to-stream.mdx +16 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/binary/blob-to-string.mdx +17 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/binary/blob-to-typedarray.mdx +16 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/binary/buffer-to-arraybuffer.mdx +16 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/binary/buffer-to-blob.mdx +16 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/binary/buffer-to-readablestream.mdx +43 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/binary/buffer-to-string.mdx +27 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/binary/buffer-to-typedarray.mdx +16 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/binary/dataview-to-string.mdx +17 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/binary/typedarray-to-arraybuffer.mdx +27 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/binary/typedarray-to-blob.mdx +18 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/binary/typedarray-to-buffer.mdx +16 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/binary/typedarray-to-dataview.mdx +16 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/binary/typedarray-to-readablestream.mdx +43 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/binary/typedarray-to-string.mdx +18 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/deployment/aws-lambda.mdx +204 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/deployment/digital-ocean.mdx +161 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/deployment/google-cloud-run.mdx +194 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/deployment/railway.mdx +145 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/deployment/render.mdx +82 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/deployment/vercel.mdx +97 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/astro.mdx +82 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/discordjs.mdx +80 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/docker.mdx +151 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/drizzle.mdx +195 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/elysia.mdx +31 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/express.mdx +43 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/gel.mdx +261 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/hono.mdx +47 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/mongoose.mdx +92 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/neon-drizzle.mdx +234 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/neon-serverless-postgres.mdx +60 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/nextjs.mdx +103 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/nuxt.mdx +96 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/pm2.mdx +55 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/prisma-postgres.mdx +169 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/prisma.mdx +164 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/qwik.mdx +114 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/react.mdx +52 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/remix.mdx +97 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/sentry.mdx +54 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/solidstart.mdx +62 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/ssr-react.mdx +49 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/stric.mdx +54 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/sveltekit.mdx +138 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/systemd.mdx +114 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/tanstack-start.mdx +791 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/upstash.mdx +87 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/vite.mdx +77 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/html-rewriter/extract-links.mdx +71 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/html-rewriter/extract-social-meta.mdx +97 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/http/cluster.mdx +69 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/http/fetch-unix.mdx +35 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/http/fetch.mdx +26 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/http/file-uploads.mdx +97 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/http/hot.mdx +28 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/http/proxy.mdx +50 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/http/server.mdx +48 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/http/simple.mdx +20 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/http/stream-file.mdx +50 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/http/stream-iterator.mdx +49 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/http/stream-node-streams-in-bun.mdx +22 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/http/tls.mdx +32 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/index.mdx +10 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/install/add-dev.mdx +28 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/install/add-git.mdx +40 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/install/add-optional.mdx +27 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/install/add-peer.mdx +45 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/install/add-tarball.mdx +35 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/install/add.mdx +44 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/install/azure-artifacts.mdx +76 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/install/cicd.mdx +43 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/install/custom-registry.mdx +32 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/install/from-npm-install-to-bun-install.mdx +230 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/install/git-diff-bun-lockfile.mdx +48 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/install/jfrog-artifactory.mdx +28 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/install/npm-alias.mdx +25 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/install/registry-scope.mdx +40 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/install/trusted.mdx +52 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/install/workspaces.mdx +70 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/install/yarnlock.mdx +51 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/process/argv.mdx +66 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/process/ctrl-c.mdx +18 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/process/ipc.mdx +69 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/process/nanoseconds.mdx +15 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/process/os-signals.mdx +31 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/process/spawn-stderr.mdx +34 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/process/spawn-stdout.mdx +28 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/process/spawn.mdx +43 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/process/stdin.mdx +62 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/read-file/arraybuffer.mdx +30 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/read-file/buffer.mdx +21 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/read-file/exists.mdx +18 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/read-file/json.mdx +19 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/read-file/mime.mdx +22 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/read-file/stream.mdx +28 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/read-file/string.mdx +24 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/read-file/uint8array.mdx +23 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/read-file/watch.mdx +66 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/runtime/build-time-constants.mdx +295 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/runtime/cicd.mdx +45 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/runtime/codesign-macos-executable.mdx +61 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/runtime/define-constant.mdx +149 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/runtime/delete-directory.mdx +39 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/runtime/delete-file.mdx +21 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/runtime/heap-snapshot.mdx +28 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/runtime/import-html.mdx +15 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/runtime/import-json.mdx +46 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/runtime/import-json5.mdx +74 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/runtime/import-toml.mdx +32 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/runtime/import-yaml.mdx +104 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/runtime/read-env.mdx +37 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/runtime/set-env.mdx +51 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/runtime/shell.mdx +42 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/runtime/timezone.mdx +38 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/runtime/tsconfig-paths.mdx +31 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/runtime/typescript.mdx +51 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/runtime/vscode-debugger.mdx +47 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/runtime/web-debugger.mdx +103 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/streams/node-readable-to-arraybuffer.mdx +13 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/streams/node-readable-to-blob.mdx +13 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/streams/node-readable-to-json.mdx +14 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/streams/node-readable-to-string.mdx +14 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/streams/node-readable-to-uint8array.mdx +13 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/streams/to-array.mdx +16 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/streams/to-arraybuffer.mdx +16 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/streams/to-blob.mdx +16 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/streams/to-buffer.mdx +17 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/streams/to-json.mdx +16 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/streams/to-string.mdx +16 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/streams/to-typedarray.mdx +24 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/test/bail.mdx +24 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/test/concurrent-test-glob.mdx +146 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/test/coverage-threshold.mdx +67 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/test/coverage.mdx +49 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/test/happy-dom.mdx +73 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/test/migrate-from-jest.mdx +125 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/test/mock-clock.mdx +50 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/test/mock-functions.mdx +70 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/test/rerun-each.mdx +16 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/test/run-tests.mdx +116 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/test/skip-tests.mdx +43 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/test/snapshot.mdx +102 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/test/spy-on.mdx +49 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/test/svelte-test.mdx +113 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/test/testing-library.mdx +93 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/test/timeout.mdx +17 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/test/todo-tests.mdx +74 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/test/update-snapshots.mdx +49 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/test/watch-mode.mdx +24 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/util/base64.mdx +17 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/util/deep-equals.mdx +41 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/util/deflate.mdx +20 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/util/detect-bun.mdx +28 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/util/entrypoint.mdx +19 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/util/escape-html.mdx +24 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/util/file-url-to-path.mdx +16 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/util/gzip.mdx +20 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/util/hash-a-password.mdx +56 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/util/import-meta-dir.mdx +15 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/util/import-meta-file.mdx +15 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/util/import-meta-path.mdx +15 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/util/javascript-uuid.mdx +25 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/util/main.mdx +43 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/util/path-to-file-url.mdx +16 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/util/sleep.mdx +24 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/util/upgrade.mdx +93 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/util/version.mdx +23 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/util/which-path-to-executable-bin.mdx +17 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/websocket/compression.mdx +33 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/websocket/context.mdx +79 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/websocket/pubsub.mdx +43 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/websocket/simple.mdx +38 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/write-file/append.mdx +54 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/write-file/basic.mdx +46 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/write-file/blob.mdx +30 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/write-file/cat.mdx +19 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/write-file/file-cp.mdx +18 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/write-file/filesink.mdx +54 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/write-file/response.mdx +19 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/write-file/stdout.mdx +23 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/write-file/stream.mdx +19 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/write-file/unlink.mdx +18 -0
- package/native/src/cli/node_modules/bun-types/docs/index.mdx +133 -0
- package/native/src/cli/node_modules/bun-types/docs/installation.mdx +372 -0
- package/native/src/cli/node_modules/bun-types/docs/pm/bunx.mdx +91 -0
- package/native/src/cli/node_modules/bun-types/docs/pm/catalogs.mdx +292 -0
- package/native/src/cli/node_modules/bun-types/docs/pm/cli/add.mdx +179 -0
- package/native/src/cli/node_modules/bun-types/docs/pm/cli/audit.mdx +60 -0
- package/native/src/cli/node_modules/bun-types/docs/pm/cli/info.mdx +70 -0
- package/native/src/cli/node_modules/bun-types/docs/pm/cli/install.mdx +591 -0
- package/native/src/cli/node_modules/bun-types/docs/pm/cli/link.mdx +61 -0
- package/native/src/cli/node_modules/bun-types/docs/pm/cli/outdated.mdx +197 -0
- package/native/src/cli/node_modules/bun-types/docs/pm/cli/patch.mdx +69 -0
- package/native/src/cli/node_modules/bun-types/docs/pm/cli/pm.mdx +323 -0
- package/native/src/cli/node_modules/bun-types/docs/pm/cli/publish.mdx +131 -0
- package/native/src/cli/node_modules/bun-types/docs/pm/cli/remove.mdx +16 -0
- package/native/src/cli/node_modules/bun-types/docs/pm/cli/update.mdx +140 -0
- package/native/src/cli/node_modules/bun-types/docs/pm/cli/why.mdx +84 -0
- package/native/src/cli/node_modules/bun-types/docs/pm/filter.mdx +127 -0
- package/native/src/cli/node_modules/bun-types/docs/pm/global-cache.mdx +72 -0
- package/native/src/cli/node_modules/bun-types/docs/pm/isolated-installs.mdx +220 -0
- package/native/src/cli/node_modules/bun-types/docs/pm/lifecycle.mdx +64 -0
- package/native/src/cli/node_modules/bun-types/docs/pm/lockfile.mdx +64 -0
- package/native/src/cli/node_modules/bun-types/docs/pm/npmrc.mdx +245 -0
- package/native/src/cli/node_modules/bun-types/docs/pm/overrides.mdx +83 -0
- package/native/src/cli/node_modules/bun-types/docs/pm/scopes-registries.mdx +35 -0
- package/native/src/cli/node_modules/bun-types/docs/pm/security-scanner-api.mdx +95 -0
- package/native/src/cli/node_modules/bun-types/docs/pm/workspaces.mdx +115 -0
- package/native/src/cli/node_modules/bun-types/docs/project/benchmarking.mdx +296 -0
- package/native/src/cli/node_modules/bun-types/docs/project/bindgen.mdx +223 -0
- package/native/src/cli/node_modules/bun-types/docs/project/building-windows.mdx +143 -0
- package/native/src/cli/node_modules/bun-types/docs/project/contributing.mdx +366 -0
- package/native/src/cli/node_modules/bun-types/docs/project/feedback.mdx +20 -0
- package/native/src/cli/node_modules/bun-types/docs/project/license.mdx +78 -0
- package/native/src/cli/node_modules/bun-types/docs/project/roadmap.mdx +8 -0
- package/native/src/cli/node_modules/bun-types/docs/quickstart.mdx +251 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/archive.mdx +452 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/auto-install.mdx +97 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/binary-data.mdx +846 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/bun-apis.mdx +59 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/bunfig.mdx +754 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/c-compiler.mdx +204 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/child-process.mdx +659 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/color.mdx +267 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/console.mdx +67 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/cookies.mdx +454 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/debugger.mdx +335 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/environment-variables.mdx +231 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/ffi.mdx +567 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/file-io.mdx +306 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/file-system-router.mdx +118 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/file-types.mdx +482 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/glob.mdx +181 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/globals.mdx +72 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/hashing.mdx +315 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/html-rewriter.mdx +333 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/http/cookies.mdx +79 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/http/error-handling.mdx +40 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/http/metrics.mdx +36 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/http/routing.mdx +289 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/http/server.mdx +645 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/http/tls.mdx +101 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/http/websockets.mdx +414 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/index.mdx +223 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/json5.mdx +271 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/jsonl.mdx +188 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/jsx.mdx +115 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/markdown.mdx +344 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/module-resolution.mdx +374 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/networking/dns.mdx +111 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/networking/fetch.mdx +484 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/networking/tcp.mdx +239 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/networking/udp.mdx +180 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/node-api.mdx +19 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/nodejs-compat.mdx +468 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/plugins.mdx +419 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/redis.mdx +583 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/repl.mdx +176 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/s3.mdx +881 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/secrets.mdx +340 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/semver.mdx +57 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/shell.mdx +637 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/sql.mdx +1404 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/sqlite.mdx +721 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/streams.mdx +232 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/templating/create.mdx +269 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/templating/init.mdx +58 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/transpiler.mdx +288 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/typescript.mdx +58 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/utils.mdx +1010 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/watch-mode.mdx +161 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/web-apis.mdx +29 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/workers.mdx +314 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/yaml.mdx +469 -0
- package/native/src/cli/node_modules/bun-types/docs/snippets/cli/add.mdx +166 -0
- package/native/src/cli/node_modules/bun-types/docs/snippets/cli/build.mdx +197 -0
- package/native/src/cli/node_modules/bun-types/docs/snippets/cli/bunx.mdx +49 -0
- package/native/src/cli/node_modules/bun-types/docs/snippets/cli/feedback.mdx +17 -0
- package/native/src/cli/node_modules/bun-types/docs/snippets/cli/init.mdx +84 -0
- package/native/src/cli/node_modules/bun-types/docs/snippets/cli/install.mdx +173 -0
- package/native/src/cli/node_modules/bun-types/docs/snippets/cli/link.mdx +163 -0
- package/native/src/cli/node_modules/bun-types/docs/snippets/cli/outdated.mdx +140 -0
- package/native/src/cli/node_modules/bun-types/docs/snippets/cli/patch.mdx +171 -0
- package/native/src/cli/node_modules/bun-types/docs/snippets/cli/publish.mdx +198 -0
- package/native/src/cli/node_modules/bun-types/docs/snippets/cli/remove.mdx +146 -0
- package/native/src/cli/node_modules/bun-types/docs/snippets/cli/run.mdx +305 -0
- package/native/src/cli/node_modules/bun-types/docs/snippets/cli/test.mdx +105 -0
- package/native/src/cli/node_modules/bun-types/docs/snippets/cli/update.mdx +144 -0
- package/native/src/cli/node_modules/bun-types/docs/test/code-coverage.mdx +409 -0
- package/native/src/cli/node_modules/bun-types/docs/test/configuration.mdx +520 -0
- package/native/src/cli/node_modules/bun-types/docs/test/dates-times.mdx +129 -0
- package/native/src/cli/node_modules/bun-types/docs/test/discovery.mdx +90 -0
- package/native/src/cli/node_modules/bun-types/docs/test/dom.mdx +226 -0
- package/native/src/cli/node_modules/bun-types/docs/test/index.mdx +409 -0
- package/native/src/cli/node_modules/bun-types/docs/test/lifecycle.mdx +366 -0
- package/native/src/cli/node_modules/bun-types/docs/test/mocks.mdx +637 -0
- package/native/src/cli/node_modules/bun-types/docs/test/reporters.mdx +126 -0
- package/native/src/cli/node_modules/bun-types/docs/test/runtime-behavior.mdx +342 -0
- package/native/src/cli/node_modules/bun-types/docs/test/snapshots.mdx +434 -0
- package/native/src/cli/node_modules/bun-types/docs/test/writing-tests.mdx +672 -0
- package/native/src/cli/node_modules/bun-types/docs/typescript.mdx +54 -0
- package/native/src/cli/node_modules/bun-types/extensions.d.ts +40 -0
- package/native/src/cli/node_modules/bun-types/fetch.d.ts +79 -0
- package/native/src/cli/node_modules/bun-types/ffi.d.ts +1154 -0
- package/native/src/cli/node_modules/bun-types/globals.d.ts +2067 -0
- package/native/src/cli/node_modules/bun-types/html-rewriter.d.ts +186 -0
- package/native/src/cli/node_modules/bun-types/index.d.ts +32 -0
- package/native/src/cli/node_modules/bun-types/jsc.d.ts +233 -0
- package/native/src/cli/node_modules/bun-types/jsx.d.ts +11 -0
- package/native/src/cli/node_modules/bun-types/overrides.d.ts +376 -0
- package/native/src/cli/node_modules/bun-types/package.json +37 -0
- package/native/src/cli/node_modules/bun-types/redis.d.ts +3352 -0
- package/native/src/cli/node_modules/bun-types/s3.d.ts +1335 -0
- package/native/src/cli/node_modules/bun-types/security.d.ts +101 -0
- package/native/src/cli/node_modules/bun-types/serve.d.ts +1296 -0
- package/native/src/cli/node_modules/bun-types/shell.d.ts +380 -0
- package/native/src/cli/node_modules/bun-types/sql.d.ts +887 -0
- package/native/src/cli/node_modules/bun-types/sqlite.d.ts +1322 -0
- package/native/src/cli/node_modules/bun-types/test-globals.d.ts +22 -0
- package/native/src/cli/node_modules/bun-types/test.d.ts +2392 -0
- package/native/src/cli/node_modules/bun-types/vendor/expect-type/branding.d.ts +283 -0
- package/native/src/cli/node_modules/bun-types/vendor/expect-type/index.d.ts +1207 -0
- package/native/src/cli/node_modules/bun-types/vendor/expect-type/messages.d.ts +395 -0
- package/native/src/cli/node_modules/bun-types/vendor/expect-type/overloads.d.ts +669 -0
- package/native/src/cli/node_modules/bun-types/vendor/expect-type/utils.d.ts +431 -0
- package/native/src/cli/node_modules/bun-types/wasm.d.ts +193 -0
- package/native/src/cli/node_modules/esbuild/LICENSE.md +21 -0
- package/native/src/cli/node_modules/esbuild/README.md +3 -0
- package/native/src/cli/node_modules/esbuild/bin/esbuild +223 -0
- package/native/src/cli/node_modules/esbuild/install.js +289 -0
- package/native/src/cli/node_modules/esbuild/lib/main.d.ts +716 -0
- package/native/src/cli/node_modules/esbuild/lib/main.js +2532 -0
- package/native/src/cli/node_modules/esbuild/package.json +49 -0
- package/native/src/cli/node_modules/typescript/LICENSE.txt +55 -0
- package/native/src/cli/node_modules/typescript/README.md +50 -0
- package/native/src/cli/node_modules/typescript/SECURITY.md +41 -0
- package/native/src/cli/node_modules/typescript/ThirdPartyNoticeText.txt +193 -0
- package/native/src/cli/node_modules/typescript/bin/tsc +2 -0
- package/native/src/cli/node_modules/typescript/bin/tsserver +2 -0
- package/native/src/cli/node_modules/typescript/lib/_tsc.js +133818 -0
- package/native/src/cli/node_modules/typescript/lib/_tsserver.js +659 -0
- package/native/src/cli/node_modules/typescript/lib/_typingsInstaller.js +222 -0
- package/native/src/cli/node_modules/typescript/lib/cs/diagnosticMessages.generated.json +2122 -0
- package/native/src/cli/node_modules/typescript/lib/de/diagnosticMessages.generated.json +2122 -0
- package/native/src/cli/node_modules/typescript/lib/es/diagnosticMessages.generated.json +2122 -0
- package/native/src/cli/node_modules/typescript/lib/fr/diagnosticMessages.generated.json +2122 -0
- package/native/src/cli/node_modules/typescript/lib/it/diagnosticMessages.generated.json +2122 -0
- package/native/src/cli/node_modules/typescript/lib/ja/diagnosticMessages.generated.json +2122 -0
- package/native/src/cli/node_modules/typescript/lib/ko/diagnosticMessages.generated.json +2122 -0
- package/native/src/cli/node_modules/typescript/lib/lib.d.ts +22 -0
- package/native/src/cli/node_modules/typescript/lib/lib.decorators.d.ts +384 -0
- package/native/src/cli/node_modules/typescript/lib/lib.decorators.legacy.d.ts +22 -0
- package/native/src/cli/node_modules/typescript/lib/lib.dom.asynciterable.d.ts +41 -0
- package/native/src/cli/node_modules/typescript/lib/lib.dom.d.ts +39429 -0
- package/native/src/cli/node_modules/typescript/lib/lib.dom.iterable.d.ts +571 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2015.collection.d.ts +147 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2015.core.d.ts +597 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2015.d.ts +28 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2015.generator.d.ts +77 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2015.iterable.d.ts +605 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2015.promise.d.ts +81 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2015.proxy.d.ts +128 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2015.reflect.d.ts +144 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2015.symbol.d.ts +46 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts +326 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2016.array.include.d.ts +116 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2016.d.ts +21 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2016.full.d.ts +23 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2016.intl.d.ts +31 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts +21 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2017.d.ts +26 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2017.date.d.ts +31 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2017.full.d.ts +23 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2017.intl.d.ts +44 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2017.object.d.ts +49 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts +135 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2017.string.d.ts +45 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts +53 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts +77 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts +53 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2018.d.ts +24 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2018.full.d.ts +24 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2018.intl.d.ts +83 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2018.promise.d.ts +30 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2018.regexp.d.ts +37 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2019.array.d.ts +79 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2019.d.ts +24 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2019.full.d.ts +24 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2019.intl.d.ts +23 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2019.object.d.ts +33 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2019.string.d.ts +37 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2019.symbol.d.ts +24 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2020.bigint.d.ts +765 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2020.d.ts +27 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2020.date.d.ts +42 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2020.full.d.ts +24 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2020.intl.d.ts +474 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2020.number.d.ts +28 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2020.promise.d.ts +47 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts +99 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2020.string.d.ts +44 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts +41 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2021.d.ts +23 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2021.full.d.ts +24 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2021.intl.d.ts +166 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2021.promise.d.ts +48 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2021.string.d.ts +33 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2021.weakref.d.ts +78 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2022.array.d.ts +121 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2022.d.ts +25 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2022.error.d.ts +75 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2022.full.d.ts +24 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2022.intl.d.ts +145 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2022.object.d.ts +26 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2022.regexp.d.ts +39 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2022.string.d.ts +25 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2023.array.d.ts +924 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2023.collection.d.ts +21 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2023.d.ts +22 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2023.full.d.ts +24 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2023.intl.d.ts +56 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts +65 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2024.collection.d.ts +29 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2024.d.ts +26 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2024.full.d.ts +24 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2024.object.d.ts +29 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2024.promise.d.ts +35 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2024.regexp.d.ts +25 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts +68 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2024.string.d.ts +29 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es5.d.ts +4601 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es6.d.ts +23 -0
- package/native/src/cli/node_modules/typescript/lib/lib.esnext.array.d.ts +35 -0
- package/native/src/cli/node_modules/typescript/lib/lib.esnext.collection.d.ts +96 -0
- package/native/src/cli/node_modules/typescript/lib/lib.esnext.d.ts +29 -0
- package/native/src/cli/node_modules/typescript/lib/lib.esnext.decorators.d.ts +28 -0
- package/native/src/cli/node_modules/typescript/lib/lib.esnext.disposable.d.ts +193 -0
- package/native/src/cli/node_modules/typescript/lib/lib.esnext.error.d.ts +24 -0
- package/native/src/cli/node_modules/typescript/lib/lib.esnext.float16.d.ts +445 -0
- package/native/src/cli/node_modules/typescript/lib/lib.esnext.full.d.ts +24 -0
- package/native/src/cli/node_modules/typescript/lib/lib.esnext.intl.d.ts +21 -0
- package/native/src/cli/node_modules/typescript/lib/lib.esnext.iterator.d.ts +148 -0
- package/native/src/cli/node_modules/typescript/lib/lib.esnext.promise.d.ts +34 -0
- package/native/src/cli/node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts +25 -0
- package/native/src/cli/node_modules/typescript/lib/lib.scripthost.d.ts +322 -0
- package/native/src/cli/node_modules/typescript/lib/lib.webworker.asynciterable.d.ts +41 -0
- package/native/src/cli/node_modules/typescript/lib/lib.webworker.d.ts +13150 -0
- package/native/src/cli/node_modules/typescript/lib/lib.webworker.importscripts.d.ts +23 -0
- package/native/src/cli/node_modules/typescript/lib/lib.webworker.iterable.d.ts +340 -0
- package/native/src/cli/node_modules/typescript/lib/pl/diagnosticMessages.generated.json +2122 -0
- package/native/src/cli/node_modules/typescript/lib/pt-br/diagnosticMessages.generated.json +2122 -0
- package/native/src/cli/node_modules/typescript/lib/ru/diagnosticMessages.generated.json +2122 -0
- package/native/src/cli/node_modules/typescript/lib/tr/diagnosticMessages.generated.json +2122 -0
- package/native/src/cli/node_modules/typescript/lib/tsc.js +8 -0
- package/native/src/cli/node_modules/typescript/lib/tsserver.js +8 -0
- package/native/src/cli/node_modules/typescript/lib/tsserverlibrary.d.ts +17 -0
- package/native/src/cli/node_modules/typescript/lib/tsserverlibrary.js +21 -0
- package/native/src/cli/node_modules/typescript/lib/typesMap.json +497 -0
- package/native/src/cli/node_modules/typescript/lib/typescript.d.ts +11437 -0
- package/native/src/cli/node_modules/typescript/lib/typescript.js +200276 -0
- package/native/src/cli/node_modules/typescript/lib/typingsInstaller.js +8 -0
- package/native/src/cli/node_modules/typescript/lib/watchGuard.js +53 -0
- package/native/src/cli/node_modules/typescript/lib/zh-cn/diagnosticMessages.generated.json +2122 -0
- package/native/src/cli/node_modules/typescript/lib/zh-tw/diagnosticMessages.generated.json +2122 -0
- package/native/src/cli/node_modules/typescript/package.json +120 -0
- package/native/src/cli/node_modules/undici-types/LICENSE +21 -0
- package/native/src/cli/node_modules/undici-types/README.md +6 -0
- package/native/src/cli/node_modules/undici-types/agent.d.ts +31 -0
- package/native/src/cli/node_modules/undici-types/api.d.ts +43 -0
- package/native/src/cli/node_modules/undici-types/balanced-pool.d.ts +29 -0
- package/native/src/cli/node_modules/undici-types/cache.d.ts +36 -0
- package/native/src/cli/node_modules/undici-types/client.d.ts +108 -0
- package/native/src/cli/node_modules/undici-types/connector.d.ts +34 -0
- package/native/src/cli/node_modules/undici-types/content-type.d.ts +21 -0
- package/native/src/cli/node_modules/undici-types/cookies.d.ts +28 -0
- package/native/src/cli/node_modules/undici-types/diagnostics-channel.d.ts +66 -0
- package/native/src/cli/node_modules/undici-types/dispatcher.d.ts +256 -0
- package/native/src/cli/node_modules/undici-types/env-http-proxy-agent.d.ts +21 -0
- package/native/src/cli/node_modules/undici-types/errors.d.ts +149 -0
- package/native/src/cli/node_modules/undici-types/eventsource.d.ts +61 -0
- package/native/src/cli/node_modules/undici-types/fetch.d.ts +209 -0
- package/native/src/cli/node_modules/undici-types/file.d.ts +39 -0
- package/native/src/cli/node_modules/undici-types/filereader.d.ts +54 -0
- package/native/src/cli/node_modules/undici-types/formdata.d.ts +108 -0
- package/native/src/cli/node_modules/undici-types/global-dispatcher.d.ts +9 -0
- package/native/src/cli/node_modules/undici-types/global-origin.d.ts +7 -0
- package/native/src/cli/node_modules/undici-types/handlers.d.ts +15 -0
- package/native/src/cli/node_modules/undici-types/header.d.ts +4 -0
- package/native/src/cli/node_modules/undici-types/index.d.ts +71 -0
- package/native/src/cli/node_modules/undici-types/interceptors.d.ts +17 -0
- package/native/src/cli/node_modules/undici-types/mock-agent.d.ts +50 -0
- package/native/src/cli/node_modules/undici-types/mock-client.d.ts +25 -0
- package/native/src/cli/node_modules/undici-types/mock-errors.d.ts +12 -0
- package/native/src/cli/node_modules/undici-types/mock-interceptor.d.ts +93 -0
- package/native/src/cli/node_modules/undici-types/mock-pool.d.ts +25 -0
- package/native/src/cli/node_modules/undici-types/package.json +55 -0
- package/native/src/cli/node_modules/undici-types/patch.d.ts +33 -0
- package/native/src/cli/node_modules/undici-types/pool-stats.d.ts +19 -0
- package/native/src/cli/node_modules/undici-types/pool.d.ts +39 -0
- package/native/src/cli/node_modules/undici-types/proxy-agent.d.ts +28 -0
- package/native/src/cli/node_modules/undici-types/readable.d.ts +65 -0
- package/native/src/cli/node_modules/undici-types/retry-agent.d.ts +8 -0
- package/native/src/cli/node_modules/undici-types/retry-handler.d.ts +116 -0
- package/native/src/cli/node_modules/undici-types/util.d.ts +18 -0
- package/native/src/cli/node_modules/undici-types/webidl.d.ts +228 -0
- package/native/src/cli/node_modules/undici-types/websocket.d.ts +150 -0
- package/native/src/platform/darwin/backend_bootstrap.zc +1 -1
- package/native/src/platform/darwin/bootstrap.zc +1 -1
- package/native/src/platform/darwin/platform.zc +22 -0
- package/native/src/platform/darwin/webview.zc +158 -3
- package/native/src/platform/darwin/webview_bootstrap.zc +2 -2
- package/native/src/platform/darwin/window.zc +264 -0
- package/native/src/platform/windows/backend_bootstrap.zc +1 -1
- package/native/src/platform/windows/bootstrap.zc +1 -1
- package/native/src/platform/windows/platform.zc +27 -1
- package/native/src/platform/windows/webview.zc +444 -2
- package/native/src/platform/windows/webview_bootstrap.zc +2 -2
- package/native/src/platform/windows/window.zc +31 -0
- package/native/vendor/quickjs-ng/README.md +24 -0
- package/native/vendor/quickjs-ng/docs/.nvmrc +1 -0
- package/native/vendor/quickjs-ng/docs/babel.config.js +3 -0
- package/native/vendor/quickjs-ng/docs/docs/building.md +63 -0
- package/native/vendor/quickjs-ng/docs/docs/cli.md +130 -0
- package/native/vendor/quickjs-ng/docs/docs/developer-guide/_category_.json +7 -0
- package/native/vendor/quickjs-ng/docs/docs/developer-guide/api.md +3 -0
- package/native/vendor/quickjs-ng/docs/docs/developer-guide/internals.md +117 -0
- package/native/vendor/quickjs-ng/docs/docs/developer-guide/intro.md +113 -0
- package/native/vendor/quickjs-ng/docs/docs/diff.md +68 -0
- package/native/vendor/quickjs-ng/docs/docs/es_features.md +11 -0
- package/native/vendor/quickjs-ng/docs/docs/installation.md +34 -0
- package/native/vendor/quickjs-ng/docs/docs/intro.md +33 -0
- package/native/vendor/quickjs-ng/docs/docs/projects.md +67 -0
- package/native/vendor/quickjs-ng/docs/docs/stdlib.md +605 -0
- package/native/vendor/quickjs-ng/docs/docs/supported_platforms.md +20 -0
- package/native/vendor/quickjs-ng/docs/docusaurus.config.js +114 -0
- package/native/vendor/quickjs-ng/docs/package-lock.json +14656 -0
- package/native/vendor/quickjs-ng/docs/package.json +42 -0
- package/native/vendor/quickjs-ng/docs/sidebars.js +20 -0
- package/native/vendor/quickjs-ng/docs/src/css/custom.css +30 -0
- package/native/vendor/quickjs-ng/docs/static/.nojekyll +0 -0
- package/native/vendor/quickjs-ng/docs/static/img/favicon.ico +0 -0
- package/native/vendor/quickjs-ng/test262-fast.conf +132 -0
- package/native/vendor/quickjs-ng/test262.conf +416 -0
- package/native/vendor/quickjs-ng/test262_errors.txt +93 -0
- package/package.json +1 -1
- package/src/build-config.ts +6 -0
- package/src/build.ts +2 -1
- package/src/config.ts +9 -0
- package/src/package.ts +20 -0
|
@@ -0,0 +1,223 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
"use strict";
|
|
3
|
+
var __create = Object.create;
|
|
4
|
+
var __defProp = Object.defineProperty;
|
|
5
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
6
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
7
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
8
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
9
|
+
var __copyProps = (to, from, except, desc) => {
|
|
10
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
11
|
+
for (let key of __getOwnPropNames(from))
|
|
12
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
13
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
14
|
+
}
|
|
15
|
+
return to;
|
|
16
|
+
};
|
|
17
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
18
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
19
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
20
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
21
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
22
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
23
|
+
mod
|
|
24
|
+
));
|
|
25
|
+
|
|
26
|
+
// lib/npm/node-platform.ts
|
|
27
|
+
var fs = require("fs");
|
|
28
|
+
var os = require("os");
|
|
29
|
+
var path = require("path");
|
|
30
|
+
var ESBUILD_BINARY_PATH = process.env.ESBUILD_BINARY_PATH || ESBUILD_BINARY_PATH;
|
|
31
|
+
var isValidBinaryPath = (x) => !!x && x !== "/usr/bin/esbuild";
|
|
32
|
+
var packageDarwin_arm64 = "@esbuild/darwin-arm64";
|
|
33
|
+
var packageDarwin_x64 = "@esbuild/darwin-x64";
|
|
34
|
+
var knownWindowsPackages = {
|
|
35
|
+
"win32 arm64 LE": "@esbuild/win32-arm64",
|
|
36
|
+
"win32 ia32 LE": "@esbuild/win32-ia32",
|
|
37
|
+
"win32 x64 LE": "@esbuild/win32-x64"
|
|
38
|
+
};
|
|
39
|
+
var knownUnixlikePackages = {
|
|
40
|
+
"aix ppc64 BE": "@esbuild/aix-ppc64",
|
|
41
|
+
"android arm64 LE": "@esbuild/android-arm64",
|
|
42
|
+
"darwin arm64 LE": "@esbuild/darwin-arm64",
|
|
43
|
+
"darwin x64 LE": "@esbuild/darwin-x64",
|
|
44
|
+
"freebsd arm64 LE": "@esbuild/freebsd-arm64",
|
|
45
|
+
"freebsd x64 LE": "@esbuild/freebsd-x64",
|
|
46
|
+
"linux arm LE": "@esbuild/linux-arm",
|
|
47
|
+
"linux arm64 LE": "@esbuild/linux-arm64",
|
|
48
|
+
"linux ia32 LE": "@esbuild/linux-ia32",
|
|
49
|
+
"linux mips64el LE": "@esbuild/linux-mips64el",
|
|
50
|
+
"linux ppc64 LE": "@esbuild/linux-ppc64",
|
|
51
|
+
"linux riscv64 LE": "@esbuild/linux-riscv64",
|
|
52
|
+
"linux s390x BE": "@esbuild/linux-s390x",
|
|
53
|
+
"linux x64 LE": "@esbuild/linux-x64",
|
|
54
|
+
"linux loong64 LE": "@esbuild/linux-loong64",
|
|
55
|
+
"netbsd arm64 LE": "@esbuild/netbsd-arm64",
|
|
56
|
+
"netbsd x64 LE": "@esbuild/netbsd-x64",
|
|
57
|
+
"openbsd arm64 LE": "@esbuild/openbsd-arm64",
|
|
58
|
+
"openbsd x64 LE": "@esbuild/openbsd-x64",
|
|
59
|
+
"sunos x64 LE": "@esbuild/sunos-x64"
|
|
60
|
+
};
|
|
61
|
+
var knownWebAssemblyFallbackPackages = {
|
|
62
|
+
"android arm LE": "@esbuild/android-arm",
|
|
63
|
+
"android x64 LE": "@esbuild/android-x64",
|
|
64
|
+
"openharmony arm64 LE": "@esbuild/openharmony-arm64"
|
|
65
|
+
};
|
|
66
|
+
function pkgAndSubpathForCurrentPlatform() {
|
|
67
|
+
let pkg;
|
|
68
|
+
let subpath;
|
|
69
|
+
let isWASM2 = false;
|
|
70
|
+
let platformKey = `${process.platform} ${os.arch()} ${os.endianness()}`;
|
|
71
|
+
if (platformKey in knownWindowsPackages) {
|
|
72
|
+
pkg = knownWindowsPackages[platformKey];
|
|
73
|
+
subpath = "esbuild.exe";
|
|
74
|
+
} else if (platformKey in knownUnixlikePackages) {
|
|
75
|
+
pkg = knownUnixlikePackages[platformKey];
|
|
76
|
+
subpath = "bin/esbuild";
|
|
77
|
+
} else if (platformKey in knownWebAssemblyFallbackPackages) {
|
|
78
|
+
pkg = knownWebAssemblyFallbackPackages[platformKey];
|
|
79
|
+
subpath = "bin/esbuild";
|
|
80
|
+
isWASM2 = true;
|
|
81
|
+
} else {
|
|
82
|
+
throw new Error(`Unsupported platform: ${platformKey}`);
|
|
83
|
+
}
|
|
84
|
+
return { pkg, subpath, isWASM: isWASM2 };
|
|
85
|
+
}
|
|
86
|
+
function pkgForSomeOtherPlatform() {
|
|
87
|
+
const libMainJS = require.resolve("esbuild");
|
|
88
|
+
const nodeModulesDirectory = path.dirname(path.dirname(path.dirname(libMainJS)));
|
|
89
|
+
if (path.basename(nodeModulesDirectory) === "node_modules") {
|
|
90
|
+
for (const unixKey in knownUnixlikePackages) {
|
|
91
|
+
try {
|
|
92
|
+
const pkg = knownUnixlikePackages[unixKey];
|
|
93
|
+
if (fs.existsSync(path.join(nodeModulesDirectory, pkg))) return pkg;
|
|
94
|
+
} catch {
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
for (const windowsKey in knownWindowsPackages) {
|
|
98
|
+
try {
|
|
99
|
+
const pkg = knownWindowsPackages[windowsKey];
|
|
100
|
+
if (fs.existsSync(path.join(nodeModulesDirectory, pkg))) return pkg;
|
|
101
|
+
} catch {
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
return null;
|
|
106
|
+
}
|
|
107
|
+
function downloadedBinPath(pkg, subpath) {
|
|
108
|
+
const esbuildLibDir = path.dirname(require.resolve("esbuild"));
|
|
109
|
+
return path.join(esbuildLibDir, `downloaded-${pkg.replace("/", "-")}-${path.basename(subpath)}`);
|
|
110
|
+
}
|
|
111
|
+
function generateBinPath() {
|
|
112
|
+
if (isValidBinaryPath(ESBUILD_BINARY_PATH)) {
|
|
113
|
+
if (!fs.existsSync(ESBUILD_BINARY_PATH)) {
|
|
114
|
+
console.warn(`[esbuild] Ignoring bad configuration: ESBUILD_BINARY_PATH=${ESBUILD_BINARY_PATH}`);
|
|
115
|
+
} else {
|
|
116
|
+
return { binPath: ESBUILD_BINARY_PATH, isWASM: false };
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
const { pkg, subpath, isWASM: isWASM2 } = pkgAndSubpathForCurrentPlatform();
|
|
120
|
+
let binPath2;
|
|
121
|
+
try {
|
|
122
|
+
binPath2 = require.resolve(`${pkg}/${subpath}`);
|
|
123
|
+
} catch (e) {
|
|
124
|
+
binPath2 = downloadedBinPath(pkg, subpath);
|
|
125
|
+
if (!fs.existsSync(binPath2)) {
|
|
126
|
+
try {
|
|
127
|
+
require.resolve(pkg);
|
|
128
|
+
} catch {
|
|
129
|
+
const otherPkg = pkgForSomeOtherPlatform();
|
|
130
|
+
if (otherPkg) {
|
|
131
|
+
let suggestions = `
|
|
132
|
+
Specifically the "${otherPkg}" package is present but this platform
|
|
133
|
+
needs the "${pkg}" package instead. People often get into this
|
|
134
|
+
situation by installing esbuild on Windows or macOS and copying "node_modules"
|
|
135
|
+
into a Docker image that runs Linux, or by copying "node_modules" between
|
|
136
|
+
Windows and WSL environments.
|
|
137
|
+
|
|
138
|
+
If you are installing with npm, you can try not copying the "node_modules"
|
|
139
|
+
directory when you copy the files over, and running "npm ci" or "npm install"
|
|
140
|
+
on the destination platform after the copy. Or you could consider using yarn
|
|
141
|
+
instead of npm which has built-in support for installing a package on multiple
|
|
142
|
+
platforms simultaneously.
|
|
143
|
+
|
|
144
|
+
If you are installing with yarn, you can try listing both this platform and the
|
|
145
|
+
other platform in your ".yarnrc.yml" file using the "supportedArchitectures"
|
|
146
|
+
feature: https://yarnpkg.com/configuration/yarnrc/#supportedArchitectures
|
|
147
|
+
Keep in mind that this means multiple copies of esbuild will be present.
|
|
148
|
+
`;
|
|
149
|
+
if (pkg === packageDarwin_x64 && otherPkg === packageDarwin_arm64 || pkg === packageDarwin_arm64 && otherPkg === packageDarwin_x64) {
|
|
150
|
+
suggestions = `
|
|
151
|
+
Specifically the "${otherPkg}" package is present but this platform
|
|
152
|
+
needs the "${pkg}" package instead. People often get into this
|
|
153
|
+
situation by installing esbuild with npm running inside of Rosetta 2 and then
|
|
154
|
+
trying to use it with node running outside of Rosetta 2, or vice versa (Rosetta
|
|
155
|
+
2 is Apple's on-the-fly x86_64-to-arm64 translation service).
|
|
156
|
+
|
|
157
|
+
If you are installing with npm, you can try ensuring that both npm and node are
|
|
158
|
+
not running under Rosetta 2 and then reinstalling esbuild. This likely involves
|
|
159
|
+
changing how you installed npm and/or node. For example, installing node with
|
|
160
|
+
the universal installer here should work: https://nodejs.org/en/download/. Or
|
|
161
|
+
you could consider using yarn instead of npm which has built-in support for
|
|
162
|
+
installing a package on multiple platforms simultaneously.
|
|
163
|
+
|
|
164
|
+
If you are installing with yarn, you can try listing both "arm64" and "x64"
|
|
165
|
+
in your ".yarnrc.yml" file using the "supportedArchitectures" feature:
|
|
166
|
+
https://yarnpkg.com/configuration/yarnrc/#supportedArchitectures
|
|
167
|
+
Keep in mind that this means multiple copies of esbuild will be present.
|
|
168
|
+
`;
|
|
169
|
+
}
|
|
170
|
+
throw new Error(`
|
|
171
|
+
You installed esbuild for another platform than the one you're currently using.
|
|
172
|
+
This won't work because esbuild is written with native code and needs to
|
|
173
|
+
install a platform-specific binary executable.
|
|
174
|
+
${suggestions}
|
|
175
|
+
Another alternative is to use the "esbuild-wasm" package instead, which works
|
|
176
|
+
the same way on all platforms. But it comes with a heavy performance cost and
|
|
177
|
+
can sometimes be 10x slower than the "esbuild" package, so you may also not
|
|
178
|
+
want to do that.
|
|
179
|
+
`);
|
|
180
|
+
}
|
|
181
|
+
throw new Error(`The package "${pkg}" could not be found, and is needed by esbuild.
|
|
182
|
+
|
|
183
|
+
If you are installing esbuild with npm, make sure that you don't specify the
|
|
184
|
+
"--no-optional" or "--omit=optional" flags. The "optionalDependencies" feature
|
|
185
|
+
of "package.json" is used by esbuild to install the correct binary executable
|
|
186
|
+
for your current platform.`);
|
|
187
|
+
}
|
|
188
|
+
throw e;
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
if (/\.zip\//.test(binPath2)) {
|
|
192
|
+
let pnpapi;
|
|
193
|
+
try {
|
|
194
|
+
pnpapi = require("pnpapi");
|
|
195
|
+
} catch (e) {
|
|
196
|
+
}
|
|
197
|
+
if (pnpapi) {
|
|
198
|
+
const root = pnpapi.getPackageInformation(pnpapi.topLevel).packageLocation;
|
|
199
|
+
const binTargetPath = path.join(
|
|
200
|
+
root,
|
|
201
|
+
"node_modules",
|
|
202
|
+
".cache",
|
|
203
|
+
"esbuild",
|
|
204
|
+
`pnpapi-${pkg.replace("/", "-")}-${"0.27.4"}-${path.basename(subpath)}`
|
|
205
|
+
);
|
|
206
|
+
if (!fs.existsSync(binTargetPath)) {
|
|
207
|
+
fs.mkdirSync(path.dirname(binTargetPath), { recursive: true });
|
|
208
|
+
fs.copyFileSync(binPath2, binTargetPath);
|
|
209
|
+
fs.chmodSync(binTargetPath, 493);
|
|
210
|
+
}
|
|
211
|
+
return { binPath: binTargetPath, isWASM: isWASM2 };
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
return { binPath: binPath2, isWASM: isWASM2 };
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
// lib/npm/node-shim.ts
|
|
218
|
+
var { binPath, isWASM } = generateBinPath();
|
|
219
|
+
if (isWASM) {
|
|
220
|
+
require("child_process").execFileSync("node", [binPath].concat(process.argv.slice(2)), { stdio: "inherit" });
|
|
221
|
+
} else {
|
|
222
|
+
require("child_process").execFileSync(binPath, process.argv.slice(2), { stdio: "inherit" });
|
|
223
|
+
}
|
|
@@ -0,0 +1,289 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __create = Object.create;
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __copyProps = (to, from, except, desc) => {
|
|
9
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
10
|
+
for (let key of __getOwnPropNames(from))
|
|
11
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
12
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
13
|
+
}
|
|
14
|
+
return to;
|
|
15
|
+
};
|
|
16
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
17
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
18
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
19
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
20
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
21
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
22
|
+
mod
|
|
23
|
+
));
|
|
24
|
+
|
|
25
|
+
// lib/npm/node-platform.ts
|
|
26
|
+
var fs = require("fs");
|
|
27
|
+
var os = require("os");
|
|
28
|
+
var path = require("path");
|
|
29
|
+
var ESBUILD_BINARY_PATH = process.env.ESBUILD_BINARY_PATH || ESBUILD_BINARY_PATH;
|
|
30
|
+
var isValidBinaryPath = (x) => !!x && x !== "/usr/bin/esbuild";
|
|
31
|
+
var knownWindowsPackages = {
|
|
32
|
+
"win32 arm64 LE": "@esbuild/win32-arm64",
|
|
33
|
+
"win32 ia32 LE": "@esbuild/win32-ia32",
|
|
34
|
+
"win32 x64 LE": "@esbuild/win32-x64"
|
|
35
|
+
};
|
|
36
|
+
var knownUnixlikePackages = {
|
|
37
|
+
"aix ppc64 BE": "@esbuild/aix-ppc64",
|
|
38
|
+
"android arm64 LE": "@esbuild/android-arm64",
|
|
39
|
+
"darwin arm64 LE": "@esbuild/darwin-arm64",
|
|
40
|
+
"darwin x64 LE": "@esbuild/darwin-x64",
|
|
41
|
+
"freebsd arm64 LE": "@esbuild/freebsd-arm64",
|
|
42
|
+
"freebsd x64 LE": "@esbuild/freebsd-x64",
|
|
43
|
+
"linux arm LE": "@esbuild/linux-arm",
|
|
44
|
+
"linux arm64 LE": "@esbuild/linux-arm64",
|
|
45
|
+
"linux ia32 LE": "@esbuild/linux-ia32",
|
|
46
|
+
"linux mips64el LE": "@esbuild/linux-mips64el",
|
|
47
|
+
"linux ppc64 LE": "@esbuild/linux-ppc64",
|
|
48
|
+
"linux riscv64 LE": "@esbuild/linux-riscv64",
|
|
49
|
+
"linux s390x BE": "@esbuild/linux-s390x",
|
|
50
|
+
"linux x64 LE": "@esbuild/linux-x64",
|
|
51
|
+
"linux loong64 LE": "@esbuild/linux-loong64",
|
|
52
|
+
"netbsd arm64 LE": "@esbuild/netbsd-arm64",
|
|
53
|
+
"netbsd x64 LE": "@esbuild/netbsd-x64",
|
|
54
|
+
"openbsd arm64 LE": "@esbuild/openbsd-arm64",
|
|
55
|
+
"openbsd x64 LE": "@esbuild/openbsd-x64",
|
|
56
|
+
"sunos x64 LE": "@esbuild/sunos-x64"
|
|
57
|
+
};
|
|
58
|
+
var knownWebAssemblyFallbackPackages = {
|
|
59
|
+
"android arm LE": "@esbuild/android-arm",
|
|
60
|
+
"android x64 LE": "@esbuild/android-x64",
|
|
61
|
+
"openharmony arm64 LE": "@esbuild/openharmony-arm64"
|
|
62
|
+
};
|
|
63
|
+
function pkgAndSubpathForCurrentPlatform() {
|
|
64
|
+
let pkg;
|
|
65
|
+
let subpath;
|
|
66
|
+
let isWASM = false;
|
|
67
|
+
let platformKey = `${process.platform} ${os.arch()} ${os.endianness()}`;
|
|
68
|
+
if (platformKey in knownWindowsPackages) {
|
|
69
|
+
pkg = knownWindowsPackages[platformKey];
|
|
70
|
+
subpath = "esbuild.exe";
|
|
71
|
+
} else if (platformKey in knownUnixlikePackages) {
|
|
72
|
+
pkg = knownUnixlikePackages[platformKey];
|
|
73
|
+
subpath = "bin/esbuild";
|
|
74
|
+
} else if (platformKey in knownWebAssemblyFallbackPackages) {
|
|
75
|
+
pkg = knownWebAssemblyFallbackPackages[platformKey];
|
|
76
|
+
subpath = "bin/esbuild";
|
|
77
|
+
isWASM = true;
|
|
78
|
+
} else {
|
|
79
|
+
throw new Error(`Unsupported platform: ${platformKey}`);
|
|
80
|
+
}
|
|
81
|
+
return { pkg, subpath, isWASM };
|
|
82
|
+
}
|
|
83
|
+
function downloadedBinPath(pkg, subpath) {
|
|
84
|
+
const esbuildLibDir = path.dirname(require.resolve("esbuild"));
|
|
85
|
+
return path.join(esbuildLibDir, `downloaded-${pkg.replace("/", "-")}-${path.basename(subpath)}`);
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
// lib/npm/node-install.ts
|
|
89
|
+
var fs2 = require("fs");
|
|
90
|
+
var os2 = require("os");
|
|
91
|
+
var path2 = require("path");
|
|
92
|
+
var zlib = require("zlib");
|
|
93
|
+
var https = require("https");
|
|
94
|
+
var child_process = require("child_process");
|
|
95
|
+
var versionFromPackageJSON = require(path2.join(__dirname, "package.json")).version;
|
|
96
|
+
var toPath = path2.join(__dirname, "bin", "esbuild");
|
|
97
|
+
var isToPathJS = true;
|
|
98
|
+
function validateBinaryVersion(...command) {
|
|
99
|
+
command.push("--version");
|
|
100
|
+
let stdout;
|
|
101
|
+
try {
|
|
102
|
+
stdout = child_process.execFileSync(command.shift(), command, {
|
|
103
|
+
// Without this, this install script strangely crashes with the error
|
|
104
|
+
// "EACCES: permission denied, write" but only on Ubuntu Linux when node is
|
|
105
|
+
// installed from the Snap Store. This is not a problem when you download
|
|
106
|
+
// the official version of node. The problem appears to be that stderr
|
|
107
|
+
// (i.e. file descriptor 2) isn't writable?
|
|
108
|
+
//
|
|
109
|
+
// More info:
|
|
110
|
+
// - https://snapcraft.io/ (what the Snap Store is)
|
|
111
|
+
// - https://nodejs.org/dist/ (download the official version of node)
|
|
112
|
+
// - https://github.com/evanw/esbuild/issues/1711#issuecomment-1027554035
|
|
113
|
+
//
|
|
114
|
+
stdio: "pipe"
|
|
115
|
+
}).toString().trim();
|
|
116
|
+
} catch (err) {
|
|
117
|
+
if (os2.platform() === "darwin" && /_SecTrustEvaluateWithError/.test(err + "")) {
|
|
118
|
+
let os3 = "this version of macOS";
|
|
119
|
+
try {
|
|
120
|
+
os3 = "macOS " + child_process.execFileSync("sw_vers", ["-productVersion"]).toString().trim();
|
|
121
|
+
} catch {
|
|
122
|
+
}
|
|
123
|
+
throw new Error(`The "esbuild" package cannot be installed because ${os3} is too outdated.
|
|
124
|
+
|
|
125
|
+
The Go compiler (which esbuild relies on) no longer supports ${os3},
|
|
126
|
+
which means the "esbuild" binary executable can't be run. You can either:
|
|
127
|
+
|
|
128
|
+
* Update your version of macOS to one that the Go compiler supports
|
|
129
|
+
* Use the "esbuild-wasm" package instead of the "esbuild" package
|
|
130
|
+
* Build esbuild yourself using an older version of the Go compiler
|
|
131
|
+
`);
|
|
132
|
+
}
|
|
133
|
+
throw err;
|
|
134
|
+
}
|
|
135
|
+
if (stdout !== versionFromPackageJSON) {
|
|
136
|
+
throw new Error(`Expected ${JSON.stringify(versionFromPackageJSON)} but got ${JSON.stringify(stdout)}`);
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
function isYarn() {
|
|
140
|
+
const { npm_config_user_agent } = process.env;
|
|
141
|
+
if (npm_config_user_agent) {
|
|
142
|
+
return /\byarn\//.test(npm_config_user_agent);
|
|
143
|
+
}
|
|
144
|
+
return false;
|
|
145
|
+
}
|
|
146
|
+
function fetch(url) {
|
|
147
|
+
return new Promise((resolve, reject) => {
|
|
148
|
+
https.get(url, (res) => {
|
|
149
|
+
if ((res.statusCode === 301 || res.statusCode === 302) && res.headers.location)
|
|
150
|
+
return fetch(res.headers.location).then(resolve, reject);
|
|
151
|
+
if (res.statusCode !== 200)
|
|
152
|
+
return reject(new Error(`Server responded with ${res.statusCode}`));
|
|
153
|
+
let chunks = [];
|
|
154
|
+
res.on("data", (chunk) => chunks.push(chunk));
|
|
155
|
+
res.on("end", () => resolve(Buffer.concat(chunks)));
|
|
156
|
+
}).on("error", reject);
|
|
157
|
+
});
|
|
158
|
+
}
|
|
159
|
+
function extractFileFromTarGzip(buffer, subpath) {
|
|
160
|
+
try {
|
|
161
|
+
buffer = zlib.unzipSync(buffer);
|
|
162
|
+
} catch (err) {
|
|
163
|
+
throw new Error(`Invalid gzip data in archive: ${err && err.message || err}`);
|
|
164
|
+
}
|
|
165
|
+
let str = (i, n) => String.fromCharCode(...buffer.subarray(i, i + n)).replace(/\0.*$/, "");
|
|
166
|
+
let offset = 0;
|
|
167
|
+
subpath = `package/${subpath}`;
|
|
168
|
+
while (offset < buffer.length) {
|
|
169
|
+
let name = str(offset, 100);
|
|
170
|
+
let size = parseInt(str(offset + 124, 12), 8);
|
|
171
|
+
offset += 512;
|
|
172
|
+
if (!isNaN(size)) {
|
|
173
|
+
if (name === subpath) return buffer.subarray(offset, offset + size);
|
|
174
|
+
offset += size + 511 & ~511;
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
throw new Error(`Could not find ${JSON.stringify(subpath)} in archive`);
|
|
178
|
+
}
|
|
179
|
+
function installUsingNPM(pkg, subpath, binPath) {
|
|
180
|
+
const env = { ...process.env, npm_config_global: void 0 };
|
|
181
|
+
const esbuildLibDir = path2.dirname(require.resolve("esbuild"));
|
|
182
|
+
const installDir = path2.join(esbuildLibDir, "npm-install");
|
|
183
|
+
fs2.mkdirSync(installDir);
|
|
184
|
+
try {
|
|
185
|
+
fs2.writeFileSync(path2.join(installDir, "package.json"), "{}");
|
|
186
|
+
child_process.execSync(
|
|
187
|
+
`npm install --loglevel=error --prefer-offline --no-audit --progress=false ${pkg}@${versionFromPackageJSON}`,
|
|
188
|
+
{ cwd: installDir, stdio: "pipe", env }
|
|
189
|
+
);
|
|
190
|
+
const installedBinPath = path2.join(installDir, "node_modules", pkg, subpath);
|
|
191
|
+
fs2.renameSync(installedBinPath, binPath);
|
|
192
|
+
} finally {
|
|
193
|
+
try {
|
|
194
|
+
removeRecursive(installDir);
|
|
195
|
+
} catch {
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
function removeRecursive(dir) {
|
|
200
|
+
for (const entry of fs2.readdirSync(dir)) {
|
|
201
|
+
const entryPath = path2.join(dir, entry);
|
|
202
|
+
let stats;
|
|
203
|
+
try {
|
|
204
|
+
stats = fs2.lstatSync(entryPath);
|
|
205
|
+
} catch {
|
|
206
|
+
continue;
|
|
207
|
+
}
|
|
208
|
+
if (stats.isDirectory()) removeRecursive(entryPath);
|
|
209
|
+
else fs2.unlinkSync(entryPath);
|
|
210
|
+
}
|
|
211
|
+
fs2.rmdirSync(dir);
|
|
212
|
+
}
|
|
213
|
+
function applyManualBinaryPathOverride(overridePath) {
|
|
214
|
+
const pathString = JSON.stringify(overridePath);
|
|
215
|
+
fs2.writeFileSync(toPath, `#!/usr/bin/env node
|
|
216
|
+
require('child_process').execFileSync(${pathString}, process.argv.slice(2), { stdio: 'inherit' });
|
|
217
|
+
`);
|
|
218
|
+
const libMain = path2.join(__dirname, "lib", "main.js");
|
|
219
|
+
const code = fs2.readFileSync(libMain, "utf8");
|
|
220
|
+
fs2.writeFileSync(libMain, `var ESBUILD_BINARY_PATH = ${pathString};
|
|
221
|
+
${code}`);
|
|
222
|
+
}
|
|
223
|
+
function maybeOptimizePackage(binPath) {
|
|
224
|
+
const { isWASM } = pkgAndSubpathForCurrentPlatform();
|
|
225
|
+
if (os2.platform() !== "win32" && !isYarn() && !isWASM) {
|
|
226
|
+
const tempPath = path2.join(__dirname, "bin-esbuild");
|
|
227
|
+
try {
|
|
228
|
+
fs2.linkSync(binPath, tempPath);
|
|
229
|
+
fs2.renameSync(tempPath, toPath);
|
|
230
|
+
isToPathJS = false;
|
|
231
|
+
fs2.unlinkSync(tempPath);
|
|
232
|
+
} catch {
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
async function downloadDirectlyFromNPM(pkg, subpath, binPath) {
|
|
237
|
+
const url = `https://registry.npmjs.org/${pkg}/-/${pkg.replace("@esbuild/", "")}-${versionFromPackageJSON}.tgz`;
|
|
238
|
+
console.error(`[esbuild] Trying to download ${JSON.stringify(url)}`);
|
|
239
|
+
try {
|
|
240
|
+
fs2.writeFileSync(binPath, extractFileFromTarGzip(await fetch(url), subpath));
|
|
241
|
+
fs2.chmodSync(binPath, 493);
|
|
242
|
+
} catch (e) {
|
|
243
|
+
console.error(`[esbuild] Failed to download ${JSON.stringify(url)}: ${e && e.message || e}`);
|
|
244
|
+
throw e;
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
async function checkAndPreparePackage() {
|
|
248
|
+
if (isValidBinaryPath(ESBUILD_BINARY_PATH)) {
|
|
249
|
+
if (!fs2.existsSync(ESBUILD_BINARY_PATH)) {
|
|
250
|
+
console.warn(`[esbuild] Ignoring bad configuration: ESBUILD_BINARY_PATH=${ESBUILD_BINARY_PATH}`);
|
|
251
|
+
} else {
|
|
252
|
+
applyManualBinaryPathOverride(ESBUILD_BINARY_PATH);
|
|
253
|
+
return;
|
|
254
|
+
}
|
|
255
|
+
}
|
|
256
|
+
const { pkg, subpath } = pkgAndSubpathForCurrentPlatform();
|
|
257
|
+
let binPath;
|
|
258
|
+
try {
|
|
259
|
+
binPath = require.resolve(`${pkg}/${subpath}`);
|
|
260
|
+
} catch (e) {
|
|
261
|
+
console.error(`[esbuild] Failed to find package "${pkg}" on the file system
|
|
262
|
+
|
|
263
|
+
This can happen if you use the "--no-optional" flag. The "optionalDependencies"
|
|
264
|
+
package.json feature is used by esbuild to install the correct binary executable
|
|
265
|
+
for your current platform. This install script will now attempt to work around
|
|
266
|
+
this. If that fails, you need to remove the "--no-optional" flag to use esbuild.
|
|
267
|
+
`);
|
|
268
|
+
binPath = downloadedBinPath(pkg, subpath);
|
|
269
|
+
try {
|
|
270
|
+
console.error(`[esbuild] Trying to install package "${pkg}" using npm`);
|
|
271
|
+
installUsingNPM(pkg, subpath, binPath);
|
|
272
|
+
} catch (e2) {
|
|
273
|
+
console.error(`[esbuild] Failed to install package "${pkg}" using npm: ${e2 && e2.message || e2}`);
|
|
274
|
+
try {
|
|
275
|
+
await downloadDirectlyFromNPM(pkg, subpath, binPath);
|
|
276
|
+
} catch (e3) {
|
|
277
|
+
throw new Error(`Failed to install package "${pkg}"`);
|
|
278
|
+
}
|
|
279
|
+
}
|
|
280
|
+
}
|
|
281
|
+
maybeOptimizePackage(binPath);
|
|
282
|
+
}
|
|
283
|
+
checkAndPreparePackage().then(() => {
|
|
284
|
+
if (isToPathJS) {
|
|
285
|
+
validateBinaryVersion(process.execPath, toPath);
|
|
286
|
+
} else {
|
|
287
|
+
validateBinaryVersion(toPath);
|
|
288
|
+
}
|
|
289
|
+
});
|