mirror of
https://github.com/wekan/wekan.git
synced 2025-09-22 01:50:48 +02:00
17 lines
443 B
JavaScript
17 lines
443 B
JavaScript
Package.describe({
|
|
name: 'wekan-markdown',
|
|
summary: 'GitHub flavored markdown parser for Meteor based on markdown-it',
|
|
version: '1.0.9',
|
|
git: 'https://github.com/wekan/markdown.git',
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
api.use('templating');
|
|
api.use("ecmascript", ['server', 'client']);
|
|
|
|
api.export('Markdown', ['server', 'client']);
|
|
|
|
api.use('ui', 'client', {weak: true});
|
|
|
|
api.addFiles('src/template-integration.js', 'client');
|
|
});
|