mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
* Added BrowserPolicy export to help with ES2015 import support. * Replaced api.export use with api.mainModule, to help reduce extra globals.
12 lines
326 B
JavaScript
12 lines
326 B
JavaScript
Package.describe({
|
|
summary: "Restrict which websites can frame your app",
|
|
version: "1.1.0"
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
api.use("modules");
|
|
api.use(["underscore", "browser-policy-common"], "server");
|
|
api.imply(["browser-policy-common"], "server");
|
|
api.mainModule("browser-policy-framing.js", "server");
|
|
});
|