@m14i/sith 1.3.1
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/README.md +123 -0
- package/assets/images/logo.png +0 -0
- package/dist/92.index.js +5137 -0
- package/dist/assets/images/logo.png +0 -0
- package/dist/commands/docker.d.ts +4 -0
- package/dist/commands/docker.d.ts.map +1 -0
- package/dist/config.d.ts +12 -0
- package/dist/config.d.ts.map +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +79 -0
- package/dist/package.json +1 -0
- package/dist/types.d.ts +11 -0
- package/dist/types.d.ts.map +1 -0
- package/package.json +59 -0
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"docker.d.ts","sourceRoot":"","sources":["file:///home/runner/work/sith/sith/src/commands/docker.tsx"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAAkC,oBAAoB,EAAE,MAAM,aAAa,CAAC;AAoNxF,wBAAsB,aAAa,CAAC,OAAO,EAAE,oBAAoB,GAAG,OAAO,CAAC,IAAI,CAAC,CAehF;AAED,wBAAsB,cAAc,IAAI,OAAO,CAAC,IAAI,CAAC,CAEpD"}
|
package/dist/config.d.ts
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export declare const DOCKER_CONFIG: {
|
|
2
|
+
readonly imageName: "opencode-ci:latest";
|
|
3
|
+
readonly folderName: "docker";
|
|
4
|
+
readonly dockerfileName: "Dockerfile";
|
|
5
|
+
readonly workspaceMount: "/workspace";
|
|
6
|
+
readonly shellEntrypoint: "/opt/sith/nix/shell.nix";
|
|
7
|
+
};
|
|
8
|
+
export declare const SPINNER_CONFIG: {
|
|
9
|
+
readonly frames: readonly ["⠋", "⠙", "⠹", "⠸", "⠼", "⠴", "⠦", "⠧", "⠇", "⠏"];
|
|
10
|
+
readonly interval: 80;
|
|
11
|
+
};
|
|
12
|
+
export declare const ASCII_LOGO: readonly [" ███████╗██╗████████╗██╗ ██╗", " ██╔════╝██║╚══██╔══╝██║ ██║", " ███████╗██║ ██║ ███████║", " ╚════██║██║ ██║ ██╔══██║", " ███████║██║ ██║ ██║ ██║", " ╚══════╝╚═╝ ╚═╝ ╚═╝ ╚═╝"];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"","sourceRoot":"","sources":["file:///home/runner/work/sith/sith/src/config.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,aAAa;;;;;;CAMhB,CAAC;AAGX,eAAO,MAAM,cAAc;;;CAGjB,CAAC;AAGX,eAAO,MAAM,UAAU,mOAOb,CAAC"}
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"","sourceRoot":"","sources":["file:///home/runner/work/sith/sith/src/index.ts"],"names":[],"mappings":""}
|