Files
meteor/tools/tests/apps/modules/packages/modules-test-package/client.js
Ben Newman 20da99c219 Do not treat client and server directories specially in packages. (#10414)
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.
2019-01-11 16:52:23 -05:00

19 lines
317 B
JavaScript

import assert from "assert";
import {
checkWhere,
checkPackageVars,
} from "./common";
export const where = "client";
export * from "./common";
checkWhere(where);
var style = require("./css/imported.css");
if (! style) {
require("./css/not-imported.css");
}
ClientPackageVar = "client";
checkPackageVars();