@vef-framework/dev 1.0.99 → 1.0.101

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.
Files changed (53) hide show
  1. package/es/cli.js +3 -3
  2. package/es/commitlint-config.js +1 -1
  3. package/es/config.js +1 -1
  4. package/es/constants.js +1 -1
  5. package/es/eslint-config.js +1 -1
  6. package/es/index.js +1 -1
  7. package/es/modules.d.js +1 -1
  8. package/es/plugin-app-config.js +1 -1
  9. package/es/plugin-conventional-config.js +1 -1
  10. package/es/plugin-eslint.js +1 -1
  11. package/es/plugin-html.js +1 -1
  12. package/es/plugin-icons.js +1 -1
  13. package/es/plugin-injection.js +1 -1
  14. package/es/plugin-inspect.js +1 -1
  15. package/es/plugin-react-swc.js +1 -1
  16. package/es/plugin-router.js +1 -1
  17. package/es/plugin-stylelint.js +1 -1
  18. package/es/plugin-svgr.js +1 -1
  19. package/es/plugin-tailwind.js +1 -1
  20. package/es/plugin-tailwindcss.js +1 -1
  21. package/es/plugin-tsconfig-paths.js +1 -1
  22. package/es/plugin-visualizer.js +1 -1
  23. package/es/plugin-webfont.js +1 -1
  24. package/es/stylelint-config.js +1 -1
  25. package/es/tailwind-config.js +1 -1
  26. package/lib/cli.cjs +3 -3
  27. package/lib/commitlint-config.cjs +1 -1
  28. package/lib/config.cjs +1 -1
  29. package/lib/constants.cjs +1 -1
  30. package/lib/eslint-config.cjs +1 -1
  31. package/lib/index.cjs +1 -1
  32. package/lib/modules.d.cjs +1 -1
  33. package/lib/plugin-app-config.cjs +1 -1
  34. package/lib/plugin-conventional-config.cjs +1 -1
  35. package/lib/plugin-eslint.cjs +1 -1
  36. package/lib/plugin-html.cjs +1 -1
  37. package/lib/plugin-icons.cjs +1 -1
  38. package/lib/plugin-injection.cjs +1 -1
  39. package/lib/plugin-inspect.cjs +1 -1
  40. package/lib/plugin-react-swc.cjs +1 -1
  41. package/lib/plugin-router.cjs +1 -1
  42. package/lib/plugin-stylelint.cjs +1 -1
  43. package/lib/plugin-svgr.cjs +1 -1
  44. package/lib/plugin-tailwind.cjs +1 -1
  45. package/lib/plugin-tailwindcss.cjs +1 -1
  46. package/lib/plugin-tsconfig-paths.cjs +1 -1
  47. package/lib/plugin-visualizer.cjs +1 -1
  48. package/lib/plugin-webfont.cjs +1 -1
  49. package/lib/stylelint-config.cjs +1 -1
  50. package/lib/tailwind-config.cjs +1 -1
  51. package/lib/types.cjs +1 -1
  52. package/package.json +1 -1
  53. package/template/_package.json +5 -5
package/es/cli.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:56.143Z, made by Venus. */
1
+ /*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.261Z, made by Venus. */
2
2
  import chalk from 'chalk';
3
3
  import { program } from 'commander';
4
4
  import consola from 'consola';
@@ -217,8 +217,8 @@ program.command("init").description("Initialize an empty VEF project").action(as
217
217
  spinner.fail("Failed to install dependencies");
218
218
  handleError("init", e);
219
219
  }
220
- consola.success(chalk.green("\n\u{1F389}\u{1F389}\u{1F389} VEF project created successfully !"));
221
- console.log(chalk.blue("\n\u2728 Next steps:"));
220
+ consola.success(chalk.green("\n🎉🎉🎉 VEF project created successfully !"));
221
+ console.log(chalk.blue("\n Next steps:"));
222
222
  console.log(chalk.cyan(` cd ${appName}`));
223
223
  console.log(chalk.cyan(` pnpm dev`));
224
224
  });
