@astrojs/compiler 1.1.2 → 1.2.1
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/CHANGELOG.md +17 -0
- package/astro.wasm +0 -0
- package/browser/index.d.ts +1 -0
- package/browser/index.js +5 -0
- package/node/index.d.ts +1 -0
- package/node/index.js +4 -0
- package/package.json +1 -1
- package/shared/types.d.ts +11 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @astrojs/compiler
|
|
2
2
|
|
|
3
|
+
## 1.2.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 348840b: Fix getStaticPaths export when used with a TypeScript type ([#4929](https://github.com/withastro/astro/issues/4929))
|
|
8
|
+
- 8ed067e: Fix parse error for multiline `export type` using Unions or Intersections
|
|
9
|
+
- 6354e50: Improve handling of self-closing tags returned from expression
|
|
10
|
+
- 5a5f91d: Fix `define:vars` when used with a `style` attribute
|
|
11
|
+
- b637e9a: Fix ignored `form` elements after a `form` element that contains an expression
|
|
12
|
+
- 2658ed4: Correctly apply style when `class` and `class:list` are both used
|
|
13
|
+
|
|
14
|
+
## 1.2.0
|
|
15
|
+
|
|
16
|
+
### Minor Changes
|
|
17
|
+
|
|
18
|
+
- b2cfd00: Add teardown API to remove WASM instance after using the compiler
|
|
19
|
+
|
|
3
20
|
## 1.1.2
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
package/astro.wasm
CHANGED
|
Binary file
|
package/browser/index.d.ts
CHANGED
package/browser/index.js
CHANGED
|
@@ -7,6 +7,11 @@ export const parse = (input, options) => {
|
|
|
7
7
|
};
|
|
8
8
|
let initializePromise;
|
|
9
9
|
let longLivedService;
|
|
10
|
+
export const teardown = () => {
|
|
11
|
+
initializePromise = undefined;
|
|
12
|
+
longLivedService = undefined;
|
|
13
|
+
globalThis['@astrojs/compiler'] = undefined;
|
|
14
|
+
};
|
|
10
15
|
export const initialize = async (options) => {
|
|
11
16
|
let wasmURL = options.wasmURL;
|
|
12
17
|
if (!wasmURL)
|
package/node/index.d.ts
CHANGED
|
@@ -4,3 +4,4 @@ export declare const transform: typeof types.transform;
|
|
|
4
4
|
export declare const parse: typeof types.parse;
|
|
5
5
|
export declare const convertToTSX: typeof types.convertToTSX;
|
|
6
6
|
export declare const compile: (template: string) => Promise<string>;
|
|
7
|
+
export declare const teardown: typeof types.teardown;
|
package/node/index.js
CHANGED
|
@@ -15,6 +15,10 @@ export const compile = async (template) => {
|
|
|
15
15
|
return mod;
|
|
16
16
|
};
|
|
17
17
|
let longLivedService;
|
|
18
|
+
export const teardown = () => {
|
|
19
|
+
longLivedService = undefined;
|
|
20
|
+
globalThis['@astrojs/compiler'] = undefined;
|
|
21
|
+
};
|
|
18
22
|
let getService = () => {
|
|
19
23
|
if (!longLivedService) {
|
|
20
24
|
longLivedService = startRunningService().catch((err) => {
|
package/package.json
CHANGED
package/shared/types.d.ts
CHANGED
|
@@ -94,6 +94,17 @@ export declare function transform(input: string, options?: TransformOptions): Pr
|
|
|
94
94
|
export declare function parse(input: string, options?: ParseOptions): Promise<ParseResult>;
|
|
95
95
|
export declare function convertToTSX(input: string, options?: ConvertToTSXOptions): Promise<TSXResult>;
|
|
96
96
|
export declare function initialize(options: InitializeOptions): Promise<void>;
|
|
97
|
+
/**
|
|
98
|
+
* When calling the core compiler APIs, e.g. `transform`, `parse`, etc, they
|
|
99
|
+
* would automatically instantiate a WASM instance to process the input. When
|
|
100
|
+
* done, you can call this to manually teardown the WASM instance.
|
|
101
|
+
*
|
|
102
|
+
* If the APIs are called again, they will automatically instantiate a new WASM
|
|
103
|
+
* instance. In browsers, you have to call `initialize()` again before using the APIs.
|
|
104
|
+
*
|
|
105
|
+
* Note: Calling teardown is optional and exists mostly as an optimization only.
|
|
106
|
+
*/
|
|
107
|
+
export declare function teardown(): void;
|
|
97
108
|
export interface InitializeOptions {
|
|
98
109
|
wasmURL?: string;
|
|
99
110
|
}
|