Skip to content

Commit cb6a8c3

Browse files
committed
use install instead of ci
1 parent 997aae6 commit cb6a8c3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

noxfile.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,9 @@ def prepare_javascript_release(session: Session) -> Callable[[bool], None]:
335335
if node_auth_token is None:
336336
session.error("NODE_AUTH_TOKEN environment variable must be set")
337337

338-
session.run("npm", "ci", external=True)
338+
# TODO: make this `ci` instead of `install` somehow. By default `npm install` at
339+
# workspace root does not generate a lockfile which is required by `npm ci`.
340+
session.run("npm", "install", external=True)
339341

340342
def publish(dry_run: bool) -> None:
341343
if dry_run:

0 commit comments

Comments
 (0)