You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This will clone the hubot repo, configure it to allow JS files, convert the
project to JS using decaffeinate, and run all tests. If all goes well, all files
should convert successfully and all tests should pass.
Adding new projects
A new project can be added by adding a new subdirectory to the
examples directory. Each project should have the following:
A file called config.js exporting an object. That object should have a
cloneUrl field with the clone URL of the relevant repo, an
extraDependencies field for any additional packages to npm install, and
can opt into a "default config" that installs babel and eslint with
reasonable defaults.
A bulk-decaffeinate.config.js file that will be used for the decaffeinate
process.
Optionally, a .gitignore_extension file that is added to the end of the
.gitignore.
A file called decaffeinate.patch that applies a patch to the repo so that
tests can be run in JavaScript using npm test.
In general, this format is designed to be easy to read and modify; the patch
file should hopefully be as minimal as possible.
About
A tool to automatically run decaffeinate on some open source projects