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 +5 -3
- package/package.json +10 -10
- package/types/@types/git.d.ts +5 -0
- package/types/@types/index.d.ts +3 -0
- package/types/@types/router.d.ts +1 -0
- package/types/run/index.d.ts +5 -1
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(
|
|
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: "
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
29
|
-
"@fullstacked/darwin-x64": "1.0.0-alpha.
|
|
30
|
-
"@fullstacked/linux-arm64": "1.0.0-alpha.
|
|
31
|
-
"@fullstacked/linux-x64": "1.0.0-alpha.
|
|
32
|
-
"@fullstacked/win32-arm64": "1.0.0-alpha.
|
|
33
|
-
"@fullstacked/win32-x64": "1.0.0-alpha.
|
|
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",
|
package/types/@types/git.d.ts
CHANGED
|
@@ -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;
|
package/types/@types/index.d.ts
CHANGED
package/types/@types/router.d.ts
CHANGED
package/types/run/index.d.ts
CHANGED