Releases: noseglid/atom-build
Releases · noseglid/atom-build
v0.42.0
Changes:
- Other packages can now provide build tools via the service API. Have a look at atom-build-gulp to see how it is done (thanks @bwinton)
- {PROJECT_PATH} is now only replaced if the current file is part of the project (thanks @forivall)
- When terminating builds, it will also terminate any child processes spawned by the command (thanks @MackieLoeffel)
v0.41.0
Changes:
- Extract
npm
andapm
scripts as build targets. - Support for custom keymaps for builds.
- Support for babel gulpfile (#126, thanks @JacopKane).
- Fixed an issue where there was an uncaught exception if an invalid error matching regex was supplied (#135, thanks @MackieLoeffel)
v0.40.0
v0.39.0
Changes:
- Show no errors if no tools exists to build.
- Support for
gulpfile.coffee
(Thanks @felds) - Improved
Cargo
error matching regex (Thanks @colin-kiegel) - Decrease package activation times by no showing the build panel on activation even if
Keep Visible
visibility is set. Once a build has been triggered, the build panel will remain indefinitely. (Thanks @braver)
v0.38.0
Changes:
- Solved an issue where the save-build-confirm view was opened multiple times (#85).
- Solved an issue where new windows was opened when error matching even if file already was open in some pane (#97, thanks @jhasse ).
- Deprecated
absFile
in error matching in favor of only usingfile
and have it determine if it is absolute usingfs.isAbsolute
. (#94). - Now uses atom built in notification method to not remove any output which might be in the build window. (#95).
v0.37.0
v0.36.1
v0.36.0
Changes:
- Now support for multiple build targets! Use
cmd-alt-t
(OS X) /ctrl-alt-t
(Windows/Linux) to use this. (in collaboration with @austinbirch). (Fixes #37)- You can have a custom file and other build tools running at the same time.
- You can specify multiple targets in your custom file (
dev
-build,prod
-build, etc). - Automatically extracts targets from
gulp
andGrunt
- Better support for windows when running
gulp
andGrunt
(Fixes #74) - Improved error messages when having incorrect configuration.