@famgia/omnify-typescript 0.0.99 → 0.0.100
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.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/plugin.cjs +5 -5
- package/dist/plugin.cjs.map +1 -1
- package/dist/plugin.js +5 -5
- package/dist/plugin.js.map +1 -1
- package/package.json +2 -2
- package/stubs/form-validation.ts.stub +3 -1
- package/stubs/rules/index.ts.stub +3 -0
- package/stubs/rules/kana.ts.stub +3 -0
- package/stubs/use-form-mutation.ts.stub +3 -1
- package/stubs/zod-i18n.ts.stub +3 -1
package/dist/index.cjs
CHANGED
|
@@ -2330,7 +2330,7 @@ export * from './rules';
|
|
|
2330
2330
|
}
|
|
2331
2331
|
];
|
|
2332
2332
|
function copyStubs(options) {
|
|
2333
|
-
const { targetDir, skipIfExists =
|
|
2333
|
+
const { targetDir, skipIfExists = false } = options;
|
|
2334
2334
|
const stubsDir = import_path.default.join(__dirname, "..", "stubs");
|
|
2335
2335
|
const result = { copied: [], skipped: [] };
|
|
2336
2336
|
const directories = /* @__PURE__ */ new Map();
|