@sassoftware/sas-score-mcp-serverjs 0.2.1 → 0.2.3-0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cli.js +4 -2
- package/devTest/http/.env +1 -1
- package/package.json +2 -2
package/cli.js
CHANGED
|
@@ -33,8 +33,10 @@ if (process.env.ENVFILE === 'FALSE') {
|
|
|
33
33
|
//use this when using remote mcp server and no .env file is desired
|
|
34
34
|
console.error('[Note]: Skipping .env file as ENVFILE is set to FALSE...');
|
|
35
35
|
} else {
|
|
36
|
-
|
|
37
|
-
|
|
36
|
+
console.error('Working Directory', process.cwd());
|
|
37
|
+
let envf = process.cwd() + '\\.env';
|
|
38
|
+
//__dirname + '\\.env';
|
|
39
|
+
console.error('Env file:', envf);
|
|
38
40
|
if (fs.existsSync(envf)) {
|
|
39
41
|
console.error(`Loading environment variables rom ${envf}...`);
|
|
40
42
|
let e = iconfig(envf); // avoid dotenv since it writes to console.log
|
package/devTest/http/.env
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sassoftware/sas-score-mcp-serverjs",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3-0",
|
|
4
4
|
"description": "A mcp server for SAS Viya",
|
|
5
5
|
"author": "Deva Kumar <deva.kumar@sas.com>",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"deploy": "bash ./deploy.sh",
|
|
19
19
|
"push2acr": "bash ./push2acr.sh",
|
|
20
20
|
"bump": "npm version prerelease",
|
|
21
|
-
"pub": "npm publish --tag
|
|
21
|
+
"pub": "npm publish --tag dev --access public"
|
|
22
22
|
},
|
|
23
23
|
"repository": "https://github.com/sassoftware/sas-score-mcp-serverjs",
|
|
24
24
|
"keywords": [
|