Skip to content

Commit 523ec32

Browse files
committed
[utils] move root to utils
1 parent 02a440d commit 523ec32

File tree

5 files changed

+14
-88
lines changed

5 files changed

+14
-88
lines changed

.eslintrc.json

-1
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,6 @@
195195
"plugins/pluginManager.js",
196196
"plugins/*/api/**/*.js",
197197
"plugins/*/frontend/*.js",
198-
"local-modules/**/*.js",
199198
"plugins/*/extend/*.js"
200199
],
201200
"env": {

api/utils/countly-root/index.js

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
var path = require('path');
2+
3+
/**
4+
* Resolves the given relative path to absolute from Countly repository root path.
5+
* @param {string} relativePath The path relative to Countly root directory.
6+
* @returns {string} The absolute path resolved for the given relative path.
7+
*/
8+
function fromCountlyRoot(relativePath) {
9+
return path.join(__dirname, '../../../', relativePath);
10+
}
11+
12+
module.exports = fromCountlyRoot;

local-modules/from-countly-root/package.json api/utils/countly-root/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "from-countly-root",
2+
"name": "countly-root",
33
"version": "0.1.0",
44
"description": "Resolves a relative path from Countly root directory to an absolute path.",
55
"main": "index.js",

local-modules/from-countly-root/index.js

-85
This file was deleted.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
"connect-flash": "0.1.1",
3737
"connect-mongoskin": "github:ar2rsawseen/connect-mongoskin",
3838
"cookie-parser": "1.4.4",
39+
"countly-root": "file:api/utils/countly-root",
3940
"countly-sdk-nodejs": "19.8.x",
4041
"countly-sdk-web": "19.8.x",
4142
"csurf": "1.10.0",
@@ -47,7 +48,6 @@
4748
"express-session": "1.16.2",
4849
"external-ip": "2.1.1",
4950
"formidable": "1.2.1",
50-
"from-countly-root": "file:./local-modules/from-countly-root",
5151
"fs.extra": "^1.3.2",
5252
"geoip-lite": "1.3.7",
5353
"grunt": "1.0.4",

0 commit comments

Comments
 (0)