Skip to content

Commit

Permalink
fix: should sync package deps by default
Browse files Browse the repository at this point in the history
  • Loading branch information
fengmk2 committed Feb 9, 2023
1 parent 144f1b3 commit c2fd4b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/common/adapter/NPMRegistry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export class NPMRegistry {

// app.put('/:name/sync', sync.sync);
public async createSyncTask(fullname: string): Promise<RegistryResponse> {
const url = `${this.registry}/${encodeURIComponent(fullname)}/sync?sync_upstream=true&nodeps=true`;
const url = `${this.registry}/${encodeURIComponent(fullname)}/sync?sync_upstream=true`;
// {
// ok: true,
// logId: logId
Expand Down

0 comments on commit c2fd4b8

Please sign in to comment.