You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# check all package.json and package-lock.json are matching
8
+
check-package-files:
9
+
@echo "Validation package.json files..."
10
+
@for pkg in$(PKG_FILES);do\
11
+
! ./bin/md5-hash $$pkg | grep -qv $(SOURCE_PKG_MD5)|| { echo"$$pkg does not match main package.json. Please run 'make sync-package-files' locally and commit the results.";exit 1; };\
12
+
done
13
+
@echo "Validation package-lock.json files..."
14
+
@for pkg in$(PKG_LOCK_FILES);do\
15
+
! ./bin/md5-hash $$pkg | grep -qv $(SOURCE_PKG_LOCK_MD5)|| { echo"$$pkg does not match main package.json. Please run 'make sync-package-files' locally and commit the results.";exit 1; };\
16
+
done
17
+
@echo "package-file check complete..."
18
+
19
+
# copy package.json and package-lock.json for single exercise
0 commit comments