@barefootjs/test 0.5.2 → 0.5.3
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.js +5 -0
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -194528,6 +194528,9 @@ function buildIfStatementChain(analyzer, ctx) {
|
|
|
194528
194528
|
return alternate;
|
|
194529
194529
|
}
|
|
194530
194530
|
|
|
194531
|
+
// ../jsx/src/ir-to-client-js/collect-elements.ts
|
|
194532
|
+
var EMPTY_RENDER_EXPRS = new Set(["null", "undefined", "false", "''", '""', "``"]);
|
|
194533
|
+
|
|
194531
194534
|
// ../jsx/src/ir-to-client-js/identifiers.ts
|
|
194532
194535
|
var KEYWORDS_AND_GLOBALS = new Set([
|
|
194533
194536
|
"true",
|
|
@@ -194862,6 +194865,8 @@ var CLIENT_PACKAGE_SOURCES = new Set([
|
|
|
194862
194865
|
"@barefootjs/client",
|
|
194863
194866
|
"@barefootjs/client/runtime"
|
|
194864
194867
|
]);
|
|
194868
|
+
// ../jsx/src/combine-client-js.ts
|
|
194869
|
+
var import_typescript18 = __toESM(require_typescript(), 1);
|
|
194865
194870
|
// ../jsx/src/debug.ts
|
|
194866
194871
|
function escapeForIdBoundary(name) {
|
|
194867
194872
|
return name.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@barefootjs/test",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.3",
|
|
4
4
|
"description": "Test utilities for BarefootJS - IR-based component testing without a browser",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"directory": "packages/test"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@barefootjs/jsx": "0.5.
|
|
42
|
+
"@barefootjs/jsx": "0.5.3"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"typescript": "^5.0.0"
|