This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #find serverless dir | |
| from pathlib import Path | |
| serverless_dir = Path("./serverless") | |
| if not serverless_dir.exists(): | |
| raise | |
| #find all of the folders in the root of serverless | |
| #except those that don't have customer-facing code | |
| skipped_dirs = ["node_modules", ".git", "docs", ".github", "test"] |