mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
delete decaffeinate.sh
This commit is contained in:
parent
c69429a794
commit
f60c247a22
1 changed files with 0 additions and 53 deletions
|
@ -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"
|
Loading…
Reference in a new issue