@normed/bundle 4.3.0 → 4.3.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 +4 -0
- package/bundles/bin/cli.js +4 -0
- package/bundles/bin/cli.js.map +2 -2
- package/bundles/index.js +4 -0
- package/bundles/index.js.map +2 -2
- package/package.json +1 -1
package/bundles/index.js
CHANGED
|
@@ -69413,6 +69413,10 @@ var esbuilder = {
|
|
|
69413
69413
|
if (jsTypeFile.test(ext)) {
|
|
69414
69414
|
return jsOutExt;
|
|
69415
69415
|
}
|
|
69416
|
+
switch (ext) {
|
|
69417
|
+
case "less":
|
|
69418
|
+
return "css";
|
|
69419
|
+
}
|
|
69416
69420
|
return ext;
|
|
69417
69421
|
};
|
|
69418
69422
|
const exampleFile = build2[0];
|