Skip to content
Merged
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
11 changes: 10 additions & 1 deletion ng-dev/release/snapshot-publish/snapshots.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,16 @@ interface SnapshotRepo {
/**
* Paths to exclude from the snapshot commit.
*/
const PATHS_TO_EXCLUDE = ['**/MODULE.bazel.lock', '**/package-lock.json', '**/pubspec.lock'];
const PATHS_TO_EXCLUDE = [
'MODULE.bazel.lock',
'**/MODULE.bazel.lock',

'pnpm-lock.yaml',
'**/pnpm-lock.yaml',

'pubspec.lock',
'**/pubspec.lock',
];

export class SnapshotPublisher {
/** The current branch name. */
Expand Down
Loading