ソースからビルドする
リポジトリをクローンしてビルドする。
$ cd /usr/local/src $ git clone https://github.com/atom/atom.git $ cd atom $ ./script/build --install
クリーンな状態から再ビルドする。
$ ./script/clean && ./script/build --install
ビルド済みのバイナリを再インストールする。
$ ./script/build --install --no-bootstrap --existing-binaries
開発モードでエディタを起動する。
$ atom --dev .
参考:
Hacking on Atom Core | Atom Flight Manual [Official]
How to edit core files in Atom Editor – Stack Overflow
Windows でビルドする
参考:
Windows 8 で Atom をビルドするメモ – Qiita
Atom for Windows のビルドに成功した | Thanks Driven Life
windows platform scipt/build error · Issue #17122 · atom/atom – GitHub
ATOM build fails. script\build. windows 10 – Atom Discussion
Windows 用インストーラーを作成する
--create-windows-installer
オプションを付けて build
スクリプトを実行する。
$ ./script/build --create-windows-installer
out
ディレクトリの下に AtomSetup-x64.exe
が生成される。
参考:
Issue building atom on Windows · Issue #14264 · atom/atom – GitHub