@absolutejs/absolute 0.19.0-beta.1121 → 0.19.0-beta.1122
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 +570 -480
- package/dist/build.js.map +6 -5
- package/dist/cli/index.js +184 -101
- package/dist/index.js +570 -480
- package/dist/index.js.map +6 -5
- package/dist/src/build/bunStringRawUnicodePlugin.d.ts +12 -0
- package/dist/src/utils/cleanup.d.ts +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { BunPlugin } from 'bun';
|
|
2
|
+
/**
|
|
3
|
+
* Work around oven-sh/bun#16763. With target "bun", Bun escapes non-ASCII
|
|
4
|
+
* characters inside tagged templates. String.raw then observes the generated
|
|
5
|
+
* escape text instead of the character that was present in source.
|
|
6
|
+
*
|
|
7
|
+
* `String.raw` is specified in terms of a first argument with a `raw` array,
|
|
8
|
+
* so spelling the same operation as a normal call avoids the faulty tagged
|
|
9
|
+
* template transform without changing backslashes or substitutions.
|
|
10
|
+
*/
|
|
11
|
+
export declare const rewriteBunStringRawUnicode: (source: string, filePath?: string) => string;
|
|
12
|
+
export declare const createBunStringRawUnicodePlugin: () => BunPlugin;
|
|
@@ -5,5 +5,6 @@ type CleanupProps = {
|
|
|
5
5
|
vueDir?: string;
|
|
6
6
|
preserveAngularGenerated?: boolean;
|
|
7
7
|
};
|
|
8
|
+
export declare const removeIfExists: (path: string) => Promise<void>;
|
|
8
9
|
export declare const cleanup: ({ angularDir, reactDir, svelteDir, vueDir, preserveAngularGenerated }: CleanupProps) => Promise<void>;
|
|
9
10
|
export {};
|