@absolutejs/absolute 0.19.0-beta.1087 → 0.19.0-beta.1088
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/dist/angular/components/core/streamingSlotRegistrar.js +1 -1
- package/dist/angular/components/core/streamingSlotRegistry.js +2 -2
- package/dist/build.js +691 -104
- package/dist/build.js.map +5 -4
- package/dist/index.js +698 -111
- package/dist/index.js.map +5 -4
- package/dist/src/build/tailwindCompiler.d.ts +0 -1
- package/dist/src/core/build.d.ts +1 -1
- package/dist/tailwindcss-oxide.linux-x64-gnu-vcb5zrt4.node +0 -0
- package/dist/tailwindcss-oxide.linux-x64-musl-vr6z8t87.node +0 -0
- package/package.json +2 -1
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import type { StylePreprocessorConfig, TailwindConfig } from '../../types/build';
|
|
2
|
-
export declare const extractCandidates: (source: string) => Set<string>;
|
|
3
2
|
export declare const disposeTailwindCompiler: (cssPath?: string) => void;
|
|
4
3
|
export declare const incrementalTailwindBuild: (tailwind: TailwindConfig, buildPath: string, changedFiles: string[], styleTransformConfig?: StylePreprocessorConfig, extraSources?: string[]) => Promise<{
|
|
5
4
|
cssChanged: boolean;
|
package/dist/src/core/build.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { build as bunBuild } from 'bun';
|
|
|
2
2
|
import type { ConventionsMap } from '../../types/conventions';
|
|
3
3
|
import type { BuildConfig, BunBuildConfigOverride, BunBuildPassKey } from '../../types/build';
|
|
4
4
|
type BunBuildOptions = Parameters<typeof bunBuild>[0];
|
|
5
|
-
export declare const resolveBunBuildOverride: (config: BuildConfig["bunBuild"], pass: BunBuildPassKey) => Partial<Omit<Bun.BuildConfig, "
|
|
5
|
+
export declare const resolveBunBuildOverride: (config: BuildConfig["bunBuild"], pass: BunBuildPassKey) => Partial<Omit<Bun.BuildConfig, "entrypoints" | "outdir" | "root" | "target" | "format" | "throw" | "compile">>;
|
|
6
6
|
/** Resolve the Bun `sourcemap` mode for CLIENT bundles from the `sourcemaps`
|
|
7
7
|
* config. Dev always uses inline maps (HMR / devtools); production emits
|
|
8
8
|
* external maps only when explicitly enabled — they're then chained back to
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
"@elysia/static": "^1.4.11",
|
|
8
8
|
"@elysiajs/openapi": "^1.4.15",
|
|
9
9
|
"@elysiajs/server-timing": "^1.4.0",
|
|
10
|
+
"@tailwindcss/oxide": "^4.1.0",
|
|
10
11
|
"zustand": "^5.0.12"
|
|
11
12
|
},
|
|
12
13
|
"description": "A fullstack meta-framework for building web applications with TypeScript",
|
|
@@ -423,7 +424,7 @@
|
|
|
423
424
|
]
|
|
424
425
|
}
|
|
425
426
|
},
|
|
426
|
-
"version": "0.19.0-beta.
|
|
427
|
+
"version": "0.19.0-beta.1088",
|
|
427
428
|
"workspaces": [
|
|
428
429
|
"tests/fixtures/*",
|
|
429
430
|
"tests/fixtures/_packages/*"
|