-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updates to aqua grunt tasks to get working, and combine Gruntfiles, p…
- Loading branch information
Showing
7 changed files
with
33 additions
and
107 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,20 @@ | ||
// Copyright 2017, University of Colorado Boulder | ||
// Copyright 2017-2024, University of Colorado Boulder | ||
|
||
/** | ||
* Aqua-specific grunt configuration | ||
* | ||
* @author Jonathan Olson <jonathan.olson@colorado.edu> | ||
*/ | ||
|
||
// use aqua's gruntfile | ||
module.exports = require( './js/grunt/Gruntfile.js' ); | ||
// AQUA wants to opt out of global SIGINT handling so that it can handle it itself. | ||
global.processEventOptOut = true; | ||
|
||
const Gruntfile = require( '../chipper/js/grunt/Gruntfile' ); | ||
const registerTasks = require( '../perennial-alias/js/grunt/util/registerTasks' ); | ||
|
||
// Stream winston logging to the console | ||
module.exports = grunt => { | ||
Gruntfile( grunt ); | ||
|
||
registerTasks( grunt, `${__dirname}/js/grunt/tasks` ); | ||
}; |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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
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
This file was deleted.
Oops, something went wrong.