fullstacked 1.0.0-alpha.1670 → 1.0.0-alpha.1676

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
@@ -1423,10 +1423,11 @@ function run(directory2) {
1423
1423
  }
1424
1424
 
1425
1425
  // ../../core/internal/bundle/lib/process/version.json
1426
- var version_default = { major: "1", minor: "0", patch: "0-alpha", branch: "v1", build: "1670", hash: "7e19432e3ac00179ead6a6d019b1f813718a5c07" };
1426
+ var version_default = { major: "1", minor: "0", patch: "0-alpha", branch: "v1", build: "1676", hash: "764b4ac1fa100d52afd0df84f8901676c53091c9" };
1427
1427
 
1428
1428
  // src/index.ts
1429
1429
  import postcss from "postcss";
1430
+ import atImport from "postcss-import";
1430
1431
  import tailwindcss from "@tailwindcss/postcss";
1431
1432
  import autoprefixer from "autoprefixer";
1432
1433
  import fs3 from "node:fs";
@@ -1494,7 +1495,15 @@ tailwindcssBuilder.on("build", async (entryfile, outfile) => {
1494
1495
  const from = path3.resolve(directory, entryfile);
1495
1496
  const to = path3.resolve(directory, outfile);
1496
1497
  const css = await fs3.promises.readFile(from, "utf-8");
1497
- const result2 = await postcss([tailwindcss(), autoprefixer()]).process(css, {
1498
+ const result2 = await postcss([
1499
+ atImport({
1500
+ addModulesDirectories: [
1501
+ path3.resolve(import.meta.dirname, "node_modules")
1502
+ ]
1503
+ }),
1504
+ tailwindcss(),
1505
+ autoprefixer()
1506
+ ]).process(css, {
1498
1507
  from,
1499
1508
  to
1500
1509
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fullstacked",
3
- "version": "1.0.0-alpha.1670",
3
+ "version": "1.0.0-alpha.1676",
4
4
  "bin": {
5
5
  "fullstacked": "index.js"
6
6
  },
@@ -10,26 +10,27 @@
10
10
  "prepack": "npm run build"
11
11
  },
12
12
  "dependencies": {
13
- "@tailwindcss/postcss": "^4.2.4",
13
+ "@tailwindcss/postcss": "^4.3.0",
14
14
  "autoprefixer": "^10.5.0",
15
15
  "open": "^11.0.0",
16
- "postcss": "^8.5.14",
17
- "tailwindcss": "^4.2.4",
18
- "ws": "^8.20.0"
16
+ "postcss": "^8.5.15",
17
+ "postcss-import": "^16.1.1",
18
+ "tailwindcss": "^4.3.0",
19
+ "ws": "^8.21.0"
19
20
  },
20
21
  "devDependencies": {
21
22
  "@nitrogql/esbuild-register": "^1.7.2",
22
23
  "@types/ws": "^8.18.1",
23
24
  "esbuild": "^0.28.0",
24
- "node-addon-api": "^8.7.0"
25
+ "node-addon-api": "^8.8.0"
25
26
  },
26
27
  "optionalDependencies": {
27
- "@fullstacked/darwin-arm64": "1.0.0-alpha.1670",
28
- "@fullstacked/darwin-x64": "1.0.0-alpha.1670",
29
- "@fullstacked/linux-arm64": "1.0.0-alpha.1670",
30
- "@fullstacked/linux-x64": "1.0.0-alpha.1670",
31
- "@fullstacked/win32-arm64": "1.0.0-alpha.1670",
32
- "@fullstacked/win32-x64": "1.0.0-alpha.1670"
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"
33
34
  },
34
35
  "author": "FullStacked",
35
36
  "license": "MIT",
@@ -40,6 +41,9 @@
40
41
  "url": "git+https://github.com/fullstackedorg/fullstacked.git"
41
42
  },
42
43
  "exports": {
44
+ "./auth": {
45
+ "types": "./types/auth/index.d.ts"
46
+ },
43
47
  "./bundle": {
44
48
  "types": "./types/bundle/index.d.ts"
45
49
  },
@@ -1,5 +1,6 @@
1
1
  export interface GitDirectory {
2
2
  Directory: string;
3
+ Proxy: string;
3
4
  }
4
5
  export type GitRefType = string;
5
6
  export declare const RefCommit: GitRefType;
@@ -1,3 +1,7 @@
1
- export default function authenticate(url: string, opts?: {
1
+ export declare function authenticate(url: string, opts?: {
2
2
  windowFeatures?: string;
3
- }): Promise<string>;
3
+ }): Promise<any>;
4
+ declare const auth: {
5
+ authenticate: typeof authenticate;
6
+ };
7
+ export default auth;
@@ -11,14 +11,14 @@ export declare function head(directory: string): Promise<GitHead>;
11
11
  export declare function status(directory: string): Promise<GitStatus>;
12
12
  export declare function add(directory: string, path: string): Promise<any>;
13
13
  export declare function log(directory: string): Promise<GitCommit[]>;
14
- export declare function clone(url: string, directory: string): Promise<Duplex>;
14
+ export declare function clone(url: string, directory: string, proxy?: string): Promise<Duplex>;
15
15
  export declare function commit(directory: string, message: string, author: GitAuthor): Promise<string>;
16
- export declare function pull(directory: string): Promise<Duplex>;
17
- export declare function push(directory: string): Promise<Duplex>;
16
+ export declare function pull(directory: string, proxy?: string): Promise<Duplex>;
17
+ export declare function push(directory: string, proxy?: string): Promise<Duplex>;
18
18
  export declare function reset(directory: string, hard: boolean, ...files: string[]): Promise<any>;
19
19
  export declare function branch(directory: string): Promise<GitBranch[]>;
20
20
  export declare function tags(directory: string): Promise<GitTag[]>;
21
- export declare function checkout(directory: string, ref: string, create?: boolean): Promise<Duplex>;
21
+ export declare function checkout(directory: string, ref: string, create?: boolean, proxy?: string): Promise<Duplex>;
22
22
  export declare function merge(directory: string, branch: string): Promise<any>;
23
23
  export declare function restore(directory: string, ...files: string[]): Promise<any>;
24
24
  declare const git: {