14 lines
275 B
JavaScript
14 lines
275 B
JavaScript
if (!process.env.BUILD_TARGET) {
|
|
process.env.BUILD_TARGET = "LOCAL";
|
|
}
|
|
|
|
if (!process.env.BUILD_LABEL) {
|
|
process.env.BUILD_LABEL = "development";
|
|
}
|
|
|
|
import context from './context.mjs';
|
|
|
|
await context.rebuild();
|
|
await context.dispose();
|
|
|
|
import "./create-build-file.mjs";
|