Skip to content
This repository was archived by the owner on Feb 21, 2024. It is now read-only.

Commit a00251d

Browse files
authored
build: exclude lockfile (#15)
1 parent 52e96ff commit a00251d

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tool/generator/main.dart

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@ void main() async {
2424
// Copy Project Files
2525
await Shell.cp(sourcePath, targetPath);
2626

27+
// Exclude lock file
28+
await Shell.rm(
29+
p.join(targetPath, 'very_good_docs_site', 'package-lock.json'),
30+
);
31+
2732
// Convert Values to Variables
2833
await Future.wait(
2934
Directory(p.join(targetPath, 'very_good_docs_site'))

0 commit comments

Comments
 (0)