rollup 4.63.3 → 4.63.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bin/rollup +3 -3
- package/dist/es/getLogFilter.js +2 -2
- package/dist/es/parseAst.js +2 -2
- package/dist/es/rollup.js +2 -2
- package/dist/es/shared/node-entry.js +351 -81
- package/dist/es/shared/parseAst.js +2 -2
- package/dist/es/shared/watch.js +2 -2
- package/dist/getLogFilter.js +2 -2
- package/dist/loadConfigFile.js +2 -2
- package/dist/native.js +10 -1
- package/dist/parseAst.js +2 -2
- package/dist/rollup.js +2 -2
- package/dist/shared/fsevents-importer.js +2 -2
- package/dist/shared/index.js +2 -2
- package/dist/shared/loadConfigFile.js +2 -2
- package/dist/shared/parseAst.js +2 -2
- package/dist/shared/rollup.js +351 -81
- package/dist/shared/watch-cli.js +2 -2
- package/dist/shared/watch.js +2 -2
- package/package.json +32 -30
package/dist/es/shared/watch.js
CHANGED
package/dist/getLogFilter.js
CHANGED
package/dist/loadConfigFile.js
CHANGED
package/dist/native.js
CHANGED
|
@@ -127,10 +127,12 @@ const requireWithFriendlyError = id => {
|
|
|
127
127
|
}
|
|
128
128
|
};
|
|
129
129
|
|
|
130
|
-
const
|
|
130
|
+
const nativeModule = requireWithFriendlyError(
|
|
131
131
|
existsSync(path.join(__dirname, localName)) ? localName : `@rollup/rollup-${packageBase}`
|
|
132
132
|
);
|
|
133
133
|
|
|
134
|
+
const { parse, parseAsync, xxhashBase64Url, xxhashBase36, xxhashBase16 } = nativeModule;
|
|
135
|
+
|
|
134
136
|
function getPackageBase() {
|
|
135
137
|
const imported = bindingsByPlatformAndArch[platform]?.[arch];
|
|
136
138
|
if (!imported) {
|
|
@@ -165,3 +167,10 @@ module.exports.parseAsync = parseAsync;
|
|
|
165
167
|
module.exports.xxhashBase64Url = xxhashBase64Url;
|
|
166
168
|
module.exports.xxhashBase36 = xxhashBase36;
|
|
167
169
|
module.exports.xxhashBase16 = xxhashBase16;
|
|
170
|
+
|
|
171
|
+
// Only present in coverage builds (cfg(coverage) — set by cargo-llvm-cov show-env).
|
|
172
|
+
// Used by scripts/coverage-flush.cjs to manually flush LLVM profile data on Linux,
|
|
173
|
+
// where the atexit handler does not fire for dlopen'd shared libraries.
|
|
174
|
+
if (typeof nativeModule.flushLlvmCoverage === 'function') {
|
|
175
|
+
module.exports.flushLlvmCoverage = nativeModule.flushLlvmCoverage;
|
|
176
|
+
}
|
package/dist/parseAst.js
CHANGED
package/dist/rollup.js
CHANGED
package/dist/shared/index.js
CHANGED
package/dist/shared/parseAst.js
CHANGED