├── .gitignore ├── CHANGELOG.md ├── README.md ├── appWatcher.js ├── cypressPreprocessor.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | node_modules 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBrainFamily/cypress-app-watcher-preprocessor/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBrainFamily/cypress-app-watcher-preprocessor/HEAD/README.md -------------------------------------------------------------------------------- /appWatcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBrainFamily/cypress-app-watcher-preprocessor/HEAD/appWatcher.js -------------------------------------------------------------------------------- /cypressPreprocessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBrainFamily/cypress-app-watcher-preprocessor/HEAD/cypressPreprocessor.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBrainFamily/cypress-app-watcher-preprocessor/HEAD/package.json --------------------------------------------------------------------------------