* Move diff-circular-deps to dedicated script * Update package.json Co-authored-by: Jace Browning <jacebrowning@gmail.com> * Fix ci --------- Co-authored-by: Jace Browning <jacebrowning@gmail.com>
6 lines
173 B
Bash
Executable File
6 lines
173 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
yarn circular-deps | sed '$d' | grep -v '^yarn run' | tr -d '\n' > /tmp/circular-deps.txt
|
|
diff -w /tmp/circular-deps.txt ./known-circular.txt
|