summaryrefslogtreecommitdiffstats
path: root/packages
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2019-04-12 18:55:24 +0000
committerLauri Ojansivu <x@xet7.org>2019-04-12 18:55:24 +0000
commitcc21da6266723d3a69960655c89df6f236656e32 (patch)
tree75819a7f2828e07939a815bd2e24fa603b747990 /packages
parentab05af79ec2f65f373e31e81cc6b753e96193121 (diff)
downloadwekan-cc21da6266723d3a69960655c89df6f236656e32.tar.gz
wekan-cc21da6266723d3a69960655c89df6f236656e32.tar.bz2
wekan-cc21da6266723d3a69960655c89df6f236656e32.zip
Fix quotes.
Diffstat (limited to 'packages')
-rw-r--r--packages/meteorx/package.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/packages/meteorx/package.js b/packages/meteorx/package.js
index 97c6bde9..0bdad1ca 100644
--- a/packages/meteorx/package.js
+++ b/packages/meteorx/package.js
@@ -1,13 +1,13 @@
Package.describe({
- name: "meteorhacks:meteorx",
- summary: "Proxy for getting another meteorx fork",
- version: "1.4.1"
+ name: 'meteorhacks:meteorx',
+ summary: 'Proxy for getting another meteorx fork',
+ version: '1.4.1'
});
Package.onUse((api) => {
- api.export("MeteorX");
+ api.export('MeteorX');
api.use([
- "lamhieu:meteorx",
+ 'lamhieu:meteorx',
]);
});