0.0.4 • Published 2 years ago

gangw v0.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

描述

使用

安装

pnpm i gangw

目录

gangw
├─ .eslintignore
├─ .eslintrc.json
├─ .husky
│  └─ _
│     └─ husky.sh
├─ .npmrc
├─ .nvmrc
├─ .prettierignore
├─ .prettierrc
├─ .vscode
│  ├─ extensions.json
│  └─ settings.json
├─ commitlint.config.js
├─ commitlint.config.ts
├─ examples
│  ├─ App.vue
│  ├─ index.html
│  ├─ main.ts
│  ├─ package.json
│  ├─ typings
│  │  └─ vue-shim.d.ts
│  └─ vite.config.ts
├─ global.d.ts
├─ internal
│  ├─ build
│  │  ├─ build.config.ts
│  │  ├─ gulpfile.ts
│  │  ├─ package.json
│  │  └─ src
│  │     ├─ build-info.ts
│  │     ├─ index.ts
│  │     ├─ plugins
│  │     │  └─ gangw-alias.ts
│  │     ├─ tasks
│  │     │  ├─ full-bundle.ts
│  │     │  ├─ index.ts
│  │     │  ├─ modules.ts
│  │     │  └─ types.ts
│  │     └─ utils
│  │        ├─ gulp.ts
│  │        ├─ index.ts
│  │        ├─ pkg.ts
│  │        ├─ process.ts
│  │        └─ rollup.ts
│  ├─ build-constants
│  │  ├─ build.config.ts
│  │  ├─ package.json
│  │  └─ src
│  │     ├─ index.ts
│  │     ├─ pkg.ts
│  │     └─ repo.ts
│  ├─ build-utils
│  │  ├─ build.config.ts
│  │  ├─ package.json
│  │  └─ src
│  │     ├─ fs.ts
│  │     ├─ index.ts
│  │     ├─ log.ts
│  │     ├─ paths.ts
│  │     └─ pkg.ts
│  └─ eslint-config
│     ├─ index.js
│     └─ package.json
├─ package.json
├─ packages
│  ├─ components
│  │  ├─ base
│  │  │  └─ style
│  │  │     ├─ css.ts
│  │  │     └─ index.ts
│  │  ├─ button
│  │  │  ├─ index.ts
│  │  │  ├─ src
│  │  │  │  ├─ button.ts
│  │  │  │  └─ button.vue
│  │  │  └─ style
│  │  │     ├─ css.ts
│  │  │     └─ index.ts
│  │  ├─ config-provider
│  │  │  ├─ index.ts
│  │  │  ├─ src
│  │  │  │  └─ config-provider.ts
│  │  │  └─ style
│  │  │     ├─ css.ts
│  │  │     └─ index.ts
│  │  ├─ icon
│  │  │  ├─ index.ts
│  │  │  ├─ src
│  │  │  │  ├─ icon.ts
│  │  │  │  └─ icon.vue
│  │  │  └─ style
│  │  │     ├─ css.ts
│  │  │     └─ index.ts
│  │  ├─ index.ts
│  │  └─ package.json
│  ├─ constants
│  │  ├─ index.ts
│  │  ├─ key.ts
│  │  └─ package.json
│  ├─ directives
│  │  ├─ click-outside
│  │  │  └─ index.ts
│  │  ├─ index.ts
│  │  └─ package.json
│  ├─ gangw
│  │  ├─ component.ts
│  │  ├─ defaults.ts
│  │  ├─ index.ts
│  │  ├─ make-installer.ts
│  │  ├─ package.json
│  │  └─ plugin.ts
│  ├─ hooks
│  │  ├─ index.ts
│  │  ├─ package.json
│  │  ├─ useCommonProps
│  │  │  └─ index.ts
│  │  ├─ useGlobalConfig
│  │  │  └─ index.ts
│  │  └─ useThrottle
│  │     └─ index.ts
│  ├─ locale
│  │  ├─ index.ts
│  │  ├─ lang
│  │  │  ├─ en.ts
│  │  │  └─ zh-cn.ts
│  │  └─ package.json
│  ├─ provides
│  │  ├─ config-provider.ts
│  │  ├─ features.ts
│  │  ├─ index.ts
│  │  └─ package.json
│  ├─ theme-chalk
│  │  ├─ gulpfile.ts
│  │  ├─ package.json
│  │  └─ src
│  │     ├─ base.scss
│  │     ├─ button.scss
│  │     ├─ common
│  │     │  ├─ fonts.scss
│  │     │  └─ icons.scss
│  │     ├─ config-provider.scss
│  │     ├─ fonts
│  │     │  ├─ mobile
│  │     │  └─ pc
│  │     │     ├─ wgfont.svg
│  │     │     ├─ wgfont.ttf
│  │     │     ├─ wgfont.woff
│  │     │     └─ wgfont.woff2
│  │     ├─ icon.scss
│  │     ├─ index.scss
│  │     ├─ mixins
│  │     │  └─ config.scss
│  │     └─ reset.scss
│  └─ utils
│     ├─ date.ts
│     ├─ dom.ts
│     ├─ error.ts
│     ├─ function.ts
│     ├─ index.ts
│     ├─ objects.ts
│     ├─ package.json
│     ├─ types.ts
│     └─ vue
│        ├─ index.ts
│        ├─ install.ts
│        ├─ props
│        │  ├─ index.ts
│        │  ├─ runtime.ts
│        │  ├─ types.ts
│        │  └─ util.ts
│        └─ typescript.ts
├─ pnpm-lock.yaml
├─ pnpm-workspace.yaml
├─ README.md
├─ tsconfig.base.json
├─ tsconfig.json
├─ tsconfig.node.json
├─ tsconfig.vite-config.json
├─ tsconfig.vitest.json
├─ tsconfig.web.json
├─ typings
│  ├─ components.d.ts
│  ├─ env.d.ts
│  └─ vue-test-utils.d.ts
├─ vitest.config.ts
└─ vitest.setup.ts