(args)
| 71 | } |
| 72 | |
| 73 | async change (args) { |
| 74 | const libnpmversion = require('libnpmversion') |
| 75 | const prefix = this.npm.config.get('tag-version-prefix') |
| 76 | const version = await libnpmversion(args[0], { |
| 77 | ...this.npm.flatOptions, |
| 78 | path: this.npm.prefix, |
| 79 | }) |
| 80 | return output.standard(`${prefix}${version}`) |
| 81 | } |
| 82 | |
| 83 | async changeWorkspaces (args) { |
| 84 | const updateWorkspaces = require('../utils/update-workspaces.js') |