Created
September 7, 2022 12:14
-
-
Save iansvo/cd1fa7ccc0c3d0971a5fe0d2cdc5be03 to your computer and use it in GitHub Desktop.
A simple AppleScript for CodeKit that triggers the processing of a specific file when the hook runs.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tell application "CodeKit" | |
set projectRoot to get path of active project | |
process file at path projectRoot & "/src/css/style.css" | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment