mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-24 17:51:51 +02:00
Two Factor Authentication for Staff GitOrigin-RevId: 7028e93cb4a4cd88c138a52b0528817056b930d9
37 lines
1.0 KiB
Bash
Executable File
37 lines
1.0 KiB
Bash
Executable File
npx jscodeshift \
|
|
-t transform.js \
|
|
--ignore-pattern=frontend/js/libraries.js \
|
|
--ignore-pattern=frontend/js/vendor \
|
|
frontend/js
|
|
|
|
npx jscodeshift \
|
|
-t transform.js \
|
|
--ignore-pattern=test/frontend/import_tests.js \
|
|
test/frontend
|
|
|
|
for MODULE in admin-panel cms dropbox git-bridge github-sync launchpad metrics open-in-overleaf overleaf-integration portals references-search support templates tpr-webmodule v2-templates two-factor-authentication
|
|
do
|
|
npx jscodeshift \
|
|
-t transform.js \
|
|
modules/$MODULE/frontend/js
|
|
done
|
|
|
|
npx jscodeshift \
|
|
-t transform.js \
|
|
--ignore-pattern=modules/rich-text/frontend/js/ide/controllers/editor_loader_controller.js \
|
|
modules/rich-text/frontend/js
|
|
|
|
npx jscodeshift \
|
|
-t transform.js \
|
|
modules/rich-text/test/frontend
|
|
|
|
npx jscodeshift \
|
|
-t transform.js \
|
|
--ignore-pattern=modules/publish-modal/frontend/js/ide/controllers/PublishController.js \
|
|
modules/publish-modal/frontend/js
|
|
|
|
npx jscodeshift \
|
|
-t transform.js \
|
|
modules/publish-modal/test/frontend
|
|
|
|
make format_fix |