@komaci/cli 254.0.2 → 256.0.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.
|
@@ -19,7 +19,7 @@ export function readBundle(path) {
|
|
|
19
19
|
export function traverseDir(path, filesArr) {
|
|
20
20
|
if (existsSync(path)) {
|
|
21
21
|
const contents = readdirSync(path, { withFileTypes: true });
|
|
22
|
-
const LWC_EXT = ['.js', '.mjs', '.css', '.html'];
|
|
22
|
+
const LWC_EXT = ['.js', '.mjs', '.css', '.html', '.ts'];
|
|
23
23
|
contents.forEach((file) => {
|
|
24
24
|
if (file.isDirectory()) {
|
|
25
25
|
filesArr.concat(traverseDir(path + '/' + file.name, filesArr));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@komaci/cli",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "256.0.1",
|
|
4
4
|
"description": "CLI utility that enables developers to use komaci from the command line.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"url": "https://github.com/AndrewHuffman/komaci/issues"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@komaci/esm-generator": "
|
|
28
|
-
"@komaci/static-analyzer": "
|
|
27
|
+
"@komaci/esm-generator": "256.0.1",
|
|
28
|
+
"@komaci/static-analyzer": "256.0.1",
|
|
29
29
|
"@lwc/errors": "~3.5.0",
|
|
30
30
|
"@lwc/metadata": "3.5.0-0",
|
|
31
31
|
"@lwc/sfdc-compiler-utils": "3.5.0-0",
|