added fonts
This commit is contained in:
+79
@@ -0,0 +1,79 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
Object.defineProperty(exports, "turbopackBuild", {
|
||||
enumerable: true,
|
||||
get: function() {
|
||||
return turbopackBuild;
|
||||
}
|
||||
});
|
||||
const _path = /*#__PURE__*/ _interop_require_default(require("path"));
|
||||
const _utils = require("../../server/lib/utils");
|
||||
const _worker = require("../../lib/worker");
|
||||
const _buildcontext = require("../build-context");
|
||||
function _interop_require_default(obj) {
|
||||
return obj && obj.__esModule ? obj : {
|
||||
default: obj
|
||||
};
|
||||
}
|
||||
async function turbopackBuildWithWorker() {
|
||||
const nodeOptions = (0, _utils.getParsedNodeOptionsWithoutInspect)();
|
||||
try {
|
||||
const worker = new _worker.Worker(_path.default.join(__dirname, 'impl.js'), {
|
||||
exposedMethods: [
|
||||
'workerMain',
|
||||
'waitForShutdown'
|
||||
],
|
||||
numWorkers: 1,
|
||||
maxRetries: 0,
|
||||
forkOptions: {
|
||||
env: {
|
||||
...process.env,
|
||||
NEXT_PRIVATE_BUILD_WORKER: '1',
|
||||
NODE_OPTIONS: (0, _utils.formatNodeOptions)(nodeOptions)
|
||||
}
|
||||
}
|
||||
});
|
||||
const { nextBuildSpan, ...prunedBuildContext } = _buildcontext.NextBuildContext;
|
||||
const result = await worker.workerMain({
|
||||
buildContext: prunedBuildContext
|
||||
});
|
||||
// destroy worker when Turbopack has shutdown so it's not sticking around using memory
|
||||
// We need to wait for shutdown to make sure persistent cache is flushed
|
||||
result.shutdownPromise = worker.waitForShutdown().then(()=>{
|
||||
worker.end();
|
||||
});
|
||||
return result;
|
||||
} catch (err) {
|
||||
// When the error is a serialized `Error` object we need to recreate the `Error` instance
|
||||
// in order to keep the consistent error reporting behavior.
|
||||
if (err.type === 'Error') {
|
||||
const error = Object.defineProperty(new Error(err.message), "__NEXT_ERROR_CODE", {
|
||||
value: "E394",
|
||||
enumerable: false,
|
||||
configurable: true
|
||||
});
|
||||
if (err.name) {
|
||||
error.name = err.name;
|
||||
}
|
||||
if (err.cause) {
|
||||
error.cause = err.cause;
|
||||
}
|
||||
error.message = err.message;
|
||||
error.stack = err.stack;
|
||||
throw error;
|
||||
}
|
||||
throw err;
|
||||
}
|
||||
}
|
||||
function turbopackBuild(withWorker) {
|
||||
if (withWorker) {
|
||||
return turbopackBuildWithWorker();
|
||||
} else {
|
||||
const build = require('./impl').turbopackBuild;
|
||||
return build();
|
||||
}
|
||||
}
|
||||
|
||||
//# sourceMappingURL=index.js.map
|
||||
Reference in New Issue
Block a user