@lwc/babel-plugin-component 8.12.6 → 8.12.7
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/index.cjs.js +1 -1
- package/dist/index.js +1 -1
- package/dist/utils.d.ts +2 -2
- package/package.json +3 -3
package/dist/index.cjs.js
CHANGED
package/dist/index.js
CHANGED
package/dist/utils.d.ts
CHANGED
|
@@ -11,12 +11,12 @@ declare function isGetterClassMethod(classMethod: NodePath<types.Node>, properti
|
|
|
11
11
|
kind?: string;
|
|
12
12
|
name?: string;
|
|
13
13
|
static?: boolean;
|
|
14
|
-
}):
|
|
14
|
+
}): classMethod is NodePath<types.ClassMethod>;
|
|
15
15
|
declare function isSetterClassMethod(classMethod: NodePath<types.Node>, properties?: {
|
|
16
16
|
kind?: string;
|
|
17
17
|
name?: string;
|
|
18
18
|
static?: boolean;
|
|
19
|
-
}):
|
|
19
|
+
}): classMethod is NodePath<types.ClassMethod>;
|
|
20
20
|
declare function getEngineImportSpecifiers(path: NodePath): ImportSpecifier[];
|
|
21
21
|
declare function generateError(source: NodePath<types.Node>, { errorInfo, messageArgs }: DecoratorErrorOptions, state: LwcBabelPluginPass): Error;
|
|
22
22
|
declare function incrementMetricCounter(metric: CompilerMetrics, state: LwcBabelPluginPass): void;
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"You can safely modify dependencies, devDependencies, keywords, etc., but other props will be overwritten."
|
|
5
5
|
],
|
|
6
6
|
"name": "@lwc/babel-plugin-component",
|
|
7
|
-
"version": "8.12.
|
|
7
|
+
"version": "8.12.7",
|
|
8
8
|
"description": "Babel plugin to transform a LWC module",
|
|
9
9
|
"keywords": [
|
|
10
10
|
"lwc"
|
|
@@ -47,8 +47,8 @@
|
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
49
|
"@babel/helper-module-imports": "7.25.9",
|
|
50
|
-
"@lwc/errors": "8.12.
|
|
51
|
-
"@lwc/shared": "8.12.
|
|
50
|
+
"@lwc/errors": "8.12.7",
|
|
51
|
+
"@lwc/shared": "8.12.7",
|
|
52
52
|
"line-column": "~1.0.2"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|