mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 17:19:37 +02:00
delete decaffeinate.sh
This commit is contained in:
@@ -1,53 +0,0 @@
|
||||
set -ex
|
||||
|
||||
curl -o .eslintrc https://raw.githubusercontent.com/sharelatex/web-sharelatex/master/.eslintrc
|
||||
curl -o .prettierrc https://raw.githubusercontent.com/sharelatex/web-sharelatex/master/.prettierrc
|
||||
|
||||
git add .
|
||||
git commit -m "Decaffeinate: add eslint and prettier rc files"
|
||||
|
||||
npx bulk-decaffeinate convert --dir app/coffee
|
||||
|
||||
npx bulk-decaffeinate clean
|
||||
|
||||
git mv app/coffee app/js
|
||||
|
||||
git commit -m "Rename app/coffee dir to app/js"
|
||||
|
||||
npx prettier-eslint 'app/js/**/*.js' --write
|
||||
|
||||
git add .
|
||||
git commit -m "Prettier: convert app/js decaffeinated files to Prettier format"
|
||||
|
||||
npx bulk-decaffeinate convert --dir test/acceptance/coffee
|
||||
|
||||
npx bulk-decaffeinate clean
|
||||
|
||||
git mv test/acceptance/coffee test/acceptance/js
|
||||
|
||||
git commit -m "Rename test/acceptance/coffee to test/acceptance/js"
|
||||
|
||||
npx prettier-eslint 'test/acceptance/js/**/*.js' --write
|
||||
|
||||
git add .
|
||||
git commit -m "Prettier: convert test/acceptance decaffeinated files to Prettier format"
|
||||
|
||||
git mv app.coffee app.js
|
||||
git mv Gruntfile.coffee Gruntfile.js
|
||||
git mv config/settings.defaults.coffee config/settings.defaults.js
|
||||
|
||||
git commit -m "Rename individual coffee files to js files"
|
||||
|
||||
decaffeinate app.js
|
||||
decaffeinate Gruntfile.js
|
||||
decaffeinate config/settings.defaults.js
|
||||
|
||||
git add .
|
||||
git commit -m "Decaffeinate: convert individual files to js"
|
||||
|
||||
npx prettier-eslint 'app.js' 'Gruntfile.js' 'config/settings.defaults.js' --write
|
||||
|
||||
git add .
|
||||
git commit -m "Prettier: convert individual decaffeinated files to Prettier format"
|
||||
|
||||
echo "done"
|
||||
Reference in New Issue
Block a user