mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
18 lines
288 B
JavaScript
18 lines
288 B
JavaScript
import {
|
|
checkPackageVars,
|
|
checkWhere,
|
|
} 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();
|