Skip to content

Commit e283314

Browse files
authored
feat: remove pnpm install arguments (#64)
* feat: remove pnpm install arguments * fix: build to dist * fix: pnpm arguments
1 parent 30f5c89 commit e283314

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

dist/version/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/version/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/utils/package-manager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { spawnSync } from './process'
44

55
const lockfileCommands = {
66
'yarn.lock': { command: 'yarn', args: ['--no-immutable'] },
7-
'pnpm-lock.yaml': { command: 'pnpm', args: ['--frozen-lockfile', 'false'] },
7+
'pnpm-lock.yaml': { command: 'pnpm', args: ['install', '--frozen-lockfile', 'false'] },
88
'package-lock.json': { command: 'npm', args: ['install'] },
99
}
1010

0 commit comments

Comments
 (0)