Some checks failed
CI / go (push) Waiting to run
CI / docker (push) Waiting to run
CI / lint-go (push) Waiting to run
CI / lint-docs (push) Waiting to run
CI / check-paperclip (push) Waiting to run
Deploy static site / Deploy to GitHub Pages (push) Has been cancelled
Deploy static site / Deploy via Docker to hatch.surf (push) Has been cancelled
Resolved conflicts by taking GitHub versions for: - .dockerignore, .gitignore, Dockerfile, README.md, docker-compose.yml Kept deploy.sh updated to: - Pull from GitHub (primary source) - Push to Gitea (push-mirror) - Build from site/ directory (GitHub structure) Co-Authored-By: Paperclip <noreply@paperclip.ing>
44 lines
1.3 KiB
JavaScript
44 lines
1.3 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
Object.defineProperty(exports, "default", {
|
|
enumerable: true,
|
|
get: function() {
|
|
return uploadTrace;
|
|
}
|
|
});
|
|
const _shared = require("./shared");
|
|
const _storage = require("../telemetry/storage");
|
|
function uploadTrace({ traceUploadUrl, mode, projectDir, distDir, isTurboSession, sync }) {
|
|
const { NEXT_TRACE_UPLOAD_DEBUG } = process.env;
|
|
const telemetry = new _storage.Telemetry({
|
|
distDir
|
|
});
|
|
// Note: cross-spawn is not used here as it causes
|
|
// a new command window to appear when we don't want it to
|
|
const child_process = require('child_process');
|
|
// we use spawnSync when debugging to ensure logs are piped
|
|
// correctly to stdout/stderr
|
|
const spawn = NEXT_TRACE_UPLOAD_DEBUG || sync ? child_process.spawnSync : child_process.spawn;
|
|
spawn(process.execPath, [
|
|
require.resolve('./trace-uploader'),
|
|
traceUploadUrl,
|
|
mode,
|
|
projectDir,
|
|
distDir,
|
|
String(isTurboSession),
|
|
_shared.traceId,
|
|
telemetry.anonymousId,
|
|
telemetry.sessionId
|
|
], {
|
|
detached: !NEXT_TRACE_UPLOAD_DEBUG,
|
|
windowsHide: true,
|
|
shell: false,
|
|
...NEXT_TRACE_UPLOAD_DEBUG ? {
|
|
stdio: 'inherit'
|
|
} : {}
|
|
});
|
|
}
|
|
|
|
//# sourceMappingURL=upload-trace.js.map
|