Skip to content

Commit d6a96d6

Browse files
committed
v1.0.4
- Compatibility with [email protected] - Dependencies update
1 parent e539a37 commit d6a96d6

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.versions

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ [email protected]
2121
2222
2323
24-
local-test:ostrio:[email protected].3
24+
local-test:ostrio:[email protected].4
2525
2626
2727
@@ -30,7 +30,7 @@ [email protected]
3030
3131
3232
33-
33+
3434
3535
3636

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2015, Dmitry A. (Veliov Group, LLC)
1+
Copyright (c) 2016, dr.dimitru (Dmitriy A.; Veliov Group, LLC)
22
All rights reserved.
33

44
Redistribution and use in source and binary forms,

meteor-root.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
var path = Npm.require('path');
1+
var path = Npm.require('path');
22
Meteor.rootPath = path.resolve('.');
33
Meteor.absolutePath = Meteor.rootPath.split(path.sep + '.meteor')[0];

package.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
Package.describe({
22
name: 'ostrio:meteor-root',
3-
version: '1.0.3',
3+
version: '1.0.4',
44
summary: '[Server] Get current path on your server, where is Meteor application is running',
55
git: 'https://github.com/VeliovGroup/Meteor-root',
66
documentation: 'README.md'
77
});
88

99
Package.onUse(function(api) {
10-
api.versionsFrom('1.1');
10+
api.versionsFrom('1.4');
1111
api.addFiles('meteor-root.js', 'server');
1212
});
1313

1414
Package.onTest(function(api) {
15-
api.use(['ostrio:meteor-root@1.0.2', 'tinytest'], 'server');
15+
api.use(['ostrio:meteor-root', 'tinytest'], 'server');
1616
api.addFiles('meteor-root-test.js', 'server');
1717
});

0 commit comments

Comments
 (0)