The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/apps/meteor/packages/meteor-inject-initial/package.js

16 lines
481 B

Package.describe({
summary: 'Allow injection of arbitrary data to initial Meteor HTML page',
version: '1.0.5',
git: 'https://github.com/meteorhacks/meteor-inject-initial.git',
name: 'meteorhacks:inject-initial',
});
Package.onUse(function (api) {
api.use(['routepolicy', 'webapp'], 'server');
api.use(['ejson', 'underscore'], ['server']);
api.addFiles('lib/inject-server.js', 'server');
api.addFiles('lib/inject-core.js', 'server');
api.export('Inject', 'server');
});