a82c7cbf71
Co-authored-by: Aaron <aaronklinker1@gmail.com>
10 lines
268 B
Bash
Executable File
10 lines
268 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#
|
|
# Generate code in README.md and sync it with wxt/packages/README.md for NPM
|
|
#
|
|
|
|
pnpm dlx automd
|
|
echo "<!-- DO NOT EDIT, THIS FILE WAS GENERATED BY '../../scripts/generate-readmes.sh' -->" > packages/wxt/README.md
|
|
cat README.md >> packages/wxt/README.md
|