Files
meteor/tools/tests/apps/modules/packages/modules-test-package/client.js
2016-02-29 19:45:52 -05:00

21 lines
550 B
JavaScript

import assert from "assert";
import {checkPackageVars} from "./common";
// This verifies that Meteor packages can import native Node modules on
// the client that are not implemented by meteor-node-stubs, in case the
// app has a custom stub installed that takes precedence.
import {notEmpty} from "repl";
assert.strictEqual(notEmpty, true);
export const where = "client";
export * from "./common";
var style = require("./css/imported.css");
if (! style) {
require("./css/not-imported.css");
}
ClientPackageVar = "client";
checkPackageVars();