├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .prettierrc.js ├── LICENSE ├── README.md ├── example ├── .eslintignore ├── .eslintrc ├── .gitignore ├── index.html ├── package.json ├── src │ ├── App.css │ ├── App.tsx │ ├── favicon.svg │ ├── index.css │ ├── main.tsx │ └── vite-env.d.ts ├── tsconfig.json └── vite.config.ts ├── package.json ├── src ├── antd-plugin.ts └── index.ts └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | pkg 3 | /*.js 4 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekocode/antd-dayjs-vite-plugin/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekocode/antd-dayjs-vite-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekocode/antd-dayjs-vite-plugin/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekocode/antd-dayjs-vite-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekocode/antd-dayjs-vite-plugin/HEAD/README.md -------------------------------------------------------------------------------- /example/.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | /*.js 4 | -------------------------------------------------------------------------------- /example/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekocode/antd-dayjs-vite-plugin/HEAD/example/.eslintrc -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekocode/antd-dayjs-vite-plugin/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekocode/antd-dayjs-vite-plugin/HEAD/example/index.html -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekocode/antd-dayjs-vite-plugin/HEAD/example/package.json -------------------------------------------------------------------------------- /example/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekocode/antd-dayjs-vite-plugin/HEAD/example/src/App.css -------------------------------------------------------------------------------- /example/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekocode/antd-dayjs-vite-plugin/HEAD/example/src/App.tsx -------------------------------------------------------------------------------- /example/src/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekocode/antd-dayjs-vite-plugin/HEAD/example/src/favicon.svg -------------------------------------------------------------------------------- /example/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekocode/antd-dayjs-vite-plugin/HEAD/example/src/index.css -------------------------------------------------------------------------------- /example/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekocode/antd-dayjs-vite-plugin/HEAD/example/src/main.tsx -------------------------------------------------------------------------------- /example/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekocode/antd-dayjs-vite-plugin/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /example/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekocode/antd-dayjs-vite-plugin/HEAD/example/vite.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekocode/antd-dayjs-vite-plugin/HEAD/package.json -------------------------------------------------------------------------------- /src/antd-plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekocode/antd-dayjs-vite-plugin/HEAD/src/antd-plugin.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekocode/antd-dayjs-vite-plugin/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekocode/antd-dayjs-vite-plugin/HEAD/tsconfig.json --------------------------------------------------------------------------------