-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
13 lines (13 loc) · 3.04 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=0"><title>igcompsci</title><link rel="icon shortcut" type="image/x-icon" href="/favicon.09aa0899.ico"><link href="/index.2b416ebf.css" rel="stylesheet"><link href="/index.8741de2b.css" rel="stylesheet"></head><body class="page-index"> <div class="navbar navbar-inverse"> <div class="navbar-inner"> <div class="container"> <div class="collapse nav-collapse"> <a class="brand" href="/"><span class="logo"></span></a> <ul class="flex nav"> <li> <a href="/"><i class="icon-newspaper"></i><span>Home</span></a> </li> <li> <a href="/getting-started"><i class="icon-arrow-right"></i><span>Getting Started</span></a> </li> <li> <a href="/configuring-tasks"><i class="icon-cog"></i><span>Configuring Tasks</span></a> </li> <li> <a href="/plugins"><i class="icon-power-cord"></i><span>Plugins</span></a> </li> <li> <a href="/getting-started"><i class="icon-file-text"></i><span>Documentation</span></a> </li> </ul> </div> </div> </div> </div> <div class="main"> <div class="container mx-auto"> <div class="main-content"> <div class="title-header"> <span class="name">IGCSE CompSci</span><span class="tag-line">RESOURCES FOR IGCSE CS</span> </div> <h1>Configuring tasks</h1> <p> This guide explains how to configure tasks for your project using a <code>Gruntfile</code>. If you don't know what a <code>Gruntfile</code> is, please read the <a href="/getting-started/">Getting Started</a> guide and check out a <a href="/sample-gruntfile/">Sample Gruntfile</a>. </p> <pre>
grunt.initConfig({
concat: {
// concat task configuration goes here.
},
uglify: {
// uglify task configuration goes here.
},
// Arbitrary non-task-specific properties.
my_property: 'whatever',
my_src_files: ['foo/*.js', 'bar/*.js'],
});
</pre> <h2>Course Staff</h2> <p> Task configuration is specified in your <code>Gruntfile</code> via the <code>grunt.initConfig</code> method. This configuration will mostly be under task-named properties, but may contain any arbitrary data. As long as properties don't conflict with properties your tasks require, they will be otherwise ignored. </p> <table class="border border-collapse border-green-800"> <tbody> <tr> <th class="border border-green-600">Role</th> <th>Name</th> <th>Email</th> <th>Office Hours</th> </tr> <tr> <td>Instructor</td> <td>Larry Xu</td> <td>larryxu@coursemo.com</td> <td>-</td> </tr> </tbody> </table> </div> </div> </div> <footer class="footer"> <div class="inner"> <div class="container mx-auto"> <div class="footer-main"> <ul class="flex flex-row justify-end"> <li><a href="/blog">Blog</a></li> <li><a href="/">Migration Guides</a></li> <li class="social"> <a href="https://github.com/igcompsci" title="igcompsci on GitHub"><span class="icon-github"></span></a> </li> <li> <a href="https://www.coursemo.com/" title="COURSEMO"><img src="http://libs.coursemo.com/courses/cs0478/current/logo.501dcd6e.png" alt="COURSEMO" width="150" height="20" class="inline-block"></a> </li> </ul> </div> </div> </div> </footer> </body></html>