-
-
Notifications
You must be signed in to change notification settings - Fork 10.3k
/
rollup.utils.js
151 lines (135 loc) · 4.42 KB
/
rollup.utils.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
const path = require("path");
const fse = require("fs-extra");
const { version } = require("./packages/react-router/package.json");
const majorVersion = version.split(".").shift();
const PRETTY = !!process.env.PRETTY;
/**
* Determine the relevant directories for a rollup build, relative to the
* current working directory and taking LOCAL_BUILD_DIRECTORY into account
*
* ROOT_DIR Root directory for the react-router repo
* SOURCE_DIR Source package directory we will read input files from
* OUTPUT_DIR Destination directory to write rollup output to
*
* @param {string} packageName npm package name (i.e., @remix-run/router)
* @param {string} [folderName] folder name (i.e., router). Defaults to package name
*/
function getBuildDirectories(packageName, folderName) {
let ROOT_DIR = __dirname;
let SOURCE_DIR = folderName
? path.join(__dirname, "packages", folderName)
: path.join(__dirname, "packages", ...packageName.split("/"));
// Update if we're not running from root
if (process.cwd() !== __dirname) {
ROOT_DIR = path.dirname(path.dirname(process.cwd()));
SOURCE_DIR = process.cwd();
}
let OUTPUT_DIR = path.join(SOURCE_DIR, "dist");
if (process.env.LOCAL_BUILD_DIRECTORY) {
try {
let nodeModulesDir = path.resolve(
process.env.LOCAL_BUILD_DIRECTORY,
"node_modules"
);
fse.readdirSync(nodeModulesDir);
OUTPUT_DIR = path.join(nodeModulesDir, ...packageName.split("/"), "dist");
} catch (e) {
console.error(
"Oops! You pointed LOCAL_BUILD_DIRECTORY to a directory that " +
"does not have a node_modules/ folder. Please `npm install` in that " +
"directory and try again."
);
process.exit(1);
}
}
return { ROOT_DIR, SOURCE_DIR, OUTPUT_DIR };
}
function createBanner(packageName, version) {
return `/**
* ${packageName} v${version}
*
* Copyright (c) Remix Software Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE.md file in the root directory of this source tree.
*
* @license MIT
*/`;
}
// Babel plugin to replace `const REACT_ROUTER_VERSION = "0.0.0";` with the
// current version at build time, so we can set it on `window.__reactRouterVersion`
// for consumption by the Core Web Vitals Technology Report
function babelPluginReplaceVersionPlaceholder() {
return function (babel) {
var t = babel.types;
const KIND = "const";
const NAME = "REACT_ROUTER_VERSION";
const PLACEHOLDER = "0";
return {
visitor: {
VariableDeclaration: {
enter: function (path) {
// Only operate on top-level variables
if (!path.parentPath.isProgram()) {
return;
}
// Skip for experimental releases
if (version.startsWith("0.0.0")) {
return;
}
let { kind, declarations } = path.node;
if (
kind === KIND &&
declarations.length === 1 &&
declarations[0].id.name === NAME &&
declarations[0].init?.value === PLACEHOLDER
) {
path.replaceWith(
t.variableDeclaration(KIND, [
t.variableDeclarator(
t.identifier(NAME),
t.stringLiteral(majorVersion)
),
])
);
}
},
},
},
};
};
}
// Post-build plugin to validate that the version placeholder was replaced
function validateReplacedVersion() {
return {
name: "validate-replaced-version",
writeBundle(_, bundle) {
Object.entries(bundle).forEach(([filename, contents]) => {
if (!filename.endsWith(".js") || filename === "server.js") {
return;
}
let requiredStrs = filename.endsWith(".min.js")
? [`{window.__reactRouterVersion="${majorVersion}"}`]
: [
`const REACT_ROUTER_VERSION = "${majorVersion}";`,
`window.__reactRouterVersion = REACT_ROUTER_VERSION;`,
];
requiredStrs.forEach((str) => {
if (!contents.code.includes(str)) {
throw new Error(
`Expected ${filename} to include \`${str}\` but it did not`
);
}
});
});
},
};
}
// rollup.config.js
module.exports = {
getBuildDirectories,
createBanner,
babelPluginReplaceVersionPlaceholder,
validateReplacedVersion,
PRETTY,
};