Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
MaggieMii committed Aug 22, 2024
2 parents d9cc449 + 530274b commit 5a3246f
Show file tree
Hide file tree
Showing 78 changed files with 21,075 additions and 55,469 deletions.
2 changes: 0 additions & 2 deletions .env.dev

This file was deleted.

1 change: 0 additions & 1 deletion .env.prod

This file was deleted.

1 change: 0 additions & 1 deletion .env.test

This file was deleted.

8 changes: 8 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
README.md
node_modules
.DS_Store
dist
dist-ssr
*.local
weapp.js
babel.config.js
16 changes: 16 additions & 0 deletions .hintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"extends": [
"development"
],
"hints": {
"compat-api/css": [
"default",
{
"ignore": [
"flex-direction",
"justify-content: space-evenly"
]
}
]
}
}
3 changes: 2 additions & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"plugins": ["prettier-plugin-organize-imports"],
"plugins": ["prettier-plugin-organize-imports", "prettier-plugin-tailwindcss"],
"tailwindFunctions": ["classNames"],
"trailingComma": "es5",
"semi": true,
"singleQuote": true,
Expand Down
3 changes: 0 additions & 3 deletions .vscode/settings.json

This file was deleted.

Binary file added .yarn/install-state.gz
Binary file not shown.
894 changes: 894 additions & 0 deletions .yarn/releases/yarn-4.3.1.cjs

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
nodeLinker: node-modules

yarnPath: .yarn/releases/yarn-4.3.1.cjs
21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

41 changes: 28 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,36 +1,51 @@
<div align="center">
<h1 align="center">muxiK-StackFrontend2.0</h1>

木犀课栈
<img width="130" src="https://github.com/muxiK-StackFrontend2.0.png" alt="muxiK-StackFrontend2.0 logo">
<h1 align="center">muxiK-StackFrontend2.0</h1>
<h3>muxiK-StackFrontend2.0</h3>
<a href="https://github.com/MuxiKeStack/muxiK-StackFrontend2.0"><strong>探索项目文档 »</strong></a>
<br />
<br />

![license](https://img.shields.io/github/license/MuxiKeStack/muxiK-StackFrontend2.0)
![language](https://img.shields.io/github/languages/top/MuxiKeStack/muxiK-StackFrontend2.0)
![last](https://img.shields.io/github/last-commit/MuxiKeStack/muxiK-StackFrontend2.0)

<a href="#" target="_blank">在线体验</a>
·
<a href="https://github.com/MuxiKeStack/muxiK-StackFrontend2.0/issues">报告Bug</a>
·
<a href="https://github.com/MuxiKeStack/muxiK-StackFrontend2.0/issues">提出新特性</a>

</div>

# :sparkles: 提交规范
## 🔖 项目导览

### ✨ 提交规范

- 🎉 init:项目初始化
- ✨ feat:新增功能(feature)
- 🐞 fix:修复bug
- 📃 docs:文档修改
- 🌈 style:代码样式调整,不影响代码逻辑
- 🌈 style:代码样式修改,不影响原代码逻辑
- ✅ test:测试相关的改动
- 🔨 refactor:代码重构
- 🔧 chore:构建过程或辅助工具的变动
- 🔧 chore:建制过程或辅助工具的变动

# :dart: 兼容环境
### 🎯 相容环境

- 现代浏览器(Chrome >= 64, Edge >= 79, Firefox >= 78, Safari >= 12)

# :computer: 本地调试
### 💻 本地调试

```bash
$ git clone https://github.com/MuxiKeStack/muxiK-StackFrontend2.0.git
$ cd muxiK-StackFrontend2.0
$ pnpm install
$ pnpm run dev:weapp
$ yarn
$ yarn dev:weapp
```

# :pencil: 授权
### 📝 授权

上述文件皆以 MIT 许可授权
上述文件皆以 ??? 许可授权

> 详细之授权请参照 [LICENSE](LICENSE) 文件
> 详细之授权请参考 [LICENSE](LICENSE) 文件
10 changes: 0 additions & 10 deletions __tests__/index.test.js

This file was deleted.

21 changes: 21 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,25 @@ module.exports = {
},
],
],
plugins: [
[
'import',
{
libraryName: '@taroify/core',
libraryDirectory: '',
style: true,
},
'@taroify/core',
],
[
'import',
{
libraryName: '@taroify/icons',
libraryDirectory: '',
camel2DashComponentName: false,
style: () => '@taroify/icons/style',
},
'@taroify/icons',
],
],
};
17 changes: 9 additions & 8 deletions config/dev.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import type { UserConfigExport } from '@tarojs/cli';

export default {
logger: {
quiet: false,
stats: true,
// eslint-disable-next-line import/no-commonjs
module.exports = {
env: {
NODE_ENV: '"development"',
},
defineConstants: {},
mini: {},
h5: {},
} satisfies UserConfigExport;
h5: {
esnextModules: ['taro-ui'],
},
};
Loading

0 comments on commit 5a3246f

Please sign in to comment.