update readme
parent
8d4d5b0280
commit
8c7b59e1e6
|
@ -1,2 +1,5 @@
|
||||||
# 更新日志(Changed Logs)
|
# 更新日志(Changed Logs)
|
||||||
|
|
||||||
|
### v1.0.0
|
||||||
|
- 支持微信小程序, vue项目的引入
|
||||||
|
- 以项目目录为根目录
|
24
README.md
24
README.md
|
@ -7,3 +7,27 @@
|
||||||
[![Build Status](https://travis-ci.org/yutent/auto-path.svg?branch=master)](https://travis-ci.org/yutent/auto-path)
|
[![Build Status](https://travis-ci.org/yutent/auto-path.svg?branch=master)](https://travis-ci.org/yutent/auto-path)
|
||||||
|
|
||||||
|
|
||||||
|
## 概念说明
|
||||||
|
|
||||||
|
- **根目录`/`**
|
||||||
|
> 这里的根目录不是系统的根目录, 而是当前vscode打开的项目的目录。
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## 支持情况
|
||||||
|
|
||||||
|
1. 小程序项目(微信)
|
||||||
|
> 打开项目时, 自动判断根目录中是否有`app.json`文件, 如果有, 则进一步判断是否有`pages`字段或`subPackages`, 有则识别当前项目为 小程序项目。
|
||||||
|
- 当输入 `./` 开头时, 读取当前目录下的文件。
|
||||||
|
- 当输入 `/`开头时, 只读取`pages`或`subPackages`中的路径。
|
||||||
|
|
||||||
|
2. vue项目
|
||||||
|
> 判断根目录是否有 `vue.config.js`或`vite.config.js`, 有则认为是vue项目。
|
||||||
|
- 当输入 `./` 开头时, 读取当前目录下的文件。
|
||||||
|
- 当输入 `@/`开头时, 只读取`src/`中的路径。
|
||||||
|
- 当输入 `/`开头时, 读取根目录的文件。
|
||||||
|
|
||||||
|
3. 常规项目
|
||||||
|
- 当输入 `./` 开头时, 读取当前目录下的文件。
|
||||||
|
- 当输入 `/`开头时, 读取根目录的文件。
|
|
@ -1,8 +1,8 @@
|
||||||
{
|
{
|
||||||
"name": "auth-path",
|
"name": "auto-path",
|
||||||
"displayName": "auth-path",
|
"displayName": "auto-path",
|
||||||
"description": "🔥 自动提示文件路径, 方便引入项目为的文件",
|
"description": "🔥 自动提示文件路径, 方便引入项目为的文件",
|
||||||
"version": "0.1.0",
|
"version": "1.0.0",
|
||||||
"publisher": "yutent",
|
"publisher": "yutent",
|
||||||
"author": "Yutent [@yutent]",
|
"author": "Yutent [@yutent]",
|
||||||
"icon": "logo.png",
|
"icon": "logo.png",
|
||||||
|
@ -15,7 +15,7 @@
|
||||||
"contributes": {},
|
"contributes": {},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/yutent/auth-path.git"
|
"url": "https://github.com/yutent/auto-path.git"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"autofile",
|
"autofile",
|
||||||
|
|
Loading…
Reference in New Issue