Skip to content

Commit

Permalink
Fix dev-script
Browse files Browse the repository at this point in the history
  • Loading branch information
jayhuynh committed Jan 10, 2024
1 parent 600eb92 commit 582ee22
Showing 1 changed file with 7 additions and 13 deletions.
20 changes: 7 additions & 13 deletions packages/annotated/dev-scripts/scripts/build.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,10 @@
/*
* Copyright (c) Meta Platforms and its affiliates.
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

import chalk from "chalk";
import fs from "fs-extra";
import webpack from "webpack";
import webpackConfigure from "../src/webpackConfigure";
import formatWebpackMessages from "../utils/formatWebpackMessages";
import printBuildError from "../utils/printBuildError";
import paths from "../src/paths";
const chalk = require("chalk");
const fs = require("fs-extra");
const webpack = require("webpack");
const webpackConfigure = require("../src/webpackConfigure");
const formatWebpackMessages = require("../utils/formatWebpackMessages");
const printBuildError = require("../utils/printBuildError");
const paths = require("../src/paths");

console.log(chalk.yellow("Starting build...\n"));

Expand Down

0 comments on commit 582ee22

Please sign in to comment.