@ywfe/fe-tools 1.2.1-beta.1 → 1.2.1-beta.10

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "private": false,
3
3
  "name": "@ywfe/fe-tools",
4
- "version": "1.2.1-beta.1",
4
+ "version": "1.2.1-beta.10",
5
5
  "description": "工具函数库",
6
6
  "main": "./lib/ywfe-tools.cjs",
7
7
  "module": "./lib/ywfe-tools.esm.js",
@@ -12,7 +12,6 @@
12
12
  "prepublishOnly": "npm run build && npm run build:type",
13
13
  "test": "jest --coverage"
14
14
  },
15
- "repository": "ywfe",
16
15
  "author": {
17
16
  "name": "YWFE",
18
17
  "email": "ywfe@ywwl.com",
package/request.ts CHANGED
@@ -17,7 +17,7 @@ async function request({input}:{input:RequestOptions}){
17
17
  const env = '{{env}}';
18
18
  return basePathMap.get(env);
19
19
  };
20
- const isValidURL = (url)=> {
20
+ const isValidURL = (url:string)=> {
21
21
  var pattern = new RegExp(
22
22
  '^(https?:\\/\\/)?' + // protocol
23
23
  '((([a-z\\d]([a-z\\d-]*[a-z\\d])*)\\.)+[a-z]{2,}|' + // domain name
package/rollup.config.js CHANGED
@@ -39,7 +39,7 @@ const formats = {
39
39
 
40
40
  const config = {
41
41
  input: './index.ts',
42
- inlineDynamicImports: true,
42
+ // inlineDynamicImports: true,
43
43
  output: [formats.esm, formats.commonjs],
44
44
  external: ['react', 'react-dom'],
45
45
  plugins: [
@@ -49,9 +49,6 @@ const config = {
49
49
  progress({
50
50
  clearLine: false,
51
51
  }),
52
- replace({
53
- NODE_ENV: JSON.stringify(process.env.NODE_ENV || 'development'),
54
- }),
55
52
  nodeResolver(),
56
53
  commonjs(),
57
54
  typescript(),
@@ -1,17 +1,24 @@
1
+ import {request} from './index'
1
2
  // Ctrl-S保存代码
2
3
  interface userInput {
3
- userInput?:string,
4
- rules?:string,
4
+ userInput?: string;
5
+ rules?: string;
5
6
  }
6
- async function userInputToJson({input}:{input:userInput}){
7
- const {userInput, rules} = input
8
- //@ts-ignore
9
- const res = await feTools.request({
10
- input:{
11
- url:"https://fc-typechat.ywwl.com/userInputToJson",
12
- method:"GET"
13
- }
14
- })
15
- return res;
7
+ async function userInputToJson({ input }: { input: userInput }) {
8
+ console.log("input", input);
9
+ const res: { message: string; success: boolean; data: any } =
10
+ await request({
11
+ input: {
12
+ url: "https://fc-typechat.ywwl.com/userInputToJson",
13
+ method: "GET",
14
+ params: input,
15
+ },
16
+ });
17
+ if (res.success) {
18
+ const result = res.data;
19
+ return result.success ? result.data : result;
20
+ } else {
21
+ return res.success ? res.data : res;
22
+ }
16
23
  }
17
24
  export default userInputToJson