Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Gruntfile.js #6411

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,10 @@ module.exports = grunt => {
}
},

// Set up the watch task, used for live-reloading during development.
// This watches both the codebase and the yuidoc theme. Changing the
// code touches files within the theme, so it will also recompile the
// documentation.
/* Set up the watch task, used for live-reloading during development.
This watches both the codebase and the yuidoc theme. Changing the
code touches files within the theme, so it will also recompile the
documentation.*/
watch: {
quick: {
files: [
Expand Down Expand Up @@ -281,13 +281,13 @@ module.exports = grunt => {

grunt.initConfig(gruntConfig);

// Load build tasks.
// This contains the complete build task ("browserify")
// and the task to generate user select modules of p5
// ("combineModules") which can be invoked directly by
// `grunt combineModules:module_1:module_2` where core
// is included by default in all combinations always.
// NOTE: "module_x" is the name of it's folder in /src.
/* Load build tasks.
This contains the complete build task ("browserify")
and the task to generate user select modules of p5
("combineModules") which can be invoked directly by
`grunt combineModules:module_1:module_2` where core
is included by default in all combinations always.
NOTE: "module_x" is the name of it's folder in /src.*/
grunt.loadTasks('tasks/build');

// Load tasks for testing
Expand Down