@@ -1,4 +1,4 @@
1
- /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:56.143Z, made by Venus. */
1
+ /*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.261Z, made by Venus. */
2
2
  function defineCommitlintConfig() {
3
3
  return {
4
4
  extends: [
package/es/config.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:56.143Z, made by Venus. */
1
+ /*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.261Z, made by Venus. */
2
2
  import consola from 'consola';
3
3
  import fsExtra from 'fs-extra';
4
4
  import { resolve } from 'node:path';
package/es/constants.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:56.143Z, made by Venus. */
1
+ /*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.261Z, made by Venus. */
2
2
  const PUBLIC_DIR = "public";
3
3
  const ENV_DIR = "env";
4
4
  const ASSETS_DIR = "assets";
@@ -1,4 +1,4 @@
1
- /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:56.143Z, made by Venus. */
1
+ /*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.261Z, made by Venus. */
2
2
  import { antfu } from '@antfu/eslint-config';
3
3
  import pluginRouter from '@tanstack/eslint-plugin-router';
4
4
 
package/es/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:56.143Z, made by Venus. */
1
+ /*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.261Z, made by Venus. */
2
2
  export { defineCommitlintConfig } from './commitlint-config.js';
3
3
  export { defineConfig } from './config.js';
4
4
  export { defineEslintConfig } from './eslint-config.js';
package/es/modules.d.js CHANGED
@@ -1,3 +1,3 @@
1
- /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:56.143Z, made by Venus. */
1
+ /*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.261Z, made by Venus. */
2
2
 
3
3
  /*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
@@ -1,4 +1,4 @@
1
- /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:56.143Z, made by Venus. */
1
+ /*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.261Z, made by Venus. */
2
2
  import { snake } from 'radashi';
3
3
  import config from 'unplugin-config/vite';
4
4
  import { ENV_APP_PREFIX, DEFAULT_OUTPUT_DIR, DEFAULT_APP_NAME } from './constants.js';
@@ -1,4 +1,4 @@
1
- /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:56.143Z, made by Venus. */
1
+ /*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.261Z, made by Venus. */
2
2
  import process from 'node:process';
3
3
  import { DEFAULT_SERVER_PORT, ASSETS_DIR, DEFAULT_OUTPUT_DIR, DEFAULT_APP_NAME, ENV_BUILD_PREFIX, ENV_APP_PREFIX, ENV_DIR } from './constants.js';
4
4
 
@@ -1,4 +1,4 @@
1
- /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:56.143Z, made by Venus. */
1
+ /*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.261Z, made by Venus. */
2
2
  import eslint from 'vite-plugin-eslint2';
3
3
 
4
4
  function createEslintPlugin() {
package/es/plugin-html.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:56.143Z, made by Venus. */
1
+ /*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.261Z, made by Venus. */
2
2
  import { minify } from 'html-minifier-terser';
3
3
 
4
4
  const virtualModuleId = "index.html";
@@ -1,4 +1,4 @@
1
- /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:56.143Z, made by Venus. */
1
+ /*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.261Z, made by Venus. */
2
2
  import { resolve, dirname } from 'node:path';
3
3
  import { fileURLToPath } from 'node:url';
4
4
  import icons from 'unplugin-icons/vite';
@@ -1,4 +1,4 @@
1
- /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:56.143Z, made by Venus. */
1
+ /*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.261Z, made by Venus. */
2
2
  import { basename, dirname } from 'node:path';
3
3
 
4
4
  function createInjectionPlugin() {
@@ -1,4 +1,4 @@
1
- /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:56.143Z, made by Venus. */
1
+ /*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.261Z, made by Venus. */
2
2
  import inspect from 'vite-plugin-inspect';
3
3
 
4
4
  function createInspectPlugin() {
@@ -1,4 +1,4 @@
1
- /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:56.143Z, made by Venus. */
1
+ /*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.261Z, made by Venus. */
2
2
  import react from '@vitejs/plugin-react-swc';
3
3
 
4
4
  function createReactSwcPlugin() {
@@ -1,4 +1,4 @@
1
- /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:56.143Z, made by Venus. */
1
+ /*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.261Z, made by Venus. */
2
2
  import { TanStackRouterVite } from '@tanstack/router-plugin/vite';
3
3
  import { resolve } from 'node:path';
4
4
  import { SRC_DIR, ROUTER_DIR, PAGES_DIR } from './constants.js';
@@ -1,4 +1,4 @@
1
- /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:56.143Z, made by Venus. */
1
+ /*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.261Z, made by Venus. */
2
2
  import stylelint from 'vite-plugin-stylelint';
3
3
 
4
4
  function createStylelintPlugin() {
package/es/plugin-svgr.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:56.143Z, made by Venus. */
1
+ /*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.261Z, made by Venus. */
2
2
  import svgr from 'vite-plugin-svgr';
3
3
 
4
4
  function createSvgrPlugin() {
@@ -1,4 +1,4 @@
1
- /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:56.143Z, made by Venus. */
1
+ /*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.261Z, made by Venus. */
2
2
  import tailwindcss from '@tailwindcss/vite';
3
3
 
4
4
  function createTailwindPlugin() {
@@ -1,4 +1,4 @@
1
- /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:56.143Z, made by Venus. */
1
+ /*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.261Z, made by Venus. */
2
2
  const virtualModuleId = "vef:tailwind.css";
3
3
  const resolvedVirtualModuleId = `\0${virtualModuleId}`;
4
4
  function createTailwindcssPlugin() {
@@ -1,4 +1,4 @@
1
- /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:56.143Z, made by Venus. */
1
+ /*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.261Z, made by Venus. */
2
2
  import tsconfigPaths from 'vite-tsconfig-paths';
3
3
 
4
4
  function createTsconfigPathsPlugin(projectDir) {
@@ -1,4 +1,4 @@
1
- /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:56.143Z, made by Venus. */
1
+ /*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.261Z, made by Venus. */
2
2
  import { visualizer } from 'rollup-plugin-visualizer';
3
3
 
4
4
  function createVisualizerPlugin(projectDir) {
@@ -1,4 +1,4 @@
1
- /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:56.143Z, made by Venus. */
1
+ /*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.261Z, made by Venus. */
2
2
  import webfont from 'vite-plugin-webfont-dl';
3
3
 
4
4
  function createWebfontPlugin() {
@@ -1,4 +1,4 @@
1
- /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:56.143Z, made by Venus. */
1
+ /*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.261Z, made by Venus. */
2
2
  import propertyGroups from 'stylelint-config-recess-order/groups';
3
3
 
4
4
  function defineStylelintConfig() {
@@ -1,4 +1,4 @@
1
- /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:56.143Z, made by Venus. */
1
+ /*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.261Z, made by Venus. */
2
2
  import containerQueries from '@tailwindcss/container-queries';
3
3
  import colors from 'tailwindcss/colors';
4
4
 
package/lib/cli.cjs CHANGED
@@ -1,4 +1,4 @@
1
- /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:56.143Z, made by Venus. */
1
+ /*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.261Z, made by Venus. */
2
2
  'use strict';
3
3
 
4
4
  const chalk = require('chalk');
@@ -219,8 +219,8 @@ commander.program.command("init").description("Initialize an empty VEF project")
219
219
  spinner.fail("Failed to install dependencies");
220
220
  handleError("init", e);
221
221
  }
222
- consola.success(chalk.green("\n\u{1F389}\u{1F389}\u{1F389} VEF project created successfully !"));
223
- console.log(chalk.blue("\n\u2728 Next steps:"));
222
+ consola.success(chalk.green("\n🎉🎉🎉 VEF project created successfully !"));
223
+ console.log(chalk.blue("\n Next steps:"));
224
224
  console.log(chalk.cyan(` cd ${appName}`));
225
225
  console.log(chalk.cyan(` pnpm dev`));
226
226
  });
@@ -1,4 +1,4 @@
1
- /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:56.143Z, made by Venus. */
1
+ /*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.261Z, made by Venus. */
2
2
  'use strict';
3
3
 
4
4
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
package/lib/config.cjs CHANGED
@@ -1,4 +1,4 @@
1
- /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:56.143Z, made by Venus. */
1
+ /*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.261Z, made by Venus. */
2
2
  'use strict';
3
3
 
4
4
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
package/lib/constants.cjs CHANGED
@@ -1,4 +1,4 @@
1
- /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:56.143Z, made by Venus. */
1
+ /*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.261Z, made by Venus. */
2
2
  'use strict';
3
3
 
4
4
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
@@ -1,4 +1,4 @@
1
- /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:56.143Z, made by Venus. */
1
+ /*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.261Z, made by Venus. */
2
2
  'use strict';
3
3
 
4
4
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
package/lib/index.cjs CHANGED
@@ -1,4 +1,4 @@
1
- /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:56.143Z, made by Venus. */
1
+ /*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.261Z, made by Venus. */
2
2
  'use strict';
3
3
 
4
4
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
package/lib/modules.d.cjs CHANGED
@@ -1,4 +1,4 @@
1
- /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:56.143Z, made by Venus. */
1
+ /*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.261Z, made by Venus. */
2
2
  'use strict';
3
3
 
4
4
 
@@ -1,4 +1,4 @@
1
- /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:56.143Z, made by Venus. */
1
+ /*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.261Z, made by Venus. */
2
2
  'use strict';
3
3
 
4
4
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
@@ -1,4 +1,4 @@
1
- /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:56.143Z, made by Venus. */
1
+ /*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.261Z, made by Venus. */
2
2
  'use strict';
3
3
 
4
4
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
@@ -1,4 +1,4 @@
1
- /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:56.143Z, made by Venus. */
1
+ /*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.261Z, made by Venus. */
2
2
  'use strict';
3
3
 
4
4
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
@@ -1,4 +1,4 @@
1
- /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:56.143Z, made by Venus. */
1
+ /*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.261Z, made by Venus. */
2
2
  'use strict';
3
3
 
4
4
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
@@ -1,4 +1,4 @@
1
- /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:56.143Z, made by Venus. */
1
+ /*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.261Z, made by Venus. */
2
2
  'use strict';
3
3
 
4
4
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
@@ -1,4 +1,4 @@
1
- /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:56.143Z, made by Venus. */
1
+ /*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.261Z, made by Venus. */
2
2
  'use strict';
3
3
 
4
4
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
@@ -1,4 +1,4 @@
1
- /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:56.143Z, made by Venus. */
1
+ /*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.261Z, made by Venus. */
2
2
  'use strict';
3
3
 
4
4
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
@@ -1,4 +1,4 @@
1
- /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:56.143Z, made by Venus. */
1
+ /*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.261Z, made by Venus. */
2
2
  'use strict';
3
3
 
4
4
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
@@ -1,4 +1,4 @@
1
- /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:56.143Z, made by Venus. */
1
+ /*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.261Z, made by Venus. */
2
2
  'use strict';
3
3
 
4
4
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
@@ -1,4 +1,4 @@
1
- /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:56.143Z, made by Venus. */
1
+ /*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.261Z, made by Venus. */
2
2
  'use strict';
3
3
 
4
4
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
@@ -1,4 +1,4 @@
1
- /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:56.143Z, made by Venus. */
1
+ /*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.261Z, made by Venus. */
2
2
  'use strict';
3
3
 
4
4
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
@@ -1,4 +1,4 @@
1
- /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:56.143Z, made by Venus. */
1
+ /*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.261Z, made by Venus. */
2
2
  'use strict';
3
3
 
4
4
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
@@ -1,4 +1,4 @@
1
- /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:56.143Z, made by Venus. */
1
+ /*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.261Z, made by Venus. */
2
2
  'use strict';
3
3
 
4
4
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
@@ -1,4 +1,4 @@
1
- /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:56.143Z, made by Venus. */
1
+ /*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.261Z, made by Venus. */
2
2
  'use strict';
3
3
 
4
4
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
@@ -1,4 +1,4 @@
1
- /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:56.143Z, made by Venus. */
1
+ /*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.261Z, made by Venus. */
2
2
  'use strict';
3
3
 
4
4
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
@@ -1,4 +1,4 @@
1
- /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:56.143Z, made by Venus. */
1
+ /*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.261Z, made by Venus. */
2
2
  'use strict';
3
3
 
4
4
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
@@ -1,4 +1,4 @@
1
- /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:56.143Z, made by Venus. */
1
+ /*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.261Z, made by Venus. */
2
2
  'use strict';
3
3
 
4
4
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
@@ -1,4 +1,4 @@
1
- /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:56.143Z, made by Venus. */
1
+ /*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.261Z, made by Venus. */
2
2
  'use strict';
3
3
 
4
4
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
package/lib/types.cjs CHANGED
@@ -1,4 +1,4 @@
1
- /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:56.143Z, made by Venus. */
1
+ /*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.261Z, made by Venus. */
2
2
  'use strict';
3
3
 
4
4
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vef-framework/dev",
3
3
  "type": "module",
4
- "version": "1.0.99",
4
+ "version": "1.0.101",
5
5
  "private": false,
6
6
  "packageManager": "pnpm@9.15.0",
7
7
  "description": "The development tools of the VEF framework",
@@ -18,11 +18,11 @@
18
18
  },
19
19
  "dependencies": {
20
20
  "@tanstack/react-router": "^1.0.0",
21
- "@vef-framework/components": "1.0.99",
22
- "@vef-framework/core": "1.0.99",
23
- "@vef-framework/hooks": "1.0.99",
24
- "@vef-framework/shared": "1.0.99",
25
- "@vef-framework/starter": "1.0.99",
21
+ "@vef-framework/components": "1.0.101",
22
+ "@vef-framework/core": "1.0.101",
23
+ "@vef-framework/hooks": "1.0.101",
24
+ "@vef-framework/shared": "1.0.101",
25
+ "@vef-framework/starter": "1.0.101",
26
26
  "react": "18.3.1",
27
27
  "react-dom": "18.3.1",
28
28
  "zod": "^3.0.0"