prettier/scripts/build/build.js

221 lines
5.5 KiB
JavaScript
Raw Normal View History

"use strict";
const path = require("path");
2018-05-24 21:30:45 +03:00
const { rollup } = require("rollup");
const webpack = require("webpack");
const resolve = require("rollup-plugin-node-resolve");
const commonjs = require("rollup-plugin-commonjs");
const nodeGlobals = require("rollup-plugin-node-globals");
const json = require("rollup-plugin-json");
const replace = require("rollup-plugin-replace");
const uglify = require("rollup-plugin-uglify");
const babel = require("rollup-plugin-babel");
const nativeShims = require("./rollup-plugins/native-shims");
const executable = require("./rollup-plugins/executable");
const Bundles = require("./bundles");
const util = require("./util");
const EXTERNALS = [
"assert",
"buffer",
"constants",
"crypto",
"events",
"fs",
"module",
"os",
"path",
"stream",
"url",
"util",
"readline",
// See comment in jest.config.js
"graceful-fs"
];
function getBabelConfig(bundle) {
const config = {
babelrc: false,
plugins: []
};
if (bundle.type === "core") {
config.plugins.push(
require.resolve("./babel-plugins/transform-custom-require")
);
}
const targets = { node: 4 };
if (bundle.target === "universal") {
// From https://jamie.build/last-2-versions
targets.browsers = [">0.25%", "not ie 11", "not op_mini all"];
2018-05-24 21:30:45 +03:00
}
config.presets = [
[require.resolve("@babel/preset-env"), { targets, modules: false }]
];
2018-05-24 21:30:45 +03:00
return config;
}
2018-05-24 21:30:45 +03:00
function getRollupConfig(bundle) {
const relative = fp => `./${path.basename(fp).replace(/\.js$/, "")}`;
const paths = (bundle.external || []).reduce(
(paths, filepath) =>
Object.assign(paths, { [filepath]: relative(filepath) }),
{ "graceful-fs": "fs" }
);
2018-05-24 21:30:45 +03:00
const config = {
entry: bundle.input,
paths,
onwarn(warning) {
if (
// We use `eval("require")` to enable dynamic requires in the
// custom parser API
warning.code === "EVAL" ||
(warning.code === "CIRCULAR_DEPENDENCY" &&
warning.importer.startsWith("node_modules"))
) {
return;
}
// web bundle can't have external requires
if (
warning.code === "UNRESOLVED_IMPORT" &&
bundle.target === "universal"
) {
throw new Error(
`Unresolved dependency in universal bundle: ${warning.source}`
);
}
console.warn(warning);
}
};
const replaceStrings = {
"proces.env.NODE_ENV": JSON.stringify("production")
};
if (bundle.target === "universal") {
// We can't reference `process` in UMD bundles and this is
// an undocumented "feature"
replaceStrings["process.env.PRETTIER_DEBUG"] = "global.PRETTIER_DEBUG";
}
Object.assign(replaceStrings, bundle.replace);
const babelConfig = getBabelConfig(bundle);
config.plugins = [
replace(replaceStrings),
executable(),
json(),
bundle.target === "universal" &&
nativeShims(path.resolve(__dirname, "shims")),
resolve({
extensions: [".js", ".json"],
preferBuiltins: bundle.target === "node"
}),
commonjs(bundle.commonjs || {}),
bundle.target === "universal" && nodeGlobals(),
babelConfig && babel(babelConfig),
bundle.type === "plugin" && uglify()
].filter(Boolean);
if (bundle.target === "node") {
config.external = EXTERNALS.concat(bundle.external);
}
2018-05-24 21:30:45 +03:00
return config;
}
2018-05-24 21:30:45 +03:00
function getRollupOutputOptions(bundle) {
const options = {
dest: `dist/${Bundles.getFileOutput(bundle)}`,
useStrict: typeof bundle.strict === "undefined" ? true : bundle.strict
};
if (bundle.target === "node") {
options.format = "cjs";
} else if (bundle.target === "universal") {
options.format = "umd";
options.moduleName =
bundle.type === "plugin" ? `prettierPlugins.${bundle.name}` : bundle.name;
}
return options;
}
2018-05-24 21:30:45 +03:00
function getWebpackConfig(bundle) {
if (bundle.target === "node") {
throw new Error("Unsupported webpack bundle for node");
}
2018-05-24 21:30:45 +03:00
const root = path.resolve(__dirname, "..", "..");
return {
entry: path.resolve(root, bundle.input),
output: {
path: path.resolve(root, "dist"),
filename: Bundles.getFileOutput(bundle),
library:
bundle.type === "plugin"
? ["prettierPlugins", bundle.name]
: bundle.name,
libraryTarget: "umd"
}
};
}
2018-05-24 21:30:45 +03:00
function asyncWebpack(config) {
return new Promise((resolve, reject) => {
webpack(config, err => {
if (err) {
reject(err);
} else {
resolve();
}
});
});
}
2018-05-24 21:30:45 +03:00
async function createBundle(bundle) {
const output = Bundles.getFileOutput(bundle);
console.log(`BUILDING ${output}`);
if (bundle.bundler === "webpack") {
await asyncWebpack(getWebpackConfig(bundle));
} else {
try {
const result = await rollup(getRollupConfig(bundle));
await result.write(getRollupOutputOptions(bundle));
} catch (error) {
console.log(error);
throw error;
}
}
}
2018-05-24 21:30:45 +03:00
async function createPackageJson() {
const pkg = await util.readJson("package.json");
pkg.bin = "./bin-prettier.js";
pkg.engines.node = ">=4";
2018-05-24 21:30:45 +03:00
delete pkg.dependencies;
delete pkg.devDependencies;
pkg.scripts = {
prepublishOnly:
"node -e \"assert.equal(require('.').version, require('..').version)\""
2018-05-24 21:30:45 +03:00
};
await util.writeJson("dist/package.json", pkg);
}
2018-05-24 21:30:45 +03:00
async function run() {
await util.asyncRimRaf("dist");
for (const bundle of Bundles.bundles) {
await createBundle(bundle, "node");
}
2018-05-24 21:30:45 +03:00
await createPackageJson();
await util.copyFile("./README.md", "./dist/README.md");
}
2018-05-24 21:30:45 +03:00
run();