The Open Source kanban (built with Meteor). Keep variable/table/field names camelCase. For translations, only add Pull Request changes to wekan/i18n/en.i18n.json , other translations are done at https://transifex.com/wekan/wekan only.
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.
 
 
 
 
 
 
wekan/packages/wekan-cfs-http-publish/package.js

34 lines
985 B

Package.describe({
git: 'https://github.com/zcfs/Meteor-http-publish.git',
name: 'wekan-cfs-http-publish',
version: '0.0.13',
summary: 'Adds HTTP.publish and HTTP.unpublish RESTful'
});
Package.onUse(function(api) {
api.versionsFrom('1.0');
api.use(['webapp', 'underscore', 'ejson', 'random'], 'server');
api.use('wekan-cfs-http-methods@0.0.27');
api.imply && api.imply('wekan-cfs-http-methods');
api.export && api.export('_publishHTTP', { testOnly: true });
api.addFiles('http.publish.client.api.js', 'client');
api.addFiles('http.publish.server.api.js', 'server');
});
Package.onTest(function (api) {
api.use('wekan-cfs-http-publish', ['client', 'server']);
api.use('test-helpers', ['client', 'server']);
api.use('http', 'client');
api.use(['tinytest', 'underscore', 'ejson', 'ordered-dict',
'random', 'deps']);
api.addFiles('http.publish.tests.server.js', 'server');
api.addFiles('http.publish.tests.client.js', 'client');
});