Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/dev-guide/generator-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ The version string for the **project local** `@vue/cli-service` version that is
## resolve

- **Arguments**
- `{string} _path` - relative path from project root
- `{string} ..._paths` - A sequence of relative paths or path segments

- **Returns**
- `{string}`- the resolved absolute path
- `{string}`- the resolved absolute path, caculated based on the current project root

- **Usage**:
Resolve a path for the current project
Expand Down
8 changes: 4 additions & 4 deletions packages/@vue/cli/lib/GeneratorAPI.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,11 @@ class GeneratorAPI {
/**
* Resolve path for a project.
*
* @param {string} _path - Relative path from project root
* @return {string} The resolved absolute path.
* @param {string} _paths - A sequence of relative paths or path segments
* @return {string} The resolved absolute path, caculated based on the current project root.
*/
resolve (_path) {
return path.resolve(this.generator.context, _path)
resolve (..._paths) {
return path.resolve(this.generator.context, ..._paths)
}

get cliVersion () {
Expand Down