7 lines
195 B
Bash
Executable File
7 lines
195 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Workaround for yarn workspace
|
|
cat ./package.json ./package.patch.json | npx json --deep-merge | tee ./package.json.temp
|
|
mv ./package.json.temp ./package.json
|
|
npx sort-package-json
|