@tachybase/module-web 1.3.10 → 1.3.12

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/build.config.ts CHANGED
@@ -1,8 +1,7 @@
1
- import fs from 'fs/promises';
2
- import path from 'path';
3
- import { defineConfig } from '@tachybase/build';
4
-
5
- const existsSync = require('fs').existsSync;
1
+ import { existsSync } from 'node:fs';
2
+ import fs from 'node:fs/promises';
3
+ import path from 'node:path';
4
+ import { defineConfig } from '@tachybase/devkit';
6
5
 
7
6
  const client = path.dirname(require.resolve('@tachybase/client/package.json'));
8
7
  const antd = require.resolve('antd');
@@ -1,3 +1,2 @@
1
- import React from 'react';
2
1
  import './style';
3
- export declare const AntdSelect: React.MemoExoticComponent<import("@tachybase/schema").ReactFC<unknown>>;
2
+ export declare const AntdSelect: import("react").MemoExoticComponent<import("@tachybase/schema").ReactFC<unknown>>;