fullstacked 1.0.0-alpha.1676 → 1.0.0-alpha.1683

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/index.js CHANGED
@@ -1413,17 +1413,19 @@ async function builderTailwindCSS() {
1413
1413
  }
1414
1414
 
1415
1415
  // ../../core/internal/bundle/lib/run/index.ts
1416
- function run(directory2) {
1416
+ function run(directoryOrOptions) {
1417
+ const directory2 = typeof directoryOrOptions === "string" ? directoryOrOptions : directoryOrOptions?.directory;
1418
+ const env = typeof directoryOrOptions === "object" ? directoryOrOptions.env : void 0;
1417
1419
  const resolved = path_default.resolve(directory2 ?? ".");
1418
1420
  return bridge({
1419
1421
  mod: Core,
1420
1422
  fn: Run,
1421
- data: [resolved]
1423
+ data: [resolved, env]
1422
1424
  });
1423
1425
  }
1424
1426
 
1425
1427
  // ../../core/internal/bundle/lib/process/version.json
1426
- var version_default = { major: "1", minor: "0", patch: "0-alpha", branch: "v1", build: "1676", hash: "764b4ac1fa100d52afd0df84f8901676c53091c9" };
1428
+ var version_default = { major: "1", minor: "0", patch: "0-alpha", branch: "v1", build: "1683", hash: "42bff95aff88b6631c9ed6e10cbebf2bbad7207f" };
1427
1429
 
1428
1430
  // src/index.ts
1429
1431
  import postcss from "postcss";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fullstacked",
3
- "version": "1.0.0-alpha.1676",
3
+ "version": "1.0.0-alpha.1683",
4
4
  "bin": {
5
5
  "fullstacked": "index.js"
6
6
  },
@@ -10,27 +10,27 @@
10
10
  "prepack": "npm run build"
11
11
  },
12
12
  "dependencies": {
13
- "@tailwindcss/postcss": "^4.3.0",
13
+ "@tailwindcss/postcss": "^4.3.1",
14
14
  "autoprefixer": "^10.5.0",
15
15
  "open": "^11.0.0",
16
16
  "postcss": "^8.5.15",
17
17
  "postcss-import": "^16.1.1",
18
- "tailwindcss": "^4.3.0",
18
+ "tailwindcss": "^4.3.1",
19
19
  "ws": "^8.21.0"
20
20
  },
21
21
  "devDependencies": {
22
22
  "@nitrogql/esbuild-register": "^1.7.2",
23
23
  "@types/ws": "^8.18.1",
24
- "esbuild": "^0.28.0",
24
+ "esbuild": "^0.28.1",
25
25
  "node-addon-api": "^8.8.0"
26
26
  },
27
27
  "optionalDependencies": {
28
- "@fullstacked/darwin-arm64": "1.0.0-alpha.1676",
29
- "@fullstacked/darwin-x64": "1.0.0-alpha.1676",
30
- "@fullstacked/linux-arm64": "1.0.0-alpha.1676",
31
- "@fullstacked/linux-x64": "1.0.0-alpha.1676",
32
- "@fullstacked/win32-arm64": "1.0.0-alpha.1676",
33
- "@fullstacked/win32-x64": "1.0.0-alpha.1676"
28
+ "@fullstacked/darwin-arm64": "1.0.0-alpha.1683",
29
+ "@fullstacked/darwin-x64": "1.0.0-alpha.1683",
30
+ "@fullstacked/linux-arm64": "1.0.0-alpha.1683",
31
+ "@fullstacked/linux-x64": "1.0.0-alpha.1683",
32
+ "@fullstacked/win32-arm64": "1.0.0-alpha.1683",
33
+ "@fullstacked/win32-x64": "1.0.0-alpha.1683"
34
34
  },
35
35
  "author": "FullStacked",
36
36
  "license": "MIT",
@@ -6,6 +6,11 @@ export type GitRefType = string;
6
6
  export declare const RefCommit: GitRefType;
7
7
  export declare const RefBranch: GitRefType;
8
8
  export declare const RefTag: GitRefType;
9
+ /**
10
+ * CustomFS is a billy.Filesystem implementation that uses the default Go os package functions.
11
+ */
12
+ export interface CustomFS {
13
+ }
9
14
  export type GitFn = number;
10
15
  export declare const AuthManager: GitFn;
11
16
  export declare const HasGit: GitFn;
@@ -56,6 +56,9 @@ export interface ContextDirectories {
56
56
  export interface Context {
57
57
  Id: number;
58
58
  Directories: ContextDirectories;
59
+ Env: {
60
+ [key: string]: string;
61
+ };
59
62
  Responses: {
60
63
  [key: number]: string;
61
64
  };
@@ -1,3 +1,4 @@
1
1
  export type CoreFn = number;
2
2
  export declare const StaticFile: CoreFn;
3
3
  export declare const Run: CoreFn;
4
+ export declare const GetEnv: CoreFn;
@@ -1,2 +1,6 @@
1
- export declare function run(directory?: string): Promise<void>;
1
+ type RunOptions = {
2
+ directory?: string;
3
+ env?: Record<string, string>;
4
+ };
5
+ export declare function run(directoryOrOptions?: string | RunOptions): Promise<void>;
2
6
  export default run;