@trenchwork/erosolar 1.1.40 → 1.1.41
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/LICENSE +21 -21
- package/README.md +236 -225
- package/agents/erosolar-code.rules.json +199 -199
- package/dist/bin/deepseek.js +18 -198
- package/dist/bin/deepseek.js.map +1 -1
- package/dist/bin/erosolar.js +0 -0
- package/dist/capabilities/enhancedGitCapability.js +63 -63
- package/dist/config.js +12 -12
- package/dist/contracts/agent-profiles.schema.json +5 -23
- package/dist/contracts/agent-schemas.json +31 -343
- package/dist/contracts/models.schema.json +9 -9
- package/dist/contracts/module-schema.json +367 -367
- package/dist/contracts/schemas/agent-profile.schema.json +157 -157
- package/dist/contracts/schemas/agent-rules.schema.json +238 -238
- package/dist/contracts/schemas/agent-schemas.schema.json +528 -528
- package/dist/contracts/schemas/agent.schema.json +90 -90
- package/dist/contracts/schemas/tool-selection.schema.json +174 -174
- package/dist/contracts/tools.schema.json +42 -42
- package/dist/contracts/unified-schema.json +8 -628
- package/dist/core/constants.js +7 -7
- package/dist/core/contextManager.js +16 -16
- package/dist/core/modelDiscovery.d.ts +0 -3
- package/dist/core/modelDiscovery.d.ts.map +1 -1
- package/dist/core/modelDiscovery.js +3 -355
- package/dist/core/modelDiscovery.js.map +1 -1
- package/dist/core/quotaErrors.d.ts +42 -0
- package/dist/core/quotaErrors.d.ts.map +1 -0
- package/dist/core/quotaErrors.js +88 -0
- package/dist/core/quotaErrors.js.map +1 -0
- package/dist/core/secretStore.d.ts.map +1 -1
- package/dist/core/secretStore.js +1 -14
- package/dist/core/secretStore.js.map +1 -1
- package/dist/core/taskCompletionDetector.js +17 -17
- package/dist/headless/interactiveShell.d.ts.map +1 -1
- package/dist/headless/interactiveShell.js +7 -58
- package/dist/headless/interactiveShell.js.map +1 -1
- package/dist/leanAgent.js +38 -38
- package/dist/plugins/providers/deepseek/index.d.ts +1 -0
- package/dist/plugins/providers/deepseek/index.d.ts.map +1 -1
- package/dist/plugins/providers/deepseek/index.js +65 -4
- package/dist/plugins/providers/deepseek/index.js.map +1 -1
- package/dist/plugins/providers/index.d.ts.map +1 -1
- package/dist/plugins/providers/index.js +0 -7
- package/dist/plugins/providers/index.js.map +1 -1
- package/dist/providers/openaiChatCompletionsProvider.js +7 -30
- package/dist/providers/openaiChatCompletionsProvider.js.map +1 -1
- package/dist/providers/resilientProvider.d.ts.map +1 -1
- package/dist/providers/resilientProvider.js +0 -31
- package/dist/providers/resilientProvider.js.map +1 -1
- package/dist/runtime/agentSession.js +4 -4
- package/dist/shell/vimMode.js +29 -29
- package/dist/tools/hitlTools.js +18 -18
- package/dist/tools/webTools.d.ts.map +1 -1
- package/dist/tools/webTools.js +10 -0
- package/dist/tools/webTools.js.map +1 -1
- package/package.json +116 -123
- package/scripts/postinstall.cjs +57 -58
- package/dist/bin/cliMode.d.ts +0 -8
- package/dist/bin/cliMode.d.ts.map +0 -1
- package/dist/bin/cliMode.js +0 -20
- package/dist/bin/cliMode.js.map +0 -1
- package/dist/bin/selfTest.d.ts +0 -14
- package/dist/bin/selfTest.d.ts.map +0 -1
- package/dist/bin/selfTest.js +0 -298
- package/dist/bin/selfTest.js.map +0 -1
- package/dist/headless/printMode.d.ts +0 -17
- package/dist/headless/printMode.d.ts.map +0 -1
- package/dist/headless/printMode.js +0 -40
- package/dist/headless/printMode.js.map +0 -1
- package/dist/plugins/providers/anthropic/index.d.ts +0 -9
- package/dist/plugins/providers/anthropic/index.d.ts.map +0 -1
- package/dist/plugins/providers/anthropic/index.js +0 -48
- package/dist/plugins/providers/anthropic/index.js.map +0 -1
- package/dist/plugins/providers/openai/index.d.ts +0 -10
- package/dist/plugins/providers/openai/index.d.ts.map +0 -1
- package/dist/plugins/providers/openai/index.js +0 -47
- package/dist/plugins/providers/openai/index.js.map +0 -1
- package/dist/plugins/providers/xai/index.d.ts +0 -10
- package/dist/plugins/providers/xai/index.d.ts.map +0 -1
- package/dist/plugins/providers/xai/index.js +0 -47
- package/dist/plugins/providers/xai/index.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,123 +1,116 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@trenchwork/erosolar",
|
|
3
|
-
"version": "1.1.
|
|
4
|
-
"description": "DeepSeek AI-powered CLI agent for code assistance and automation. Inspired by Project Glasswing (an Anthropic initiative); an independent project, not affiliated with or endorsed by Anthropic.",
|
|
5
|
-
"deepseek": {
|
|
6
|
-
"rulebookSchema": "src/contracts/schemas/agent-rules.schema.json"
|
|
7
|
-
},
|
|
8
|
-
"main": "dist/bin/deepseek.js",
|
|
9
|
-
"exports": {
|
|
10
|
-
".": "./dist/bin/deepseek.js",
|
|
11
|
-
"./
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
"
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"build": "
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"release": "chmod +x scripts/create-release.sh && scripts/create-release.sh
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"test": "jest --config jest.config.cjs",
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
"
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
"
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
"
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
"@
|
|
81
|
-
"@
|
|
82
|
-
"@
|
|
83
|
-
"@
|
|
84
|
-
"@
|
|
85
|
-
"@
|
|
86
|
-
"@
|
|
87
|
-
"@
|
|
88
|
-
"
|
|
89
|
-
"
|
|
90
|
-
"
|
|
91
|
-
"
|
|
92
|
-
"
|
|
93
|
-
"
|
|
94
|
-
"
|
|
95
|
-
"
|
|
96
|
-
"
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
"
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
"
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
"
|
|
108
|
-
"
|
|
109
|
-
"
|
|
110
|
-
"
|
|
111
|
-
"
|
|
112
|
-
"
|
|
113
|
-
"
|
|
114
|
-
"
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
"openai": "^6.10.0",
|
|
118
|
-
"ora": "^9.0.0",
|
|
119
|
-
"react": "^19.2.0",
|
|
120
|
-
"react-devtools-core": "^7.0.1",
|
|
121
|
-
"typescript": "5.9.3"
|
|
122
|
-
}
|
|
123
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@trenchwork/erosolar",
|
|
3
|
+
"version": "1.1.41",
|
|
4
|
+
"description": "DeepSeek AI-powered CLI agent for code assistance and automation. Inspired by Project Glasswing (an Anthropic initiative); an independent project, not affiliated with or endorsed by Anthropic.",
|
|
5
|
+
"deepseek": {
|
|
6
|
+
"rulebookSchema": "src/contracts/schemas/agent-rules.schema.json"
|
|
7
|
+
},
|
|
8
|
+
"main": "dist/bin/deepseek.js",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": "./dist/bin/deepseek.js",
|
|
11
|
+
"./capabilities": "./dist/capabilities/index.js"
|
|
12
|
+
},
|
|
13
|
+
"type": "module",
|
|
14
|
+
"files": [
|
|
15
|
+
"dist",
|
|
16
|
+
"scripts/postinstall.cjs",
|
|
17
|
+
"README.md",
|
|
18
|
+
"agents",
|
|
19
|
+
"LICENSE"
|
|
20
|
+
],
|
|
21
|
+
"bin": {
|
|
22
|
+
"deepseek": "dist/bin/deepseek.js",
|
|
23
|
+
"erosolar": "dist/bin/erosolar.js",
|
|
24
|
+
"erosolar-coder": "dist/bin/erosolar.js"
|
|
25
|
+
},
|
|
26
|
+
"scripts": {
|
|
27
|
+
"postinstall": "node scripts/postinstall.cjs",
|
|
28
|
+
"prebuild": "npm run clean",
|
|
29
|
+
"clean": "node -e \"const { rmSync } = require('fs'); for (const target of ['dist', '.tsbuildinfo']) { try { rmSync(target, { recursive: true, force: true, maxRetries: 10 }); } catch (error) { console.warn('Clean warning:', error.code, 'for', target); } }\"",
|
|
30
|
+
"build": "tsc",
|
|
31
|
+
"build:watch": "tsc --watch",
|
|
32
|
+
"build:prod": "NODE_ENV=production MINIFY=true npm run build",
|
|
33
|
+
"optimize": "node scripts/optimize-build.mjs",
|
|
34
|
+
"release": "chmod +x scripts/create-release.sh && scripts/create-release.sh patch",
|
|
35
|
+
"release:minor": "chmod +x scripts/create-release.sh && scripts/create-release.sh minor",
|
|
36
|
+
"release:major": "chmod +x scripts/create-release.sh && scripts/create-release.sh major",
|
|
37
|
+
"prepublishOnly": "npm run build",
|
|
38
|
+
"pretest": "npm run build",
|
|
39
|
+
"postbuild": "node scripts/postbuild.mjs",
|
|
40
|
+
"cli": "node dist/bin/deepseek.js",
|
|
41
|
+
"dev": "node --loader ts-node/esm src/bin/deepseek.ts",
|
|
42
|
+
"dev:watch": "node --watch --loader ts-node/esm src/bin/deepseek.ts",
|
|
43
|
+
"start": "node dist/bin/deepseek.js",
|
|
44
|
+
"test": "jest --config jest.config.cjs",
|
|
45
|
+
"test:watch": "jest --config jest.config.cjs --watch",
|
|
46
|
+
"test:coverage": "jest --config jest.config.cjs --coverage",
|
|
47
|
+
"lint": "eslint src/**/*.ts --max-warnings 200",
|
|
48
|
+
"lint:fix": "eslint src/**/*.ts --fix",
|
|
49
|
+
"type-check": "tsc --noEmit"
|
|
50
|
+
},
|
|
51
|
+
"keywords": [
|
|
52
|
+
"ai",
|
|
53
|
+
"cli",
|
|
54
|
+
"agent",
|
|
55
|
+
"llm",
|
|
56
|
+
"deepseek",
|
|
57
|
+
"code-assistant",
|
|
58
|
+
"automation",
|
|
59
|
+
"developer-tools"
|
|
60
|
+
],
|
|
61
|
+
"author": "",
|
|
62
|
+
"license": "MIT",
|
|
63
|
+
"repository": {
|
|
64
|
+
"type": "git",
|
|
65
|
+
"url": "git+https://github.com/Aroxora/deepseek-coder-cli.git"
|
|
66
|
+
},
|
|
67
|
+
"bugs": {
|
|
68
|
+
"url": "https://github.com/Aroxora/deepseek-coder-cli/issues"
|
|
69
|
+
},
|
|
70
|
+
"homepage": "https://github.com/Aroxora/deepseek-coder-cli#readme",
|
|
71
|
+
"engines": {
|
|
72
|
+
"node": ">=20.0.0"
|
|
73
|
+
},
|
|
74
|
+
"devDependencies": {
|
|
75
|
+
"@babel/core": "^7.28.5",
|
|
76
|
+
"@babel/preset-env": "^7.28.5",
|
|
77
|
+
"@babel/preset-react": "^7.28.5",
|
|
78
|
+
"@babel/preset-typescript": "^7.28.5",
|
|
79
|
+
"@eslint/js": "^9.39.2",
|
|
80
|
+
"@types/glob": "^8.1.0",
|
|
81
|
+
"@types/gradient-string": "^1.1.6",
|
|
82
|
+
"@types/jest": "30.0.0",
|
|
83
|
+
"@types/node": "25.0.2",
|
|
84
|
+
"@types/react": "^19.2.0",
|
|
85
|
+
"@typescript-eslint/eslint-plugin": "8.49.0",
|
|
86
|
+
"@typescript-eslint/parser": "8.49.0",
|
|
87
|
+
"@xterm/headless": "^6.0.0",
|
|
88
|
+
"babel-jest": "^30.2.0",
|
|
89
|
+
"eslint": "9.39.2",
|
|
90
|
+
"eslint-plugin-import": "^2.32.0",
|
|
91
|
+
"ink-testing-library": "^4.0.0",
|
|
92
|
+
"jest": "30.2.0",
|
|
93
|
+
"node-pty": "^1.1.0",
|
|
94
|
+
"ts-jest": "29.4.6",
|
|
95
|
+
"ts-node": "^10.9.2",
|
|
96
|
+
"typescript-eslint": "^8.50.0"
|
|
97
|
+
},
|
|
98
|
+
"overrides": {
|
|
99
|
+
"uuid": "^14.0.0"
|
|
100
|
+
},
|
|
101
|
+
"dependencies": {
|
|
102
|
+
"boxen": "^8.0.1",
|
|
103
|
+
"chalk": "^5.6.2",
|
|
104
|
+
"cli-spinners": "^3.3.0",
|
|
105
|
+
"gradient-string": "^3.0.0",
|
|
106
|
+
"ink": "^7.0.1",
|
|
107
|
+
"ink-spinner": "^5.0.0",
|
|
108
|
+
"nanospinner": "1.2.2",
|
|
109
|
+
"open": "^11.0.0",
|
|
110
|
+
"openai": "^6.10.0",
|
|
111
|
+
"ora": "^9.0.0",
|
|
112
|
+
"react": "^19.2.0",
|
|
113
|
+
"react-devtools-core": "^7.0.1",
|
|
114
|
+
"typescript": "5.9.3"
|
|
115
|
+
}
|
|
116
|
+
}
|
package/scripts/postinstall.cjs
CHANGED
|
@@ -1,58 +1,57 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
/**
|
|
3
|
-
* Postinstall:
|
|
4
|
-
* 1. chmod the bin entrypoints so they're executable on POSIX (no-op on Windows).
|
|
5
|
-
* 2. On Windows, print a friendly one-time notice about PowerShell execution
|
|
6
|
-
* policy and the canonical command forms so users don't get blocked the
|
|
7
|
-
* first time they type `erosolar` in PowerShell.
|
|
8
|
-
*
|
|
9
|
-
* Errors are intentionally swallowed: a postinstall must never fail an
|
|
10
|
-
* `npm install` for a non-essential courtesy step.
|
|
11
|
-
*/
|
|
12
|
-
'use strict';
|
|
13
|
-
|
|
14
|
-
const fs = require('fs');
|
|
15
|
-
const os = require('os');
|
|
16
|
-
const path = require('path');
|
|
17
|
-
|
|
18
|
-
const BINS = [
|
|
19
|
-
'dist/bin/deepseek.js',
|
|
20
|
-
'dist/bin/erosolar.js',
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
//
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
'',
|
|
37
|
-
'
|
|
38
|
-
'',
|
|
39
|
-
'
|
|
40
|
-
'
|
|
41
|
-
'
|
|
42
|
-
'',
|
|
43
|
-
'
|
|
44
|
-
'
|
|
45
|
-
'',
|
|
46
|
-
'
|
|
47
|
-
'',
|
|
48
|
-
'
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
//
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
}
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
/**
|
|
3
|
+
* Postinstall:
|
|
4
|
+
* 1. chmod the bin entrypoints so they're executable on POSIX (no-op on Windows).
|
|
5
|
+
* 2. On Windows, print a friendly one-time notice about PowerShell execution
|
|
6
|
+
* policy and the canonical command forms so users don't get blocked the
|
|
7
|
+
* first time they type `erosolar` in PowerShell.
|
|
8
|
+
*
|
|
9
|
+
* Errors are intentionally swallowed: a postinstall must never fail an
|
|
10
|
+
* `npm install` for a non-essential courtesy step.
|
|
11
|
+
*/
|
|
12
|
+
'use strict';
|
|
13
|
+
|
|
14
|
+
const fs = require('fs');
|
|
15
|
+
const os = require('os');
|
|
16
|
+
const path = require('path');
|
|
17
|
+
|
|
18
|
+
const BINS = [
|
|
19
|
+
'dist/bin/deepseek.js',
|
|
20
|
+
'dist/bin/erosolar.js',
|
|
21
|
+
];
|
|
22
|
+
|
|
23
|
+
for (const rel of BINS) {
|
|
24
|
+
try {
|
|
25
|
+
fs.chmodSync(path.resolve(__dirname, '..', rel), 0o755);
|
|
26
|
+
} catch {
|
|
27
|
+
// Missing files (clean tree pre-build) and Windows chmod no-ops both land here.
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
if (process.platform === 'win32' && !process.env['EROSOLAR_QUIET_POSTINSTALL']) {
|
|
32
|
+
// Single, scannable message — no banners, no marketing. Users see this once
|
|
33
|
+
// per global install and can move on.
|
|
34
|
+
const lines = [
|
|
35
|
+
'',
|
|
36
|
+
'[36mErosolar Coder[0m installed. Two notes for Windows:',
|
|
37
|
+
'',
|
|
38
|
+
' [2m• Commands available on PATH:[0m erosolar · erosolar-coder · deepseek',
|
|
39
|
+
' These work in [1mCommand Prompt[0m and [1mPowerShell[0m via the .cmd shims',
|
|
40
|
+
' npm installs automatically.',
|
|
41
|
+
'',
|
|
42
|
+
' [2m• If PowerShell says "running scripts is disabled on this system",[0m',
|
|
43
|
+
' run this [2m(once, no admin needed)[0m and reopen the shell:',
|
|
44
|
+
'',
|
|
45
|
+
' [33mSet-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser[0m',
|
|
46
|
+
'',
|
|
47
|
+
' Or invoke the .cmd shim directly: [33merosolar.cmd[0m',
|
|
48
|
+
'',
|
|
49
|
+
];
|
|
50
|
+
// Use stderr so the notice is visible even when npm is captured to stdout
|
|
51
|
+
// by automation. The notice is short and bounded.
|
|
52
|
+
try {
|
|
53
|
+
process.stderr.write(lines.join(os.EOL) + os.EOL);
|
|
54
|
+
} catch {
|
|
55
|
+
// Even the notice itself is non-essential.
|
|
56
|
+
}
|
|
57
|
+
}
|
package/dist/bin/cliMode.d.ts
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
type Mode = 'version' | 'help' | 'self-test' | 'json' | 'eval' | 'shell';
|
|
2
|
-
export interface CliModeResult {
|
|
3
|
-
mode: Mode;
|
|
4
|
-
argv: string[];
|
|
5
|
-
}
|
|
6
|
-
export declare function detectCliMode(argv: string[]): CliModeResult;
|
|
7
|
-
export {};
|
|
8
|
-
//# sourceMappingURL=cliMode.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"cliMode.d.ts","sourceRoot":"","sources":["../../src/bin/cliMode.ts"],"names":[],"mappings":"AAAA,KAAK,IAAI,GAAG,SAAS,GAAG,MAAM,GAAG,WAAW,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,CAAC;AAEzE,MAAM,WAAW,aAAa;IAC5B,IAAI,EAAE,IAAI,CAAC;IACX,IAAI,EAAE,MAAM,EAAE,CAAC;CAChB;AAED,wBAAgB,aAAa,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,aAAa,CAkB3D"}
|
package/dist/bin/cliMode.js
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
export function detectCliMode(argv) {
|
|
2
|
-
const args = [...argv];
|
|
3
|
-
if (args.includes('--version') || args.includes('-v')) {
|
|
4
|
-
return { mode: 'version', argv: args };
|
|
5
|
-
}
|
|
6
|
-
if (args.includes('--help') || args.includes('-h')) {
|
|
7
|
-
return { mode: 'help', argv: args };
|
|
8
|
-
}
|
|
9
|
-
if (args.includes('--self-test')) {
|
|
10
|
-
return { mode: 'self-test', argv: args };
|
|
11
|
-
}
|
|
12
|
-
if (args.includes('--json')) {
|
|
13
|
-
return { mode: 'json', argv: args };
|
|
14
|
-
}
|
|
15
|
-
if (args.includes('--eval') || args.includes('-e')) {
|
|
16
|
-
return { mode: 'eval', argv: args };
|
|
17
|
-
}
|
|
18
|
-
return { mode: 'shell', argv: args };
|
|
19
|
-
}
|
|
20
|
-
//# sourceMappingURL=cliMode.js.map
|
package/dist/bin/cliMode.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"cliMode.js","sourceRoot":"","sources":["../../src/bin/cliMode.ts"],"names":[],"mappings":"AAOA,MAAM,UAAU,aAAa,CAAC,IAAc;IAC1C,MAAM,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC,CAAC;IACvB,IAAI,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,IAAI,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE,CAAC;QACtD,OAAO,EAAE,IAAI,EAAE,SAAS,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;IACzC,CAAC;IACD,IAAI,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,IAAI,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE,CAAC;QACnD,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;IACtC,CAAC;IACD,IAAI,IAAI,CAAC,QAAQ,CAAC,aAAa,CAAC,EAAE,CAAC;QACjC,OAAO,EAAE,IAAI,EAAE,WAAW,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;IAC3C,CAAC;IACD,IAAI,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,EAAE,CAAC;QAC5B,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;IACtC,CAAC;IACD,IAAI,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,IAAI,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE,CAAC;QACnD,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;IACtC,CAAC;IACD,OAAO,EAAE,IAAI,EAAE,OAAO,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;AACvC,CAAC"}
|
package/dist/bin/selfTest.d.ts
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
/**
|
|
3
|
-
* Self-Test Runner for Erosolar CLI
|
|
4
|
-
*
|
|
5
|
-
* Launches the CLI in a separate process and runs extensive tests
|
|
6
|
-
* to verify functionality works correctly in a real runtime environment.
|
|
7
|
-
*
|
|
8
|
-
* @license MIT
|
|
9
|
-
*/
|
|
10
|
-
/**
|
|
11
|
-
* Run all self-tests
|
|
12
|
-
*/
|
|
13
|
-
export declare function runSelfTest(): Promise<boolean>;
|
|
14
|
-
//# sourceMappingURL=selfTest.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"selfTest.d.ts","sourceRoot":"","sources":["../../src/bin/selfTest.ts"],"names":[],"mappings":";AACA;;;;;;;GAOG;AAoCH;;GAEG;AACH,wBAAsB,WAAW,IAAI,OAAO,CAAC,OAAO,CAAC,CAuBpD"}
|