@quantiya/codevibe-codex-plugin 2.0.6 → 2.0.8
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 +20 -23
- package/dist/server.js +21 -21
- package/hooks/common.sh +506 -19
- package/{bin/codevibe-codex → libexec/companion-launcher} +37 -76
- package/node_modules/@quantiya/codevibe-core/README.md +7 -5
- package/node_modules/@quantiya/codevibe-core/dist/agy-cli-contract.d.ts +14 -0
- package/node_modules/@quantiya/codevibe-core/dist/appsync/appsync-client.d.ts +229 -61
- package/node_modules/@quantiya/codevibe-core/dist/appsync/event-throttle.d.ts +33 -0
- package/node_modules/@quantiya/codevibe-core/dist/appsync/index.d.ts +3 -2
- package/node_modules/@quantiya/codevibe-core/dist/appsync/queries.d.ts +6 -2
- package/node_modules/@quantiya/codevibe-core/dist/auth/auth-telemetry.d.ts +26 -0
- package/node_modules/@quantiya/codevibe-core/dist/auth/keychain-cli.d.ts +6 -0
- package/node_modules/@quantiya/codevibe-core/dist/auth/vendor-key-cli.d.ts +49 -0
- package/node_modules/@quantiya/codevibe-core/dist/companion-mode/index.d.ts +50 -22
- package/node_modules/@quantiya/codevibe-core/dist/companion-mode/persist-preference.d.ts +1 -5
- package/node_modules/@quantiya/codevibe-core/dist/companion-mode/resolve-agent.d.ts +5 -4
- package/node_modules/@quantiya/codevibe-core/dist/config/config.d.ts +0 -5
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/__tests__/oauth-refresh.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/__tests__/upstream-result-helpers.d.ts +21 -0
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/broker.d.ts +196 -12
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/chatgpt-config.d.ts +40 -0
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/index.d.ts +4 -1
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/oauth-account-lock.d.ts +150 -0
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/oauth-refresh.d.ts +72 -0
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/types.d.ts +165 -17
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/upstream-client.d.ts +3 -2
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/vendor-key-store.d.ts +32 -1
- package/node_modules/@quantiya/codevibe-core/dist/crypto/__tests__/encrypt-for-emit.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/crypto/__tests__/open-prompt-id.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/crypto/encrypt-for-emit.d.ts +39 -0
- package/node_modules/@quantiya/codevibe-core/dist/crypto/index.d.ts +3 -0
- package/node_modules/@quantiya/codevibe-core/dist/crypto/open-prompt-id.d.ts +36 -0
- package/node_modules/@quantiya/codevibe-core/dist/daemon/__tests__/process-guards.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/daemon/index.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/daemon/process-guards.d.ts +38 -0
- package/node_modules/@quantiya/codevibe-core/dist/e1/__tests__/prompt-raise.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/e1/index.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/e1/prompt-raise.d.ts +65 -0
- package/node_modules/@quantiya/codevibe-core/dist/index.d.ts +20 -2
- package/node_modules/@quantiya/codevibe-core/dist/index.js +4543 -288
- package/node_modules/@quantiya/codevibe-core/dist/keychain/__tests__/keychain-manager.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/keychain/__tests__/keychain-migrate.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/keychain/keychain-backend.d.ts +105 -0
- package/node_modules/@quantiya/codevibe-core/dist/keychain/keychain-manager.d.ts +40 -5
- package/node_modules/@quantiya/codevibe-core/dist/keychain/keychain-migrate.d.ts +46 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/anchored-fs.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/bounded-directory.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/bounded-output.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/durable-directory.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/hosted-class-a-sink.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/process-identity.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/process-tree.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/publication-authority-capability.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/reviewer-rationale-flag.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/snapshot-merge.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/workspace-authority-fixture.d.ts +3 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/workspace-authority.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/workspace-materializer.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/agentic-disposable-repo.d.ts +23 -6
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/agentic-resolve.d.ts +16 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/anchored-fs.d.ts +243 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/bounded-directory.d.ts +64 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/bounded-helper.d.ts +22 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/bounded-output.d.ts +11 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/class-a-emit.d.ts +13 -1
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/class-a-sign.d.ts +15 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/durable-directory.d.ts +25 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/durable-store.d.ts +217 -25
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/group-decision-outcome.d.ts +11 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/hosted-class-a-sink.d.ts +27 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/implementor-argv.d.ts +89 -7
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/index.d.ts +3 -2
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/local-executor-impl.d.ts +177 -76
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/merge-conflict-resolve.d.ts +19 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/process-identity.d.ts +16 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/process-tree.d.ts +123 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/revert-reconcile.d.ts +16 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/revert-runner.d.ts +14 -1
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/reviewer-rationale-flag.d.ts +10 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/snapshot-merge.d.ts +124 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/task-group-types.d.ts +7 -6
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/team-execution-flag.d.ts +2 -2
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/track-registry.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/types.d.ts +34 -2
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/verification-gates/build.d.ts +5 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/verification-gates/deploy-preflight.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/verification-gates/diff-sanity.d.ts +12 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/verification-gates/hostile-grep.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/verification-gates/lint.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/verification-gates/shell-runner.d.ts +5 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/verification-gates/source-traceability.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/verification-gates/tests.d.ts +3 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/verification-gates/typecheck.d.ts +3 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/verification-runner.d.ts +6 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/workspace-authority.d.ts +45 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/workspace-materializer.d.ts +27 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/workspace-shadow.d.ts +378 -85
- package/node_modules/@quantiya/codevibe-core/dist/local-model/manager.d.ts +1 -1
- package/node_modules/@quantiya/codevibe-core/dist/local-model/ollama.d.ts +40 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/__tests__/detect-agents.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/detect-agents.d.ts +10 -30
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/index.d.ts +1 -2
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/a1a-planner-offers.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/a6-cli-surface.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/advisory-attachment-journal.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/advisory-attachments-dir-race.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/advisory-multi-mention-panel.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/advisory-panel-attachments.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/advisory-quota-stdout-result.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/agent-turn-context-batch.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/bounded-shutdown.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/brainstorm-quorum-wiring.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/brainstorm-quorum.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/cli-team-session-key.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/command-intent.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/context-compaction.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/context-items-hosted-sync.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/context-items-wiring.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/context-items.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/cp8-full-team-events.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/cp8-team-decomposed-zk.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/explicit-tty-exit.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/mention-suggest.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/planner-offer-e1.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/route-browse-summarize-recovery.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/workspace-shutdown.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/advisory-attachment-journal.d.ts +165 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/attachments.d.ts +53 -8
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/bounded-shutdown.d.ts +22 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/brainstorm-quorum.d.ts +118 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/cli.d.ts +97 -70
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/cli.js +51847 -33465
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/command-intent.d.ts +56 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/components/InputBar.d.ts +6 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/components/OrchestrationApp.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/context-compaction.d.ts +264 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/context-items-hosted-sync.d.ts +19 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/context-items.d.ts +408 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/context-store.d.ts +162 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/declared-test-runner.d.ts +21 -2
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/emit-shell-event.d.ts +41 -13
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/explicit-tty-exit.d.ts +17 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/gate-decision-submit.d.ts +11 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/gate-prompts.d.ts +78 -3
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/index.d.ts +309 -37
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/mention-suggest.d.ts +11 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/mode-selection.d.ts +4 -22
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/planner-offer-e1.d.ts +97 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/quorum-loop.d.ts +603 -77
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/reducer.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/task-progress.d.ts +17 -4
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/team-decompose.d.ts +47 -29
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/types.d.ts +103 -6
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/workspace-shutdown.d.ts +27 -0
- package/node_modules/@quantiya/codevibe-core/dist/planner/index.d.ts +1 -1
- package/node_modules/@quantiya/codevibe-core/dist/planner/local-advisory.d.ts +12 -0
- package/node_modules/@quantiya/codevibe-core/dist/planner/local-gemma.d.ts +27 -0
- package/node_modules/@quantiya/codevibe-core/dist/planner/types.d.ts +7 -0
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/index.d.ts +0 -2
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/output-parser.d.ts +19 -0
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/provider.d.ts +9 -6
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/providers/antigravity.d.ts +2 -3
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/registry.d.ts +9 -4
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/token-usage.d.ts +10 -0
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/types.d.ts +3 -0
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/verdict-classifier.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/session/__tests__/device-registration-lease.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/session/__tests__/pending-session-create.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/session/__tests__/session-rekey-fingerprint.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/session/__tests__/session-resume-key-reconciliation.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/session/__tests__/session-resume-pending-first.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/session/device-key-watcher.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/session/index.d.ts +4 -2
- package/node_modules/@quantiya/codevibe-core/dist/session/pending-session-create.d.ts +61 -0
- package/node_modules/@quantiya/codevibe-core/dist/session/register-device-key.d.ts +11 -1
- package/node_modules/@quantiya/codevibe-core/dist/session/session-rekey.d.ts +8 -8
- package/node_modules/@quantiya/codevibe-core/dist/session/session-resume.d.ts +21 -1
- package/node_modules/@quantiya/codevibe-core/dist/substrate/command-runner.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/substrate/docker.d.ts +14 -32
- package/node_modules/@quantiya/codevibe-core/dist/substrate/index.d.ts +0 -1
- package/node_modules/@quantiya/codevibe-core/dist/substrate/sandbox-exec.d.ts +17 -16
- package/node_modules/@quantiya/codevibe-core/dist/substrate/types.d.ts +39 -5
- package/node_modules/@quantiya/codevibe-core/dist/substrate-launch/__tests__/reviewer-credential-preflight.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/substrate-launch/apikey-bootstrap.d.ts +24 -1
- package/node_modules/@quantiya/codevibe-core/dist/substrate-launch/engage-substrate.d.ts +20 -0
- package/node_modules/@quantiya/codevibe-core/dist/substrate-launch/index.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/substrate-launch/reviewer-credential-preflight.d.ts +50 -0
- package/node_modules/@quantiya/codevibe-core/dist/substrate-launch/sanitized-env.d.ts +5 -5
- package/node_modules/@quantiya/codevibe-core/dist/test-publication-authority-setup.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/__tests__/consolidator.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/__tests__/digest.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/__tests__/flock-rollout-lock.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/__tests__/ledger.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/__tests__/outbox.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/__tests__/replay-cursor.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/__tests__/session-map.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/__tests__/socket-rollout-lock.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/atomic-file.d.ts +27 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/consolidator.d.ts +253 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/digest.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/flock-rollout-lock.d.ts +68 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/index.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/ledger.d.ts +274 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/outbox.d.ts +60 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/replay-cursor.d.ts +190 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/session-map.d.ts +133 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/socket-rollout-lock.d.ts +57 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/types.d.ts +368 -0
- package/node_modules/@quantiya/codevibe-core/dist/types/encryption.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/dist/types/events.d.ts +29 -4
- package/node_modules/@quantiya/codevibe-core/dist/types/session.d.ts +32 -2
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/README.md +207 -163
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/index.d.ts +15 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/index.js +31 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/max.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/max.js +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/md5.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/md5.js +13 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/native.d.ts +6 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/native.js +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/nil.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/nil.js +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/package.json +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/parse.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/parse.js +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/regex.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/regex.js +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/rng.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/rng.js +13 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/sha1.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/sha1.js +13 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/stringify.d.ts +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/stringify.js +39 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/types.d.ts +21 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/types.js +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/uuid-bin.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/uuid-bin.js +72 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v1.d.ts +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v1.js +87 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v1ToV6.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v1ToV6.js +13 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v3.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v3.js +14 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v35.d.ts +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v35.js +44 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v4.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v4.js +29 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v5.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v5.js +14 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v6.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v6.js +22 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v6ToV1.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v6ToV1.js +13 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v7.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v7.js +69 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/validate.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/validate.js +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/version.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/version.js +10 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/index.d.ts +15 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/index.js +31 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/max.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/max.js +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/md5.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/md5.js +137 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/native.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/native.js +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/nil.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/nil.js +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/package.json +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/parse.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/parse.js +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/regex.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/regex.js +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/rng.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/rng.js +14 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/sha1.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/sha1.js +72 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/stringify.d.ts +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/stringify.js +39 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/types.d.ts +21 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/types.js +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/uuid-bin.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/uuid-bin.js +72 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v1.d.ts +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v1.js +87 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v1ToV6.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v1ToV6.js +13 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v3.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v3.js +14 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v35.d.ts +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v35.js +44 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v4.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v4.js +29 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v5.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v5.js +14 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v6.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v6.js +22 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v6ToV1.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v6ToV1.js +13 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v7.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v7.js +69 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/validate.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/validate.js +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/version.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/version.js +10 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/bin/uuid +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/index.d.ts +15 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/{esm-node → esm}/index.js +9 -4
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/max.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/max.js +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/md5.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/md5.js +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/native.d.ts +6 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/native.js +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/nil.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/nil.js +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/parse.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/parse.js +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/regex.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/regex.js +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/rng.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/rng.js +10 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/sha1.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/sha1.js +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/stringify.d.ts +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/stringify.js +35 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/types.d.ts +21 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/types.js +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/uuid-bin.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/uuid-bin.js +70 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v1.d.ts +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v1.js +83 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v1ToV6.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v1ToV6.js +10 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v3.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v3.js +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v35.d.ts +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v35.js +39 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v4.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v4.js +27 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v5.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v5.js +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v6.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v6.js +20 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v6ToV1.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v6ToV1.js +10 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v7.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v7.js +65 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/validate.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/validate.js +5 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/version.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/version.js +8 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/index.d.ts +15 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/index.js +9 -4
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/max.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/max.js +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/md5.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/md5.js +113 -193
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/native.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/native.js +1 -3
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/nil.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/nil.js +1 -1
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/parse.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/parse.js +6 -32
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/regex.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/regex.js +1 -1
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/rng.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/rng.js +6 -13
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/sha1.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/sha1.js +62 -88
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/stringify.d.ts +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/stringify.js +27 -25
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/types.d.ts +21 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/types.js +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/uuid-bin.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/uuid-bin.js +70 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v1.d.ts +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v1.js +78 -90
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v1ToV6.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v1ToV6.js +10 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v3.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v3.js +8 -3
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v35.d.ts +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v35.js +30 -57
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v4.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v4.js +21 -23
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v5.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v5.js +8 -3
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v6.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v6.js +20 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v6ToV1.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v6ToV1.js +10 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v7.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v7.js +65 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/validate.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/validate.js +2 -4
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/version.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/version.js +5 -8
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/package.json +73 -76
- package/node_modules/@quantiya/codevibe-core/package.json +7 -6
- package/node_modules/fs-ext/.eslintrc +53 -0
- package/node_modules/fs-ext/.github/workflows/node.js.yml +31 -0
- package/node_modules/fs-ext/.travis.yml +25 -0
- package/node_modules/fs-ext/LICENSE.txt +18 -0
- package/node_modules/fs-ext/README.md +130 -0
- package/node_modules/fs-ext/appveyor.yml +20 -0
- package/node_modules/fs-ext/binding.gyp +11 -0
- package/node_modules/fs-ext/build/Makefile +347 -0
- package/node_modules/fs-ext/build/Release/.deps/Release/fs_ext.node.d +1 -0
- package/node_modules/fs-ext/build/Release/.deps/Release/obj.target/fs_ext/fs-ext.o.d +165 -0
- package/node_modules/fs-ext/build/Release/fs_ext.node +0 -0
- package/node_modules/fs-ext/build/Release/obj.target/fs_ext/fs-ext.o +0 -0
- package/node_modules/fs-ext/build/binding.Makefile +6 -0
- package/node_modules/fs-ext/build/config.gypi +504 -0
- package/node_modules/fs-ext/build/fs_ext.target.mk +183 -0
- package/node_modules/fs-ext/build/gyp-mac-tool +768 -0
- package/node_modules/fs-ext/example.js +57 -0
- package/node_modules/fs-ext/fs-ext.cc +622 -0
- package/node_modules/fs-ext/fs-ext.js +131 -0
- package/node_modules/fs-ext/package.json +42 -0
- package/node_modules/fs-ext/run_tests.js +17 -0
- package/node_modules/fs-ext/tests/test-fs-fcntl.js +350 -0
- package/node_modules/fs-ext/tests/test-fs-flock.js +452 -0
- package/node_modules/fs-ext/tests/test-fs-flock_stress.js +239 -0
- package/node_modules/fs-ext/tests/test-fs-seek.js +607 -0
- package/node_modules/fs-ext/tests/test-fs-seek_stress.js +313 -0
- package/node_modules/fs-ext/tests/test-fs-statvfs.js +15 -0
- package/node_modules/fs-ext/tests/worker-test.js +56 -0
- package/node_modules/fs-ext/wscript +15 -0
- package/node_modules/nan/.github/workflows/ci.yml +46 -0
- package/node_modules/nan/.pre-commit-config.yaml +8 -0
- package/node_modules/nan/CHANGELOG.md +605 -0
- package/node_modules/nan/CMakeLists.txt +138 -0
- package/node_modules/nan/LICENSE.md +9 -0
- package/node_modules/nan/README.md +457 -0
- package/node_modules/nan/doc/asyncworker.md +146 -0
- package/node_modules/nan/doc/buffers.md +54 -0
- package/node_modules/nan/doc/callback.md +76 -0
- package/node_modules/nan/doc/converters.md +41 -0
- package/node_modules/nan/doc/errors.md +226 -0
- package/node_modules/nan/doc/json.md +62 -0
- package/node_modules/nan/doc/maybe_types.md +583 -0
- package/node_modules/nan/doc/methods.md +689 -0
- package/node_modules/nan/doc/new.md +147 -0
- package/node_modules/nan/doc/node_misc.md +123 -0
- package/node_modules/nan/doc/object_wrappers.md +263 -0
- package/node_modules/nan/doc/persistent.md +296 -0
- package/node_modules/nan/doc/scopes.md +73 -0
- package/node_modules/nan/doc/script.md +58 -0
- package/node_modules/nan/doc/string_bytes.md +81 -0
- package/node_modules/nan/doc/v8_internals.md +211 -0
- package/node_modules/nan/doc/v8_misc.md +85 -0
- package/node_modules/nan/include_dirs.js +1 -0
- package/node_modules/nan/nan.h +3202 -0
- package/node_modules/nan/nan_callbacks.h +141 -0
- package/node_modules/nan/nan_callbacks_12_inl.h +730 -0
- package/node_modules/nan/nan_callbacks_pre_12_inl.h +528 -0
- package/node_modules/nan/nan_converters.h +72 -0
- package/node_modules/nan/nan_converters_43_inl.h +68 -0
- package/node_modules/nan/nan_converters_pre_43_inl.h +42 -0
- package/node_modules/nan/nan_define_own_property_helper.h +29 -0
- package/node_modules/nan/nan_implementation_12_inl.h +446 -0
- package/node_modules/nan/nan_implementation_pre_12_inl.h +263 -0
- package/node_modules/nan/nan_json.h +166 -0
- package/node_modules/nan/nan_maybe_43_inl.h +360 -0
- package/node_modules/nan/nan_maybe_pre_43_inl.h +268 -0
- package/node_modules/nan/nan_new.h +340 -0
- package/node_modules/nan/nan_object_wrap.h +156 -0
- package/node_modules/nan/nan_persistent_12_inl.h +132 -0
- package/node_modules/nan/nan_persistent_pre_12_inl.h +242 -0
- package/node_modules/nan/nan_private.h +73 -0
- package/node_modules/nan/nan_scriptorigin.h +97 -0
- package/node_modules/nan/nan_string_bytes.h +305 -0
- package/node_modules/nan/nan_typedarray_contents.h +96 -0
- package/node_modules/nan/nan_weak.h +453 -0
- package/node_modules/nan/package.json +38 -0
- package/node_modules/nan/tools/1to2.js +412 -0
- package/node_modules/nan/tools/README.md +14 -0
- package/node_modules/nan/tools/package.json +19 -0
- package/package.json +5 -5
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/orchestration-cli.d.ts +0 -12
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/setup-bootstrap.d.ts +0 -146
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/setup-failure-recourse.d.ts +0 -23
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/setup-save.d.ts +0 -47
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/setup-seat-picker.d.ts +0 -72
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/setup-telemetry.d.ts +0 -54
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/setup-test-agents.d.ts +0 -108
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/setup-types.d.ts +0 -146
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/setup-wizard.d.ts +0 -57
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/cohort-flag.d.ts +0 -16
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/providers/gemini.d.ts +0 -109
- package/node_modules/@quantiya/codevibe-core/dist/substrate/git-proxy.d.ts +0 -35
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/CHANGELOG.md +0 -274
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/CONTRIBUTING.md +0 -18
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/bin/uuid +0 -2
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/index.js +0 -79
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/md5.js +0 -223
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/native.js +0 -11
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/nil.js +0 -8
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/parse.js +0 -45
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/regex.js +0 -8
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/rng.js +0 -25
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/sha1.js +0 -104
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/stringify.js +0 -44
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/v1.js +0 -107
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/v3.js +0 -16
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/v35.js +0 -80
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/v4.js +0 -43
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/v5.js +0 -16
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/validate.js +0 -17
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/version.js +0 -21
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/md5.js +0 -13
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/native.js +0 -4
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/nil.js +0 -1
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/parse.js +0 -35
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/regex.js +0 -1
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/rng.js +0 -12
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/sha1.js +0 -13
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/stringify.js +0 -33
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/v1.js +0 -95
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/v3.js +0 -4
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/v35.js +0 -66
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/v4.js +0 -29
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/v5.js +0 -4
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/validate.js +0 -7
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/version.js +0 -11
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/index.js +0 -79
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/md5-browser.js +0 -223
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/md5.js +0 -23
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/native-browser.js +0 -11
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/native.js +0 -15
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/nil.js +0 -8
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/parse.js +0 -45
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/regex.js +0 -8
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/rng-browser.js +0 -25
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/rng.js +0 -24
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/sha1-browser.js +0 -104
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/sha1.js +0 -23
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/stringify.js +0 -44
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/uuid-bin.js +0 -85
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/v1.js +0 -107
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/v3.js +0 -16
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/v35.js +0 -80
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/v4.js +0 -43
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/v5.js +0 -16
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/validate.js +0 -17
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/version.js +0 -21
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/wrapper.mjs +0 -10
- /package/node_modules/@quantiya/codevibe-core/dist/{companion-mode/__tests__/detect-parallel.test.d.ts → appsync/__tests__/appsync-client-context-items.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration-shell/__tests__/cli-stub-session-adapter.test.d.ts → appsync/__tests__/heartbeat-active.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration/__tests__/setup-bootstrap.test.d.ts → appsync/__tests__/orphan-sweep-null-heartbeat.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration/__tests__/setup-failure-recourse.test.d.ts → appsync/__tests__/refresh-open-prompt-ttl-chunk.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration/__tests__/setup-save.test.d.ts → auth/__tests__/keychain-cli.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration/__tests__/setup-seat-picker.test.d.ts → auth/__tests__/vendor-key-cli.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration/__tests__/setup-telemetry.test.d.ts → companion-mode/__tests__/mode-selected-emit.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration/__tests__/setup-test-agents.test.d.ts → companion-mode/__tests__/private-launcher-detection.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration/__tests__/setup-types.test.d.ts → companion-mode/__tests__/private-launcher-path.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration/__tests__/setup-wizard.test.d.ts → credential-broker/__tests__/broker-c4.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{reviewer/providers/__tests__/gemini-live-smoke.test.d.ts → credential-broker/__tests__/broker-streaming.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{reviewer/providers/__tests__/gemini.test.d.ts → credential-broker/__tests__/chatgpt-config.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{substrate/__tests__/git-proxy.test.d.ts → credential-broker/__tests__/oauth-account-lock.test.d.ts} +0 -0
|
@@ -0,0 +1,347 @@
|
|
|
1
|
+
# We borrow heavily from the kernel build setup, though we are simpler since
|
|
2
|
+
# we don't have Kconfig tweaking settings on us.
|
|
3
|
+
|
|
4
|
+
# The implicit make rules have it looking for RCS files, among other things.
|
|
5
|
+
# We instead explicitly write all the rules we care about.
|
|
6
|
+
# It's even quicker (saves ~200ms) to pass -r on the command line.
|
|
7
|
+
MAKEFLAGS=-r
|
|
8
|
+
|
|
9
|
+
# The source directory tree.
|
|
10
|
+
srcdir := ..
|
|
11
|
+
abs_srcdir := $(abspath $(srcdir))
|
|
12
|
+
|
|
13
|
+
# The name of the builddir.
|
|
14
|
+
builddir_name ?= .
|
|
15
|
+
|
|
16
|
+
# The V=1 flag on command line makes us verbosely print command lines.
|
|
17
|
+
ifdef V
|
|
18
|
+
quiet=
|
|
19
|
+
else
|
|
20
|
+
quiet=quiet_
|
|
21
|
+
endif
|
|
22
|
+
|
|
23
|
+
# Specify BUILDTYPE=Release on the command line for a release build.
|
|
24
|
+
BUILDTYPE ?= Release
|
|
25
|
+
|
|
26
|
+
# Directory all our build output goes into.
|
|
27
|
+
# Note that this must be two directories beneath src/ for unit tests to pass,
|
|
28
|
+
# as they reach into the src/ directory for data with relative paths.
|
|
29
|
+
builddir ?= $(builddir_name)/$(BUILDTYPE)
|
|
30
|
+
abs_builddir := $(abspath $(builddir))
|
|
31
|
+
depsdir := $(builddir)/.deps
|
|
32
|
+
|
|
33
|
+
# Object output directory.
|
|
34
|
+
obj := $(builddir)/obj
|
|
35
|
+
abs_obj := $(abspath $(obj))
|
|
36
|
+
|
|
37
|
+
# We build up a list of every single one of the targets so we can slurp in the
|
|
38
|
+
# generated dependency rule Makefiles in one pass.
|
|
39
|
+
all_deps :=
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
CC.target ?= $(CC)
|
|
44
|
+
CFLAGS.target ?= $(CPPFLAGS) $(CFLAGS)
|
|
45
|
+
CXX.target ?= $(CXX)
|
|
46
|
+
CXXFLAGS.target ?= $(CPPFLAGS) $(CXXFLAGS)
|
|
47
|
+
LINK.target ?= $(LINK)
|
|
48
|
+
LDFLAGS.target ?= $(LDFLAGS)
|
|
49
|
+
AR.target ?= $(AR)
|
|
50
|
+
PLI.target ?= pli
|
|
51
|
+
|
|
52
|
+
# C++ apps need to be linked with g++.
|
|
53
|
+
LINK ?= $(CXX.target)
|
|
54
|
+
|
|
55
|
+
# TODO(evan): move all cross-compilation logic to gyp-time so we don't need
|
|
56
|
+
# to replicate this environment fallback in make as well.
|
|
57
|
+
CC.host ?= gcc
|
|
58
|
+
CFLAGS.host ?= $(CPPFLAGS_host) $(CFLAGS_host)
|
|
59
|
+
CXX.host ?= g++
|
|
60
|
+
CXXFLAGS.host ?= $(CPPFLAGS_host) $(CXXFLAGS_host)
|
|
61
|
+
LINK.host ?= $(CXX.host)
|
|
62
|
+
LDFLAGS.host ?= $(LDFLAGS_host)
|
|
63
|
+
AR.host ?= ar
|
|
64
|
+
PLI.host ?= pli
|
|
65
|
+
|
|
66
|
+
# Define a dir function that can handle spaces.
|
|
67
|
+
# http://www.gnu.org/software/make/manual/make.html#Syntax-of-Functions
|
|
68
|
+
# "leading spaces cannot appear in the text of the first argument as written.
|
|
69
|
+
# These characters can be put into the argument value by variable substitution."
|
|
70
|
+
empty :=
|
|
71
|
+
space := $(empty) $(empty)
|
|
72
|
+
|
|
73
|
+
# http://stackoverflow.com/questions/1189781/using-make-dir-or-notdir-on-a-path-with-spaces
|
|
74
|
+
replace_spaces = $(subst $(space),?,$1)
|
|
75
|
+
unreplace_spaces = $(subst ?,$(space),$1)
|
|
76
|
+
dirx = $(call unreplace_spaces,$(dir $(call replace_spaces,$1)))
|
|
77
|
+
|
|
78
|
+
# Flags to make gcc output dependency info. Note that you need to be
|
|
79
|
+
# careful here to use the flags that ccache and distcc can understand.
|
|
80
|
+
# We write to a dep file on the side first and then rename at the end
|
|
81
|
+
# so we can't end up with a broken dep file.
|
|
82
|
+
depfile = $(depsdir)/$(call replace_spaces,$@).d
|
|
83
|
+
DEPFLAGS = -MMD -MF $(depfile).raw
|
|
84
|
+
|
|
85
|
+
# We have to fixup the deps output in a few ways.
|
|
86
|
+
# (1) the file output should mention the proper .o file.
|
|
87
|
+
# ccache or distcc lose the path to the target, so we convert a rule of
|
|
88
|
+
# the form:
|
|
89
|
+
# foobar.o: DEP1 DEP2
|
|
90
|
+
# into
|
|
91
|
+
# path/to/foobar.o: DEP1 DEP2
|
|
92
|
+
# (2) we want missing files not to cause us to fail to build.
|
|
93
|
+
# We want to rewrite
|
|
94
|
+
# foobar.o: DEP1 DEP2 \
|
|
95
|
+
# DEP3
|
|
96
|
+
# to
|
|
97
|
+
# DEP1:
|
|
98
|
+
# DEP2:
|
|
99
|
+
# DEP3:
|
|
100
|
+
# so if the files are missing, they're just considered phony rules.
|
|
101
|
+
# We have to do some pretty insane escaping to get those backslashes
|
|
102
|
+
# and dollar signs past make, the shell, and sed at the same time.
|
|
103
|
+
# Doesn't work with spaces, but that's fine: .d files have spaces in
|
|
104
|
+
# their names replaced with other characters.
|
|
105
|
+
define fixup_dep
|
|
106
|
+
# The depfile may not exist if the input file didn't have any #includes.
|
|
107
|
+
touch $(depfile).raw
|
|
108
|
+
# Fixup path as in (1).
|
|
109
|
+
sed -e "s|^$(notdir $@)|$@|" $(depfile).raw >> $(depfile)
|
|
110
|
+
# Add extra rules as in (2).
|
|
111
|
+
# We remove slashes and replace spaces with new lines;
|
|
112
|
+
# remove blank lines;
|
|
113
|
+
# delete the first line and append a colon to the remaining lines.
|
|
114
|
+
sed -e 's|\\||' -e 'y| |\n|' $(depfile).raw |\
|
|
115
|
+
grep -v '^$$' |\
|
|
116
|
+
sed -e 1d -e 's|$$|:|' \
|
|
117
|
+
>> $(depfile)
|
|
118
|
+
rm $(depfile).raw
|
|
119
|
+
endef
|
|
120
|
+
|
|
121
|
+
# Command definitions:
|
|
122
|
+
# - cmd_foo is the actual command to run;
|
|
123
|
+
# - quiet_cmd_foo is the brief-output summary of the command.
|
|
124
|
+
|
|
125
|
+
quiet_cmd_cc = CC($(TOOLSET)) $@
|
|
126
|
+
cmd_cc = $(CC.$(TOOLSET)) -o $@ $< $(GYP_CFLAGS) $(DEPFLAGS) $(CFLAGS.$(TOOLSET)) -c
|
|
127
|
+
|
|
128
|
+
quiet_cmd_cxx = CXX($(TOOLSET)) $@
|
|
129
|
+
cmd_cxx = $(CXX.$(TOOLSET)) -o $@ $< $(GYP_CXXFLAGS) $(DEPFLAGS) $(CXXFLAGS.$(TOOLSET)) -c
|
|
130
|
+
|
|
131
|
+
quiet_cmd_objc = CXX($(TOOLSET)) $@
|
|
132
|
+
cmd_objc = $(CC.$(TOOLSET)) $(GYP_OBJCFLAGS) $(DEPFLAGS) -c -o $@ $<
|
|
133
|
+
|
|
134
|
+
quiet_cmd_objcxx = CXX($(TOOLSET)) $@
|
|
135
|
+
cmd_objcxx = $(CXX.$(TOOLSET)) $(GYP_OBJCXXFLAGS) $(DEPFLAGS) -c -o $@ $<
|
|
136
|
+
|
|
137
|
+
# Commands for precompiled header files.
|
|
138
|
+
quiet_cmd_pch_c = CXX($(TOOLSET)) $@
|
|
139
|
+
cmd_pch_c = $(CC.$(TOOLSET)) $(GYP_PCH_CFLAGS) $(DEPFLAGS) $(CXXFLAGS.$(TOOLSET)) -c -o $@ $<
|
|
140
|
+
quiet_cmd_pch_cc = CXX($(TOOLSET)) $@
|
|
141
|
+
cmd_pch_cc = $(CC.$(TOOLSET)) $(GYP_PCH_CXXFLAGS) $(DEPFLAGS) $(CXXFLAGS.$(TOOLSET)) -c -o $@ $<
|
|
142
|
+
quiet_cmd_pch_m = CXX($(TOOLSET)) $@
|
|
143
|
+
cmd_pch_m = $(CC.$(TOOLSET)) $(GYP_PCH_OBJCFLAGS) $(DEPFLAGS) -c -o $@ $<
|
|
144
|
+
quiet_cmd_pch_mm = CXX($(TOOLSET)) $@
|
|
145
|
+
cmd_pch_mm = $(CC.$(TOOLSET)) $(GYP_PCH_OBJCXXFLAGS) $(DEPFLAGS) -c -o $@ $<
|
|
146
|
+
|
|
147
|
+
# gyp-mac-tool is written next to the root Makefile by gyp.
|
|
148
|
+
# Use $(4) for the command, since $(2) and $(3) are used as flag by do_cmd
|
|
149
|
+
# already.
|
|
150
|
+
quiet_cmd_mac_tool = MACTOOL $(4) $<
|
|
151
|
+
cmd_mac_tool = /opt/homebrew/opt/python@3.14/bin/python3.14 gyp-mac-tool $(4) $< "$@"
|
|
152
|
+
|
|
153
|
+
quiet_cmd_mac_package_framework = PACKAGE FRAMEWORK $@
|
|
154
|
+
cmd_mac_package_framework = /opt/homebrew/opt/python@3.14/bin/python3.14 gyp-mac-tool package-framework "$@" $(4)
|
|
155
|
+
|
|
156
|
+
quiet_cmd_infoplist = INFOPLIST $@
|
|
157
|
+
cmd_infoplist = $(CC.$(TOOLSET)) -E -P -Wno-trigraphs -x c $(INFOPLIST_DEFINES) "$<" -o "$@"
|
|
158
|
+
|
|
159
|
+
quiet_cmd_touch = TOUCH $@
|
|
160
|
+
cmd_touch = touch $@
|
|
161
|
+
|
|
162
|
+
quiet_cmd_copy = COPY $@
|
|
163
|
+
# send stderr to /dev/null to ignore messages when linking directories.
|
|
164
|
+
cmd_copy = ln -f "$<" "$@" 2>/dev/null || (rm -rf "$@" && cp -af "$<" "$@")
|
|
165
|
+
|
|
166
|
+
quiet_cmd_symlink = SYMLINK $@
|
|
167
|
+
cmd_symlink = ln -sf "$<" "$@"
|
|
168
|
+
|
|
169
|
+
quiet_cmd_alink = LIBTOOL-STATIC $@
|
|
170
|
+
cmd_alink = rm -f $@ && /opt/homebrew/opt/python@3.14/bin/python3.14 gyp-mac-tool filter-libtool libtool $(GYP_LIBTOOLFLAGS) -static -o $@ $(filter %.o,$^)
|
|
171
|
+
|
|
172
|
+
quiet_cmd_link = LINK($(TOOLSET)) $@
|
|
173
|
+
cmd_link = $(LINK.$(TOOLSET)) $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -o "$@" $(LD_INPUTS) $(LIBS)
|
|
174
|
+
|
|
175
|
+
quiet_cmd_solink = SOLINK($(TOOLSET)) $@
|
|
176
|
+
cmd_solink = $(LINK.$(TOOLSET)) -shared $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -o "$@" $(LD_INPUTS) $(LIBS)
|
|
177
|
+
|
|
178
|
+
quiet_cmd_solink_module = SOLINK_MODULE($(TOOLSET)) $@
|
|
179
|
+
cmd_solink_module = $(LINK.$(TOOLSET)) -bundle $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -o $@ $(filter-out FORCE_DO_CMD, $^) $(LIBS)
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
# Define an escape_quotes function to escape single quotes.
|
|
183
|
+
# This allows us to handle quotes properly as long as we always use
|
|
184
|
+
# use single quotes and escape_quotes.
|
|
185
|
+
escape_quotes = $(subst ','\'',$(1))
|
|
186
|
+
# This comment is here just to include a ' to unconfuse syntax highlighting.
|
|
187
|
+
# Define an escape_vars function to escape '$' variable syntax.
|
|
188
|
+
# This allows us to read/write command lines with shell variables (e.g.
|
|
189
|
+
# $LD_LIBRARY_PATH), without triggering make substitution.
|
|
190
|
+
escape_vars = $(subst $$,$$$$,$(1))
|
|
191
|
+
# Helper that expands to a shell command to echo a string exactly as it is in
|
|
192
|
+
# make. This uses printf instead of echo because printf's behaviour with respect
|
|
193
|
+
# to escape sequences is more portable than echo's across different shells
|
|
194
|
+
# (e.g., dash, bash).
|
|
195
|
+
exact_echo = printf '%s\n' '$(call escape_quotes,$(1))'
|
|
196
|
+
|
|
197
|
+
# Helper to compare the command we're about to run against the command
|
|
198
|
+
# we logged the last time we ran the command. Produces an empty
|
|
199
|
+
# string (false) when the commands match.
|
|
200
|
+
# Tricky point: Make has no string-equality test function.
|
|
201
|
+
# The kernel uses the following, but it seems like it would have false
|
|
202
|
+
# positives, where one string reordered its arguments.
|
|
203
|
+
# arg_check = $(strip $(filter-out $(cmd_$(1)), $(cmd_$@)) \
|
|
204
|
+
# $(filter-out $(cmd_$@), $(cmd_$(1))))
|
|
205
|
+
# We instead substitute each for the empty string into the other, and
|
|
206
|
+
# say they're equal if both substitutions produce the empty string.
|
|
207
|
+
# .d files contain ? instead of spaces, take that into account.
|
|
208
|
+
command_changed = $(or $(subst $(cmd_$(1)),,$(cmd_$(call replace_spaces,$@))),\
|
|
209
|
+
$(subst $(cmd_$(call replace_spaces,$@)),,$(cmd_$(1))))
|
|
210
|
+
|
|
211
|
+
# Helper that is non-empty when a prerequisite changes.
|
|
212
|
+
# Normally make does this implicitly, but we force rules to always run
|
|
213
|
+
# so we can check their command lines.
|
|
214
|
+
# $? -- new prerequisites
|
|
215
|
+
# $| -- order-only dependencies
|
|
216
|
+
prereq_changed = $(filter-out FORCE_DO_CMD,$(filter-out $|,$?))
|
|
217
|
+
|
|
218
|
+
# Helper that executes all postbuilds until one fails.
|
|
219
|
+
define do_postbuilds
|
|
220
|
+
@E=0;\
|
|
221
|
+
for p in $(POSTBUILDS); do\
|
|
222
|
+
eval $$p;\
|
|
223
|
+
E=$$?;\
|
|
224
|
+
if [ $$E -ne 0 ]; then\
|
|
225
|
+
break;\
|
|
226
|
+
fi;\
|
|
227
|
+
done;\
|
|
228
|
+
if [ $$E -ne 0 ]; then\
|
|
229
|
+
rm -rf "$@";\
|
|
230
|
+
exit $$E;\
|
|
231
|
+
fi
|
|
232
|
+
endef
|
|
233
|
+
|
|
234
|
+
# do_cmd: run a command via the above cmd_foo names, if necessary.
|
|
235
|
+
# Should always run for a given target to handle command-line changes.
|
|
236
|
+
# Second argument, if non-zero, makes it do asm/C/C++ dependency munging.
|
|
237
|
+
# Third argument, if non-zero, makes it do POSTBUILDS processing.
|
|
238
|
+
# Note: We intentionally do NOT call dirx for depfile, since it contains ? for
|
|
239
|
+
# spaces already and dirx strips the ? characters.
|
|
240
|
+
define do_cmd
|
|
241
|
+
$(if $(or $(command_changed),$(prereq_changed)),
|
|
242
|
+
@$(call exact_echo, $($(quiet)cmd_$(1)))
|
|
243
|
+
@mkdir -p "$(call dirx,$@)" "$(dir $(depfile))"
|
|
244
|
+
$(if $(findstring flock,$(word 2,$(cmd_$1))),
|
|
245
|
+
@$(cmd_$(1))
|
|
246
|
+
@echo " $(quiet_cmd_$(1)): Finished",
|
|
247
|
+
@$(cmd_$(1))
|
|
248
|
+
)
|
|
249
|
+
@$(call exact_echo,$(call escape_vars,cmd_$(call replace_spaces,$@) := $(cmd_$(1)))) > $(depfile)
|
|
250
|
+
@$(if $(2),$(fixup_dep))
|
|
251
|
+
$(if $(and $(3), $(POSTBUILDS)),
|
|
252
|
+
$(call do_postbuilds)
|
|
253
|
+
)
|
|
254
|
+
)
|
|
255
|
+
endef
|
|
256
|
+
|
|
257
|
+
# Declare the "all" target first so it is the default,
|
|
258
|
+
# even though we don't have the deps yet.
|
|
259
|
+
.PHONY: all
|
|
260
|
+
all:
|
|
261
|
+
|
|
262
|
+
# make looks for ways to re-generate included makefiles, but in our case, we
|
|
263
|
+
# don't have a direct way. Explicitly telling make that it has nothing to do
|
|
264
|
+
# for them makes it go faster.
|
|
265
|
+
%.d: ;
|
|
266
|
+
|
|
267
|
+
# Use FORCE_DO_CMD to force a target to run. Should be coupled with
|
|
268
|
+
# do_cmd.
|
|
269
|
+
.PHONY: FORCE_DO_CMD
|
|
270
|
+
FORCE_DO_CMD:
|
|
271
|
+
|
|
272
|
+
TOOLSET := target
|
|
273
|
+
# Suffix rules, putting all outputs into $(obj).
|
|
274
|
+
$(obj).$(TOOLSET)/%.o: $(srcdir)/%.c FORCE_DO_CMD
|
|
275
|
+
@$(call do_cmd,cc,1)
|
|
276
|
+
$(obj).$(TOOLSET)/%.o: $(srcdir)/%.cc FORCE_DO_CMD
|
|
277
|
+
@$(call do_cmd,cxx,1)
|
|
278
|
+
$(obj).$(TOOLSET)/%.o: $(srcdir)/%.cpp FORCE_DO_CMD
|
|
279
|
+
@$(call do_cmd,cxx,1)
|
|
280
|
+
$(obj).$(TOOLSET)/%.o: $(srcdir)/%.cxx FORCE_DO_CMD
|
|
281
|
+
@$(call do_cmd,cxx,1)
|
|
282
|
+
$(obj).$(TOOLSET)/%.o: $(srcdir)/%.m FORCE_DO_CMD
|
|
283
|
+
@$(call do_cmd,objc,1)
|
|
284
|
+
$(obj).$(TOOLSET)/%.o: $(srcdir)/%.mm FORCE_DO_CMD
|
|
285
|
+
@$(call do_cmd,objcxx,1)
|
|
286
|
+
$(obj).$(TOOLSET)/%.o: $(srcdir)/%.s FORCE_DO_CMD
|
|
287
|
+
@$(call do_cmd,cc,1)
|
|
288
|
+
$(obj).$(TOOLSET)/%.o: $(srcdir)/%.S FORCE_DO_CMD
|
|
289
|
+
@$(call do_cmd,cc,1)
|
|
290
|
+
|
|
291
|
+
# Try building from generated source, too.
|
|
292
|
+
$(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.c FORCE_DO_CMD
|
|
293
|
+
@$(call do_cmd,cc,1)
|
|
294
|
+
$(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.cc FORCE_DO_CMD
|
|
295
|
+
@$(call do_cmd,cxx,1)
|
|
296
|
+
$(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.cpp FORCE_DO_CMD
|
|
297
|
+
@$(call do_cmd,cxx,1)
|
|
298
|
+
$(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.cxx FORCE_DO_CMD
|
|
299
|
+
@$(call do_cmd,cxx,1)
|
|
300
|
+
$(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.m FORCE_DO_CMD
|
|
301
|
+
@$(call do_cmd,objc,1)
|
|
302
|
+
$(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.mm FORCE_DO_CMD
|
|
303
|
+
@$(call do_cmd,objcxx,1)
|
|
304
|
+
$(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.s FORCE_DO_CMD
|
|
305
|
+
@$(call do_cmd,cc,1)
|
|
306
|
+
$(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.S FORCE_DO_CMD
|
|
307
|
+
@$(call do_cmd,cc,1)
|
|
308
|
+
|
|
309
|
+
$(obj).$(TOOLSET)/%.o: $(obj)/%.c FORCE_DO_CMD
|
|
310
|
+
@$(call do_cmd,cc,1)
|
|
311
|
+
$(obj).$(TOOLSET)/%.o: $(obj)/%.cc FORCE_DO_CMD
|
|
312
|
+
@$(call do_cmd,cxx,1)
|
|
313
|
+
$(obj).$(TOOLSET)/%.o: $(obj)/%.cpp FORCE_DO_CMD
|
|
314
|
+
@$(call do_cmd,cxx,1)
|
|
315
|
+
$(obj).$(TOOLSET)/%.o: $(obj)/%.cxx FORCE_DO_CMD
|
|
316
|
+
@$(call do_cmd,cxx,1)
|
|
317
|
+
$(obj).$(TOOLSET)/%.o: $(obj)/%.m FORCE_DO_CMD
|
|
318
|
+
@$(call do_cmd,objc,1)
|
|
319
|
+
$(obj).$(TOOLSET)/%.o: $(obj)/%.mm FORCE_DO_CMD
|
|
320
|
+
@$(call do_cmd,objcxx,1)
|
|
321
|
+
$(obj).$(TOOLSET)/%.o: $(obj)/%.s FORCE_DO_CMD
|
|
322
|
+
@$(call do_cmd,cc,1)
|
|
323
|
+
$(obj).$(TOOLSET)/%.o: $(obj)/%.S FORCE_DO_CMD
|
|
324
|
+
@$(call do_cmd,cc,1)
|
|
325
|
+
|
|
326
|
+
|
|
327
|
+
ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
|
|
328
|
+
$(findstring $(join ^,$(prefix)),\
|
|
329
|
+
$(join ^,fs_ext.target.mk)))),)
|
|
330
|
+
include fs_ext.target.mk
|
|
331
|
+
endif
|
|
332
|
+
|
|
333
|
+
quiet_cmd_regen_makefile = ACTION Regenerating $@
|
|
334
|
+
cmd_regen_makefile = cd $(srcdir); /opt/homebrew/lib/node_modules/npm/node_modules/node-gyp/gyp/gyp_main.py -fmake --ignore-environment "-Dlibrary=shared_library" "-Dvisibility=default" "-Dnode_root_dir=/Users/hendryyeh/Library/Caches/node-gyp/24.4.0" "-Dnode_gyp_dir=/opt/homebrew/lib/node_modules/npm/node_modules/node-gyp" "-Dnode_lib_file=/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/<(target_arch)/node.lib" "-Dmodule_root_dir=/Users/hendryyeh/Workspace/CodeVibe/.agent-worktrees/claude-2/codevibe-codex-plugin-e1/node_modules/fs-ext" "-Dnode_engine=v8" "--depth=." "-Goutput_dir=." "--generator-output=build" -I/Users/hendryyeh/Workspace/CodeVibe/.agent-worktrees/claude-2/codevibe-codex-plugin-e1/node_modules/fs-ext/build/config.gypi -I/opt/homebrew/lib/node_modules/npm/node_modules/node-gyp/addon.gypi -I/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/common.gypi "--toplevel-dir=." binding.gyp
|
|
335
|
+
Makefile: $(srcdir)/../../../../../../../Library/Caches/node-gyp/24.4.0/include/node/common.gypi $(srcdir)/../../../../../../../../../opt/homebrew/lib/node_modules/npm/node_modules/node-gyp/addon.gypi $(srcdir)/build/config.gypi $(srcdir)/binding.gyp
|
|
336
|
+
$(call do_cmd,regen_makefile)
|
|
337
|
+
|
|
338
|
+
# "all" is a concatenation of the "all" targets from all the included
|
|
339
|
+
# sub-makefiles. This is just here to clarify.
|
|
340
|
+
all:
|
|
341
|
+
|
|
342
|
+
# Add in dependency-tracking rules. $(all_deps) is the list of every single
|
|
343
|
+
# target in our tree. Only consider the ones with .d (dependency) info:
|
|
344
|
+
d_files := $(wildcard $(foreach f,$(all_deps),$(depsdir)/$(f).d))
|
|
345
|
+
ifneq ($(d_files),)
|
|
346
|
+
include $(d_files)
|
|
347
|
+
endif
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
cmd_Release/fs_ext.node := c++ -bundle -undefined dynamic_lookup -Wl,-search_paths_first -mmacosx-version-min=13.5 -arch arm64 -L./Release -stdlib=libc++ -o Release/fs_ext.node Release/obj.target/fs_ext/fs-ext.o
|
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
cmd_Release/obj.target/fs_ext/fs-ext.o := c++ -o Release/obj.target/fs_ext/fs-ext.o ../fs-ext.cc '-DNODE_GYP_MODULE_NAME=fs_ext' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-D_GLIBCXX_USE_CXX11_ABI=1' '-D_FILE_OFFSET_BITS=64' '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-DBUILDING_NODE_EXTENSION' -I/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node -I/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/src -I/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/deps/openssl/config -I/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/deps/openssl/openssl/include -I/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/deps/uv/include -I/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/deps/zlib -I/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/deps/v8/include -I../../nan -O3 -gdwarf-2 -fno-strict-aliasing -mmacosx-version-min=13.5 -arch arm64 -Wall -Wendif-labels -W -Wno-unused-parameter -std=gnu++20 -stdlib=libc++ -fno-rtti -fno-exceptions -MMD -MF ./Release/.deps/Release/obj.target/fs_ext/fs-ext.o.d.raw -c
|
|
2
|
+
Release/obj.target/fs_ext/fs-ext.o: ../fs-ext.cc \
|
|
3
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/node.h \
|
|
4
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8.h \
|
|
5
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/cppgc/common.h \
|
|
6
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8config.h \
|
|
7
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-array-buffer.h \
|
|
8
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-local-handle.h \
|
|
9
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-handle-base.h \
|
|
10
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-internal.h \
|
|
11
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-memory-span.h \
|
|
12
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-object.h \
|
|
13
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-maybe.h \
|
|
14
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/cppgc/internal/conditional-stack-allocated.h \
|
|
15
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/cppgc/macros.h \
|
|
16
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/cppgc/internal/compiler-specific.h \
|
|
17
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/cppgc/type-traits.h \
|
|
18
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-persistent-handle.h \
|
|
19
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-weak-callback-info.h \
|
|
20
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-primitive.h \
|
|
21
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-data.h \
|
|
22
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-value.h \
|
|
23
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-sandbox.h \
|
|
24
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-traced-handle.h \
|
|
25
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-platform.h \
|
|
26
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-source-location.h \
|
|
27
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-container.h \
|
|
28
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-context.h \
|
|
29
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-snapshot.h \
|
|
30
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-isolate.h \
|
|
31
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-callbacks.h \
|
|
32
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-promise.h \
|
|
33
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-debug.h \
|
|
34
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-script.h \
|
|
35
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-message.h \
|
|
36
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-embedder-heap.h \
|
|
37
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-exception.h \
|
|
38
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-function-callback.h \
|
|
39
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-microtask.h \
|
|
40
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-statistics.h \
|
|
41
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-unwinder.h \
|
|
42
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-embedder-state-scope.h \
|
|
43
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-date.h \
|
|
44
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-extension.h \
|
|
45
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-external.h \
|
|
46
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-function.h \
|
|
47
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-template.h \
|
|
48
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-initialization.h \
|
|
49
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-json.h \
|
|
50
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-locker.h \
|
|
51
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-microtask-queue.h \
|
|
52
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-primitive-object.h \
|
|
53
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-proxy.h \
|
|
54
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-regexp.h \
|
|
55
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-typed-array.h \
|
|
56
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-value-serializer.h \
|
|
57
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-version.h \
|
|
58
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-wasm.h \
|
|
59
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/node_version.h \
|
|
60
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/node_api.h \
|
|
61
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/js_native_api.h \
|
|
62
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/js_native_api_types.h \
|
|
63
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/node_api_types.h \
|
|
64
|
+
../../nan/nan.h \
|
|
65
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/uv.h \
|
|
66
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/uv/errno.h \
|
|
67
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/uv/version.h \
|
|
68
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/uv/unix.h \
|
|
69
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/uv/threadpool.h \
|
|
70
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/uv/darwin.h \
|
|
71
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/node_buffer.h \
|
|
72
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/node_object_wrap.h \
|
|
73
|
+
../../nan/nan_callbacks.h ../../nan/nan_callbacks_12_inl.h \
|
|
74
|
+
../../nan/nan_maybe_43_inl.h ../../nan/nan_converters.h \
|
|
75
|
+
../../nan/nan_converters_43_inl.h ../../nan/nan_new.h \
|
|
76
|
+
../../nan/nan_implementation_12_inl.h \
|
|
77
|
+
../../nan/nan_persistent_12_inl.h ../../nan/nan_weak.h \
|
|
78
|
+
../../nan/nan_object_wrap.h ../../nan/nan_private.h \
|
|
79
|
+
../../nan/nan_typedarray_contents.h ../../nan/nan_json.h \
|
|
80
|
+
../../nan/nan_scriptorigin.h
|
|
81
|
+
../fs-ext.cc:
|
|
82
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/node.h:
|
|
83
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8.h:
|
|
84
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/cppgc/common.h:
|
|
85
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8config.h:
|
|
86
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-array-buffer.h:
|
|
87
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-local-handle.h:
|
|
88
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-handle-base.h:
|
|
89
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-internal.h:
|
|
90
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-memory-span.h:
|
|
91
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-object.h:
|
|
92
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-maybe.h:
|
|
93
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/cppgc/internal/conditional-stack-allocated.h:
|
|
94
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/cppgc/macros.h:
|
|
95
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/cppgc/internal/compiler-specific.h:
|
|
96
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/cppgc/type-traits.h:
|
|
97
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-persistent-handle.h:
|
|
98
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-weak-callback-info.h:
|
|
99
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-primitive.h:
|
|
100
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-data.h:
|
|
101
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-value.h:
|
|
102
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-sandbox.h:
|
|
103
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-traced-handle.h:
|
|
104
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-platform.h:
|
|
105
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-source-location.h:
|
|
106
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-container.h:
|
|
107
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-context.h:
|
|
108
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-snapshot.h:
|
|
109
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-isolate.h:
|
|
110
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-callbacks.h:
|
|
111
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-promise.h:
|
|
112
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-debug.h:
|
|
113
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-script.h:
|
|
114
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-message.h:
|
|
115
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-embedder-heap.h:
|
|
116
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-exception.h:
|
|
117
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-function-callback.h:
|
|
118
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-microtask.h:
|
|
119
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-statistics.h:
|
|
120
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-unwinder.h:
|
|
121
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-embedder-state-scope.h:
|
|
122
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-date.h:
|
|
123
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-extension.h:
|
|
124
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-external.h:
|
|
125
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-function.h:
|
|
126
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-template.h:
|
|
127
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-initialization.h:
|
|
128
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-json.h:
|
|
129
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-locker.h:
|
|
130
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-microtask-queue.h:
|
|
131
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-primitive-object.h:
|
|
132
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-proxy.h:
|
|
133
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-regexp.h:
|
|
134
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-typed-array.h:
|
|
135
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-value-serializer.h:
|
|
136
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-version.h:
|
|
137
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/v8-wasm.h:
|
|
138
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/node_version.h:
|
|
139
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/node_api.h:
|
|
140
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/js_native_api.h:
|
|
141
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/js_native_api_types.h:
|
|
142
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/node_api_types.h:
|
|
143
|
+
../../nan/nan.h:
|
|
144
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/uv.h:
|
|
145
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/uv/errno.h:
|
|
146
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/uv/version.h:
|
|
147
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/uv/unix.h:
|
|
148
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/uv/threadpool.h:
|
|
149
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/uv/darwin.h:
|
|
150
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/node_buffer.h:
|
|
151
|
+
/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/node_object_wrap.h:
|
|
152
|
+
../../nan/nan_callbacks.h:
|
|
153
|
+
../../nan/nan_callbacks_12_inl.h:
|
|
154
|
+
../../nan/nan_maybe_43_inl.h:
|
|
155
|
+
../../nan/nan_converters.h:
|
|
156
|
+
../../nan/nan_converters_43_inl.h:
|
|
157
|
+
../../nan/nan_new.h:
|
|
158
|
+
../../nan/nan_implementation_12_inl.h:
|
|
159
|
+
../../nan/nan_persistent_12_inl.h:
|
|
160
|
+
../../nan/nan_weak.h:
|
|
161
|
+
../../nan/nan_object_wrap.h:
|
|
162
|
+
../../nan/nan_private.h:
|
|
163
|
+
../../nan/nan_typedarray_contents.h:
|
|
164
|
+
../../nan/nan_json.h:
|
|
165
|
+
../../nan/nan_scriptorigin.h:
|
|
Binary file
|
|
Binary file
|