Skip to content
This repository was archived by the owner on May 25, 2019. It is now read-only.

Commit 104576a

Browse files
committed
atmosphere package
1 parent 892b096 commit 104576a

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

package.js

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
var packageName = 'hhravn:angular-ui-codemirror';
2+
var where = 'client'; // where to install: 'client' or 'server'. For both, pass nothing.
3+
var version = '0.3.0';
4+
var summary = 'This directive allows you to add CodeMirror to your textarea elements.';
5+
var gitLink = 'https://github.com/hhravn/ui-codemirror';
6+
var documentationFile = 'README.md';
7+
8+
// Meta-data
9+
Package.describe({
10+
name: packageName,
11+
version: version,
12+
summary: summary,
13+
git: gitLink,
14+
documentation: documentationFile
15+
});
16+
17+
Package.onUse(function(api) {
18+
api.versionsFrom(['[email protected]', '[email protected]']); // Meteor versions
19+
api.addFiles('./src/ui-codemirror.js', where); // Files in use
20+
});

0 commit comments

Comments
 (0)