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>
19 lines
1.1 KiB
JavaScript
19 lines
1.1 KiB
JavaScript
// This file should be imported before any others. It sets up the environment
|
|
// for later imports to work properly.
|
|
import './node-environment-baseline';
|
|
// Import as early as possible so that unexpected errors in other extensions are properly formatted.
|
|
// Has to come after baseline since error-inspect requires AsyncLocalStorage that baseline provides.
|
|
import './node-environment-extensions/error-inspect';
|
|
// console file needs to go first because we want to be in a dimmed scope before
|
|
// deciding if we ought to write the log to file.
|
|
import './node-environment-extensions/console-file';
|
|
import './node-environment-extensions/console-exit';
|
|
import './node-environment-extensions/console-dim.external';
|
|
import './node-environment-extensions/unhandled-rejection.external';
|
|
import './node-environment-extensions/random';
|
|
import './node-environment-extensions/date';
|
|
import './node-environment-extensions/web-crypto';
|
|
import './node-environment-extensions/node-crypto';
|
|
import './node-environment-extensions/fast-set-immediate.external';
|
|
|
|
//# sourceMappingURL=node-environment.js.map
|