1
0
mirror of https://gitee.com/vant-contrib/vant.git synced 2025-04-06 03:57:59 +08:00

Revert "chore: adjust package entry file" ()

* fix: circular import

* Revert "chore: adjust package entry file ()"

This reverts commit c3f08f4637cc07c5e464811feab6d641b7b4471f.
This commit is contained in:
neverland 2021-10-08 17:35:19 +08:00 committed by GitHub
parent 00bb1d2f1f
commit a46d712bce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 3 deletions
packages/vant

@ -2,8 +2,8 @@
"name": "vant",
"version": "3.2.4",
"description": "Mobile UI Components built on Vue",
"main": "lib/vant.js",
"module": "lib/vant.es.js",
"main": "lib/index.js",
"module": "es/index.js",
"style": "lib/index.css",
"typings": "lib/index.d.ts",
"files": [

@ -1,4 +1,5 @@
import { isPromise, noop } from '.';
import { noop } from './basic';
import { isPromise } from './validate';
export type Interceptor = (...args: any[]) => Promise<boolean> | boolean;