mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Fixes #10393. Bumping compiler.BUILT_BY and LINKER_CACHE_SALT because PR #10414 changes the behavior of the build system in a subtle way that does not automatically trigger recompilation.
13 lines
286 B
JavaScript
13 lines
286 B
JavaScript
import assert from "assert";
|
|
|
|
import * as common from "./common";
|
|
assert.strictEqual(common.ModulesTestPackage, "loaded");
|
|
|
|
export { ModulesTestPackage } from "./common";
|
|
|
|
export const where = "server";
|
|
common.checkWhere(where);
|
|
|
|
ServerPackageVar = "server";
|
|
common.checkPackageVars();
|