remix-validated-form 5.1.4-beta.0 → 5.1.4
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/.turbo/turbo-build.log +18 -18
- package/.turbo/turbo-typecheck.log +1 -1
- package/dist/index.cjs.js +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
1
|
+
$ tsup
|
|
2
|
+
CLI Building entry: src/index.ts
|
|
3
|
+
CLI Using tsconfig: tsconfig.json
|
|
4
|
+
CLI tsup v6.5.0
|
|
5
|
+
CLI Using tsup config: /Users/aaronpettengill/dev/remix-validated-form/packages/remix-validated-form/tsup.config.ts
|
|
6
|
+
CLI Target: es2019
|
|
7
|
+
CLI Cleaning output folder
|
|
8
|
+
ESM Build start
|
|
9
|
+
CJS Build start
|
|
10
|
+
ESM dist/index.esm.js 60.34 KB
|
|
11
|
+
ESM dist/index.esm.js.map 130.99 KB
|
|
12
|
+
ESM ⚡️ Build success in 66ms
|
|
13
|
+
CJS dist/index.cjs.js 63.08 KB
|
|
14
|
+
CJS dist/index.cjs.js.map 131.09 KB
|
|
15
|
+
CJS ⚡️ Build success in 67ms
|
|
16
|
+
DTS Build start
|
|
17
|
+
DTS ⚡️ Build success in 2090ms
|
|
18
|
+
DTS dist/index.d.ts 12.94 KB
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
$ tsc --noEmit
|
package/dist/index.cjs.js
CHANGED
|
@@ -1164,7 +1164,7 @@ var useDefaultValuesFromLoader = ({
|
|
|
1164
1164
|
const match = matches.reverse().find(
|
|
1165
1165
|
(match2) => match2.data && typeof match2.data === "object" && dataKey in match2.data
|
|
1166
1166
|
);
|
|
1167
|
-
return match == null ? void 0 : match.data[dataKey];
|
|
1167
|
+
return (match == null ? void 0 : match.data)[dataKey];
|
|
1168
1168
|
}
|
|
1169
1169
|
return null;
|
|
1170
1170
|
};
|