12 lines
243 B
Bash
Executable File
12 lines
243 B
Bash
Executable File
#!/bin/bash
|
|
sync() (
|
|
cd "packages/$1" && git diff HEAD > "../../patch/$1.patch"
|
|
)
|
|
|
|
sync eslint-import-resolver-typescript
|
|
sync eslint-plugin-import
|
|
sync eslint-plugin-jsx-a11y
|
|
sync eslint-plugin-n
|
|
sync eslint-plugin-react
|
|
sync jsx-ast-utils
|