2018-12-03 17:21:00 +00:00
|
|
|
set -ex
|
|
|
|
|
2018-12-21 18:55:29 +00:00
|
|
|
curl -o .eslintrc https://raw.githubusercontent.com/sharelatex/web-sharelatex/master/.eslintrc
|
|
|
|
curl -o .prettierrc https://raw.githubusercontent.com/sharelatex/web-sharelatex/master/.prettierrc
|
2018-12-13 21:55:47 +00:00
|
|
|
|
|
|
|
git add .
|
2018-12-20 18:56:51 +00:00
|
|
|
git commit -m "Decaffeinate: add eslint and prettier rc files"
|
2018-12-13 21:55:47 +00:00
|
|
|
|
2018-12-03 17:31:48 +00:00
|
|
|
npx bulk-decaffeinate convert --dir app/coffee
|
2018-12-03 17:21:00 +00:00
|
|
|
|
|
|
|
npx bulk-decaffeinate clean
|
|
|
|
|
2018-12-03 17:31:48 +00:00
|
|
|
git mv app/coffee app/js
|
2018-12-03 17:21:00 +00:00
|
|
|
|
2018-12-03 17:31:48 +00:00
|
|
|
git commit -m "Rename app/coffee dir to app/js"
|
2018-12-03 17:21:00 +00:00
|
|
|
|
2018-12-03 17:31:48 +00:00
|
|
|
npx prettier-eslint 'app/js/**/*.js' --write
|
2018-12-03 17:21:00 +00:00
|
|
|
|
|
|
|
git add .
|
2018-12-03 17:31:48 +00:00
|
|
|
git commit -m "Prettier: convert app/js decaffeinated files to Prettier format"
|
2018-12-03 17:21:00 +00:00
|
|
|
|
2018-12-03 17:31:48 +00:00
|
|
|
npx bulk-decaffeinate convert --dir test/acceptance/coffee
|
2018-12-03 17:21:00 +00:00
|
|
|
|
|
|
|
npx bulk-decaffeinate clean
|
|
|
|
|
2018-12-03 17:31:48 +00:00
|
|
|
git mv test/acceptance/coffee test/acceptance/js
|
2018-12-03 17:21:00 +00:00
|
|
|
|
2018-12-03 17:31:48 +00:00
|
|
|
git commit -m "Rename test/acceptance/coffee to test/acceptance/js"
|
2018-12-03 17:21:00 +00:00
|
|
|
|
2018-12-03 17:31:48 +00:00
|
|
|
npx prettier-eslint 'test/acceptance/js/**/*.js' --write
|
2018-12-03 17:21:00 +00:00
|
|
|
|
|
|
|
git add .
|
2018-12-03 17:31:48 +00:00
|
|
|
git commit -m "Prettier: convert test/acceptance decaffeinated files to Prettier format"
|
2018-12-03 17:21:00 +00:00
|
|
|
|
2018-12-03 18:24:54 +00:00
|
|
|
git mv app.coffee app.js
|
2018-12-04 12:44:59 +00:00
|
|
|
git mv Gruntfile.coffee Gruntfile.js
|
2018-12-03 18:24:54 +00:00
|
|
|
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
|
|
|
|
|
2018-12-13 21:59:55 +00:00
|
|
|
git add .
|
2018-12-03 18:24:54 +00:00
|
|
|
git commit -m "Decaffeinate: convert individual files to js"
|
|
|
|
|
2018-12-13 21:55:47 +00:00
|
|
|
npx prettier-eslint 'app.js' 'Gruntfile.js' 'config/settings.defaults.js' --write
|
2018-12-03 18:24:54 +00:00
|
|
|
|
2018-12-11 03:59:31 +00:00
|
|
|
git add .
|
2018-12-03 18:24:54 +00:00
|
|
|
git commit -m "Prettier: convert individual decaffeinated files to Prettier format"
|
|
|
|
|
2018-12-04 12:44:59 +00:00
|
|
|
echo "done"
|