@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/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,10 @@ Given a version number MAJOR.MINOR.PATCH, increment the:
|
|
|
6
6
|
2. MINOR version when you add functionality in a backwards compatible manner, and
|
|
7
7
|
3. PATCH version when you make backwards compatible bug fixes.
|
|
8
8
|
|
|
9
|
+
# 4.3.1
|
|
10
|
+
|
|
11
|
+
* MINOR: Fixes artefact check for building less files (resolves unexpected artefact / missing artefact).
|
|
12
|
+
|
|
9
13
|
# 4.3.0
|
|
10
14
|
|
|
11
15
|
* MINOR: Adds the escape filter (:escape) which escapes HTML.
|
package/bundles/bin/cli.js
CHANGED
|
@@ -69399,6 +69399,10 @@ var esbuilder = {
|
|
|
69399
69399
|
if (jsTypeFile.test(ext)) {
|
|
69400
69400
|
return jsOutExt;
|
|
69401
69401
|
}
|
|
69402
|
+
switch (ext) {
|
|
69403
|
+
case "less":
|
|
69404
|
+
return "css";
|
|
69405
|
+
}
|
|
69402
69406
|
return ext;
|
|
69403
69407
|
};
|
|
69404
69408
|
const exampleFile = build2[0];
|