@lwc/babel-plugin-component 2.11.1 → 2.11.5
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/package.json +7 -11
- package/src/index.d.ts +10 -0
package/package.json
CHANGED
|
@@ -10,29 +10,25 @@
|
|
|
10
10
|
"bugs": {
|
|
11
11
|
"url": "https://github.com/salesforce/lwc/issues"
|
|
12
12
|
},
|
|
13
|
-
"version": "2.11.
|
|
13
|
+
"version": "2.11.5",
|
|
14
14
|
"main": "src/index.js",
|
|
15
|
-
"typings": "
|
|
15
|
+
"typings": "src/index.d.ts",
|
|
16
16
|
"license": "MIT",
|
|
17
17
|
"files": [
|
|
18
18
|
"src/*.js",
|
|
19
|
-
"src
|
|
20
|
-
"src/
|
|
19
|
+
"src/*.d.ts",
|
|
20
|
+
"src/decorators/"
|
|
21
21
|
],
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@babel/helper-module-imports": "~7.16.7",
|
|
24
|
-
"@lwc/errors": "2.11.
|
|
25
|
-
"@lwc/shared": "2.11.
|
|
24
|
+
"@lwc/errors": "2.11.5",
|
|
25
|
+
"@lwc/shared": "2.11.5",
|
|
26
26
|
"line-column": "~1.0.2"
|
|
27
27
|
},
|
|
28
|
-
"devDependencies": {
|
|
29
|
-
"common-tags": "^1.8.0"
|
|
30
|
-
},
|
|
31
28
|
"peerDependencies": {
|
|
32
29
|
"@babel/core": "^7"
|
|
33
30
|
},
|
|
34
31
|
"publishConfig": {
|
|
35
32
|
"access": "public"
|
|
36
|
-
}
|
|
37
|
-
"gitHead": "94040389ab8fc717b8753e503f659489480a327d"
|
|
33
|
+
}
|
|
38
34
|
}
|
package/src/index.d.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright (c) 2018, salesforce.com, inc.
|
|
3
|
+
* All rights reserved.
|
|
4
|
+
* SPDX-License-Identifier: MIT
|
|
5
|
+
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
import type { PluginObj } from '@babel/core';
|
|
9
|
+
|
|
10
|
+
export default function babelPluginComponent(): PluginObj;
|